Lab 1: Exploring Table Data

By Yifan Ding

Business Understanding (15 Points Total)

This dataset, “Chess Game Dataset Lichess,” is obtained from Kaggle under the CC0: Public Domain license. Lichess.org is a website where users can play live chess games; the information in the dataset contains information from approximately 21,000 games and includes variables such as outcome (white win, black win, or draw), chess rating for black and white, moves (which allows for a complete record of the game), and time increment. Lichess has an API which allows for relatively easy collection of the data.

Among the questions that can be explored using this dataset include: (1) “What (if any) is the white advantage given relative ratings and opening position?”, (2) “What are the best moves after a specific opening that lead to victory?”, (3) “Will this position result in a draw?”, and (4) “Who is going to win after the opening?” The white advantage question can be answered with data visualization. The best moves question is best answered with a chess engine such as Stockfish. The draw question is a probability question.

For this assignment, our question is “Who is most likely to win the game after 5 moves (10 half-moves) of a chess game?”

The prediction task is to predict the winner of a chess match while it is on-going. The model will be given the metadata of the match, the type of opening, and the first ten half moves of a chess game. The most obvious use for our data is by gambling websites to set true odds of matches or, alternatively, by individual gamblers to find attractive bets. The “while on-going” is because many websites are starting to implement live gambling. If this innovation comes to chess, than similar models will become necessary by gambling websites to update the true odds of who will win. While the data was compiled on Lichess.com with its own rating system, our model could on any game where the ratings of the players come from the FIDE (International Chess Federation), USCF (United States Chess Federation), and the popular website Chess.Com as these ratings are highly correlated. We know this because there even exists a rating comparison site, https://chessgoals.com/rating-comparison/, that can be used to convert between Lichess.com, Chess.com, FIDE, and USCF chess ratings. Thus, if a gambler knows the maximum time of the match, a viable chess rating for black or white, and the opening ten moves—he should be able to predict who will win. If a real-time betting site exists, he will have an idea of whether to make a bet. Or alternatively, the gambling website will be able to update the true odds so that the website can make money.

Our model would be helpful if knowing the opening ten moves, which player is white, and the time increment (how much time was allowed on the chess clock) provides useful information beyond just the rating of the player. Using just the rating, there is a formula which predicts who should win the match. From Wikipedia, the formula for an ELO rating system is as follows:

$$ P_{white} + \frac{1}{2}P_{draw}= \frac{1}{1+10^{\frac{black_{rating}-white_{rating}}{400}}} $$

Where $P_{white}$ is the probability that white will win, $P_{draw}$ is the probability of a draw, $black_{rating}$ is the rating of black under FIDE, and $white_{rating}$ is the rating of white under FIDE. Note that the rating formula is only taken for FIDE, as FIDE uses the ELO rating formula. The rating system for Lichess.com uses the Glicko-2 rating system. As mentioned above, however, these rating systems are highly correlated and thus can be converted between one another with a technique like linear regression.

For example, if is there a 200 point difference between two players, the higher rated player is expected to win approximately 75% of the available points ($P_{win}$ + 1/2 $P_{draw}$). Note that this formula does not know the draw probability and does not attempt to find it. However, we can estimate the $P_{draw}$ as the sample $P_{draw}$ of 4.74%. Plugging $P_{draw}$ into the equation we can write a formula that predicts the probability of a white win, probability of a black win, and probability of a draw based only on the rating.

$$ P_{white} = \frac{1}{1+10^{\frac{black_{rating}-white_{rating}}{400}}}-0.024 $$
$$ P_{black} = \frac{1}{1+10^{\frac{white_{rating}-black_{rating}}{400}}}-0.024 $$
$$ P_{draw} = 0.048 $$

Using these three formulas, we can create a classifier that predicts $P_{white}$, $P_{black}$, and $P_{draw}$ based on which probability is larger. Our model is trying to be better than this simple classifier.

We can write a more sophisticated predictor for $P_{draw}$ as $P_{draw}$ depends on both the average ratings of the player and the absolute value of the difference of the ratings. The average rating of the player is positively correlated with $P_{draw}$, while the absolute value of the difference is negatively correlated with $P_{draw}$. The following graph is from chess-db.com which is a database which includes over eight million chess games. From the graph below, you can see that the slope is negative($P_{draw}$ decreases as the difference increases) and that higher lines have higher average ratings(better players have a higher $P_{draw}$ overall.

https://chess-db.com/public/research/draw_rate.html

Last, we see that Pdraw is much higher overall than it is for lichess.com. This can probably be explained by how serious the players are taking the game—lichess.com probably has many people who are playing casually—which will result in a lower draw rate than a draw rate under different circumstances.

Citations for Business Understanding

En.wikipedia.org. (2019). Chess notation. [online] Available at: https://en.wikipedia.org/wiki/Chess_notation [Accessed 14 Sep. 2019].

En.wikipedia.org. (2019). Chess rating system. [online] Available at: https://en.wikipedia.org/wiki/Chess_rating_system [Accessed 14 Sep. 2019].

Chess-db.com. (2019). Draw Rate in Chess Tournaments. [online] Available at: https://chess-db.com/public/research/draw_rate.html [Accessed 14 Sep. 2019].

En.wikipedia.org. (2019). Elo rating system. [online] Available at: https://en.wikipedia.org/wiki/Elo_rating_system [Accessed 14 Sep. 2019].

En.wikipedia.org. (2019). First-move advantage in chess. [online] Available at: https://en.wikipedia.org/wiki/First-move_advantage_in_chess [Accessed 14 Sep. 2019].

En.wikipedia.org. (2019). List of chess openings. [online] Available at: https://en.wikipedia.org/wiki/List_of_chess_openings [Accessed 14 Sep. 2019].

Data Understanding (30 Points Total)

Define Data Types (15 Points)

Reading in File

In [166]:
# Reading Data from CSV with Pandas
import pandas as pd
import numpy as np

def get_csv_from_file(file):
    '''
    Input: file name
    Output: csv of file
    '''
    with open(file) as f:
       csv1 = pd.read_csv(f)
    return csv1

# original dataset is from https://www.kaggle.com/datasnaek/chess
file = '/Users/yifan/Desktop/games.csv'
chess_original = get_csv_from_file(file)
chess_pd = pd.read_csv(file)
chess_tsne = pd.read_csv(file) # we will add one-hot encoding to a dataframe used for TSNE

def remove_feature(dataframe, feature):
    '''
    Input: dataframe, feature to remove
    Output: dataframe without feature
    '''
    if feature in dataframe:
        dataframe = dataframe.drop(feature, axis = 1)
    return dataframe

def add_feature(df, name, data):
    '''
    Input: dataframe, name of feaure, data
    Ouput: dataframe with feature added
    '''
    df[name] = data
    return df

def one_hot_encode(df, name, cat_columns):
    '''
    Input: dataframe, name of feaure, categories of the column
    Output: dataframe with one hot encoded feature added
    '''
    if name in df:
        name = pd.get_dummies(df[name],prefix_sep='_',columns=cat_columns)
    return name

#Preview the first five lines of the data
#chess_original.head()

Remove Unnecessary Variables

In [167]:
# Print Original data types
print(chess_original.info())
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 20058 entries, 0 to 20057
Data columns (total 16 columns):
id                20058 non-null object
rated             20058 non-null bool
created_at        20058 non-null float64
last_move_at      20058 non-null float64
turns             20058 non-null int64
victory_status    20058 non-null object
winner            20058 non-null object
increment_code    20058 non-null object
white_id          20058 non-null object
white_rating      20058 non-null int64
black_id          20058 non-null object
black_rating      20058 non-null int64
moves             20058 non-null object
opening_eco       20058 non-null object
opening_name      20058 non-null object
opening_ply       20058 non-null int64
dtypes: bool(1), float64(2), int64(4), object(9)
memory usage: 2.3+ MB
None
In [168]:
#We will get rid of id(id of game,white id and black id) as these names are not necessary for prediction
chess_pd = remove_feature(chess_pd, 'id') 
chess_pd = remove_feature(chess_pd, 'white_id') 
chess_pd = remove_feature(chess_pd, 'black_id')

chess_tsne = remove_feature(chess_tsne, 'id')
chess_tsne = remove_feature(chess_tsne, 'white_id') 
chess_tsne = remove_feature(chess_tsne, 'black_id')

#For 'opening_eco' and 'opening_name', We will only use 'opening_eco' and drop opening_name
chess_pd = remove_feature(chess_pd, 'opening_name')

chess_tsne = remove_feature(chess_tsne, 'opening_name')

#chess_pd.head()  #verify features have been removed
In [169]:
#Created at and last move at are not known at time of prediction part-way through the game
chess_pd = remove_feature(chess_pd, 'created_at')
chess_pd = remove_feature(chess_pd, 'last_move_at')

chess_tsne = remove_feature(chess_tsne, 'created_at')
chess_tsne = remove_feature(chess_tsne, 'last_move_at')
#chess_pd.head()  #verify features have been removed
In [170]:
#victory_status not known at time of prediction
chess_pd = remove_feature(chess_pd, 'victory_status')

chess_tsne = remove_feature(chess_tsne, 'victory_status')
In [171]:
# Verify variables have been removed from working copy
print(chess_pd.info())
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 20058 entries, 0 to 20057
Data columns (total 9 columns):
rated             20058 non-null bool
turns             20058 non-null int64
winner            20058 non-null object
increment_code    20058 non-null object
white_rating      20058 non-null int64
black_rating      20058 non-null int64
moves             20058 non-null object
opening_eco       20058 non-null object
opening_ply       20058 non-null int64
dtypes: bool(1), int64(4), object(4)
memory usage: 1.2+ MB
None
In [172]:
print(chess_tsne.info())
<class 'pandas.core.frame.DataFrame'>
RangeIndex: 20058 entries, 0 to 20057
Data columns (total 9 columns):
rated             20058 non-null bool
turns             20058 non-null int64
winner            20058 non-null object
increment_code    20058 non-null object
white_rating      20058 non-null int64
black_rating      20058 non-null int64
moves             20058 non-null object
opening_eco       20058 non-null object
opening_ply       20058 non-null int64
dtypes: bool(1), int64(4), object(4)
memory usage: 1.2+ MB
None

Rated Variable Type

Rated variable: Whether the game result will affect the players' rating score. For not rated games, the result will not be recorded. The 'Rated' variable matters since the player will be more motivated to win the game. Our hypothesis is that rated games are treated seriously--so there will be fewer upsets.

In [173]:
#From above 'rated' is a boolean. For True is a rated game while False is non-rated.
print('Rated should be a boolean: ' + str(type(chess_pd.rated[0])))

# Rated should be one-hot encoded for chess_tsne

rated_dummy = one_hot_encode(chess_pd, 'rated' , [True, False])
chess_tsne = pd.concat([chess_tsne, rated_dummy], axis=1)
chess_tsne = remove_feature(chess_tsne, 'rated')
#print(chess_tsne.head())

#print(chess_tsne)
Rated should be a boolean: <class 'numpy.bool_'>

Winner Variable Type

Winner Variable: The winner variable represents whether the outcome of the game is a white win, black win, or a draw. Since white will move first in a chess game, white is traditionaly considered to have a small advantage over black. A draw is a tie and probbaly occurs between players with similar ratings. This is the feature that we are trying to predict: White, Black, or Draw. This is a categorical variable that will be represented by integers.

In [174]:
###From above the winner is a categorical
print('Original data type is a string: ' + str(type(chess_pd.winner[0]))) #Str

#So convert to categorical
chess_pd.winner = pd.Categorical(chess_pd.winner)

#check if it is categorical
print('New data type is category: ' + str(type(chess_pd.winner[0]))) 

# Winner should be one-hot encoded for chess_tsne 

#chess_tsne=add_feature(chess_tsne,pd.get_dummies(chess_pd.winner,prefix_sep="_",columns=cat_columns))
#print(chess_tsne)

cat_columns=["white","black","draw"]
winner_dummy = one_hot_encode(chess_pd, 'winner' , cat_columns)
chess_tsne = pd.concat([chess_tsne, winner_dummy], axis=1)
chess_tsne = remove_feature(chess_tsne, 'winner')
#print(chess_tsne.head())
Original data type is a string: <class 'str'>
New data type is category: <class 'str'>

White Rating Variable Type

White Rating Variable: The White Rating variable is a rating score that reflects the performance of a player when playing in rated chess games versus other players. It is an estimate of a person's tournament playing strength. A higher Rating Variable means the player usually have a better performance. Obviously, this variable will be correlated with the outcome.

In [175]:
###From above the White Rating is a ordinal
print('White Rating is an integer: ' + str(type(chess_pd.white_rating[0]))) 
White Rating is an integer: <class 'numpy.int64'>

Black Rating Variable Type

Black Rating Variable: The Black Rating variable is a rating score that reflects the performance of a player when playing in rated chess games versus other players. It is an estimate of a person's tournament playing strength. A higher Rating Variable means the player usually have a better performance. Obviously, this variable will be correlated with the outcome.

In [176]:
###From above the Black Rating is a ordinal
print('Black rating is an integer: ' + str(type(chess_pd.black_rating[0]))) 
Black rating is an integer: <class 'numpy.int64'>

First 10 Moves

Moves- First 10 moves variable: This variable consistes of a list of strings that records the first ten moves of a game. Our prediction is to predict the outcome after the first ten moves.

In [177]:
#To Use moves, we would use the first ten moves to predict the win and lose

total_moves = chess_pd.moves

def moves(total_moves):
    '''
    Input: none
    Output a list of moves
    '''
    move_record=[]
    count=0
    for count in range(len(total_moves)):
        move_split=total_moves[count].split(" ")
        move_record.append(move_split)
    return np.array(move_record)
In [178]:
def number_of_moves(all_moves, x):
    '''
    Input:
    moves_list is the list of moves as string
    x is number of moves you want to keep
    Output: list of moves up to x
    '''
    moves_given = []
    for idx, all_moves in enumerate(all_moves):
        # Output up to x
        if len(all_moves) > x :
            moves_given.append(all_moves[0:x])
        # Output entire game
        else:
            moves_given.append(all_moves)
    return moves_given

move_list = moves(total_moves)
#print(move_list)
ten_moves = number_of_moves(move_list, 10)
print(ten_moves)
[['d4', 'd5', 'c4', 'c6', 'cxd5', 'e6', 'dxe6', 'fxe6', 'Nf3', 'Bb4+'], ['d4', 'Nc6', 'e4', 'e5', 'f4', 'f6', 'dxe5', 'fxe5', 'fxe5', 'Nxe5'], ['e4', 'e5', 'd3', 'd6', 'Be3', 'c6', 'Be2', 'b5', 'Nd2', 'a5'], ['d4', 'd5', 'Nf3', 'Bf5', 'Nc3', 'Nf6', 'Bf4', 'Ng4', 'e3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'd5', 'Nb4', 'a3', 'Na6'], ['e4', 'c5', 'Nf3', 'Qa5', 'a3'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'f3', 'exf3', 'Nxf3', 'Nc6'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nce7', 'c3', 'Ng6', 'b4'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nd4', 'd3', 'Nxf3+', 'Qxf3', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Na6', 'd4', 'Qf5'], ['e3', 'e6', 'd4', 'd6', 'Bd3', 'c6', 'Nf3', 'Be7', 'Nc3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be7', 'Nc3', 'Nf6'], ['e4', 'e6', 'Qh5', 'g6', 'Qe5', 'Nf6', 'd4', 'd6', 'Qb5+', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Qe7', 'O-O', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'd3', 'Bxc4', 'dxc4', 'c5'], ['d4', 'd5', 'h3', 'Nc6', 'Nf3', 'Nf6', 'Bg5', 'h6', 'Bxf6', 'exf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Bc5', 'd3', 'Nf6'], ['d4', 'e6', 'Nc3'], ['e4', 'c5', 'Bc4', 'Nf6', 'Nc3', 'd6', 'Nf3', 'g6', 'Ng5', 'e6'], ['c4', 'Nc6', 'Nc3', 'e5', 'g3', 'Bc5', 'Bg2', 'Nge7', 'e3', 'b6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qa4', 'e5', 'Be3', 'Nf6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'Bf5', 'Nf3', 'e6', 'e3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bc5', 'c3', 'dxc3'], ['d4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'e3', 'Bf5', 'h4', 'e6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'dxc4', 'Bxc4', 'Nf6', 'Nc3', 'e6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'e6', 'e3', 'Bd6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qa4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'O-O', 'Ngf6'], ['e4', 'c5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Qe2', 'Qxe2+'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'b5', 'Na3', 'a6', 'Qf3', 'f6'], ['e4', 'c5', 'Bc4', 'Nf6', 'd3', 'd6', 'Nf3', 'g6', 'Ng5', 'Bg7'], ['d4', 'g6', 'e4', 'Bg7', 'Bf4', 'e6', 'Bc4', 'Ne7', 'Nf3', 'h6'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'f3', 'exf3', 'Nxf3', 'Bf5'], ['d4', 'Nf6', 'Nc3', 'd6', 'd5', 'g6', 'e4', 'Bg7', 'Nf3', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['c4', 'e5', 'Nc3', 'Bc5', 'g3', 'Nc6', 'Bg2', 'Nf6', 'Nf3', 'b6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nc3', 'd6', 'Bc4', 'Nf6', 'Qe2', 'g6', 'e5', 'dxe5'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qa4', 'Nf6', 'Nf3', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'e5', 'Qa5+'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nc3', 'd6', 'd3', 'Nf6', 'Nge2', 'g6'], ['e4', 'd5', 'exd5'], ['e4', 'c5', 'Bc4', 'Nf6', 'e5', 'Ne4', 'Nf3'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Qf3', 'Qe5+', 'Ne2', 'Nf6', 'd4', 'Qd5'], ['d4', 'e6', 'e4', 'Qh4', 'Nc3'], ['e4', 'e5', 'd4', 'd5', 'Nf3', 'dxe4', 'Nxe5'], ['d4', 'f5', 'e3', 'Nf6', 'Nc3', 'd5', 'Bb5+', 'c6', 'Bd3', 'b5'], ['c4', 'e5', 'b3', 'd5', 'Bb2', 'e4', 'd4', 'exd3', 'Qxd3', 'Nf6'], ['Nf3', 'e5', 'Nxe5', 'Ke7', 'e4', 'Kd6', 'd4', 'Nc6'], ['e4', 'c5', 'Nc3'], ['e4', 'e5', 'a3', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Nxd5', 'Qxd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'g6', 'Bc4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bb4+', 'c3', 'Bd6', 'd5', 'Nce7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'f5', 'exf5', 'Bxf5', 'Nc3', 'e4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bg4', 'c4', 'Bb4+'], ['d4', 'g6', 'Nf3', 'Bg7', 'Bf4', 'd6', 'e3', 'Nd7', 'c3', 'e5'], ['d4', 'e6', 'Bf4', 'c5', 'c3', 'Qb6', 'b3', 'cxd4', 'cxd4', 'Bb4+'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'c5', 'd5', 'exd5', 'cxd5', 'c4'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb3', 'Qe7+', 'Ne2', 'Nf6'], ['Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'e6', 'O-O', 'Ne7', 'c3', 'c5'], ['d4', 'Nf6', 'Bf4', 'c5', 'e3', 'cxd4', 'exd4', 'd5', 'Nf3', 'Bg4'], ['e4', 'e6', 'Nc3', 'Bb4', 'Nge2', 'Ne7', 'a3', 'Bxc3', 'Nxc3', 'd5'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'c5', 'c3', 'Nc6', 'e3', 'Nf6'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nf3', 'f6', 'e3', 'g5', 'Bg3', 'a6'], ['d4', 'd6', 'Bf4', 'e6', 'Nf3', 'Nc6', 'e3', 'Nf6', 'Nbd2', 'd5'], ['d4', 'Nf6', 'e3', 'g6', 'f4', 'Bg7', 'Nf3', 'd5', 'c4', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'dxc5', 'Bxc5', 'Nf3', 'Nc6'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Nf6', 'Nf3', 'Bg4', 'h3', 'Bh5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bd3', 'Bd6', 'h3', 'Ne7'], ['d4', 'e6', 'Bf4', 'h6', 'Nf3', 'd6', 'e4', 'Qf6', 'Qd2', 'Nc6'], ['d4', 'Nf6', 'Bf4', 'd5', 'Nf3', 'e6', 'c4', 'Bd6', 'Bg3', 'Bxg3'], ['e4', 'e6', 'Qe2', 'c5', 'Nf3', 'Nc6', 'g3', 'g6', 'Bg2', 'Bg7'], ['d4', 'd5', 'Bf4', 'Nf6', 'Nf3', 'e6', 'e3', 'Bd6', 'Bg3', 'O-O'], ['e4', 'e6', 'f4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'c3', 'Nh6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'g6', 'Nf3', 'Bg7', 'c4', 'dxc4'], ['d4', 'Nf6', 'Bf4', 'd5', 'Nf3', 'Nc6', 'e3', 'Bg4', 'h3', 'Bh5'], ['c4', 'Nc6', 'd4', 'g6', 'e3', 'Bg7', 'Nc3', 'd6', 'Bd2', 'Bf5'], ['a4', 'e5', 'h4', 'd5', 'b3', 'Nc6', 'e3', 'Bf5', 'Bb5', 'Ne7'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nf3', 'f6', 'e3', 'g5', 'Bg3', 'Be6'], ['d4', 'c6', 'Bf4', 'e6', 'Nf3', 'd5', 'Nbd2', 'c5', 'e3', 'cxd4'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'a3', 'Bxc3+'], ['d4', 'Nf6', 'Bf4', 'd5', 'Nf3', 'Bf5', 'e3', 'c6', 'Nbd2', 'Qb6'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'c5', 'e3', 'Bd6', 'Bg3', 'Bxg3'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bg4', 'Be2', 'Qe7'], ['d4', 'd5', 'Bf4', 'Nf6', 'Nf3', 'h6', 'e3', 'e6', 'Bd3', 'Nc6'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'Bb5+', 'c6'], ['d4', 'd5', 'Bf4', 'c5', 'e3', 'cxd4', 'exd4', 'e6', 'Nf3', 'Nc6'], ['d4', 'd5', 'Bf4', 'Nf6', 'Nf3', 'c5', 'e3', 'Bg4', 'Nbd2', 'cxd4'], ['d4', 'Nf6', 'Nf3', 'b6', 'c3', 'Bb7', 'Qb3', 'e6', 'Ne5', 'Nc6'], ['d4', 'e6', 'Bf4', 'd5', 'Nf3', 'Qe7', 'e3', 'c5', 'c3', 'cxd4'], ['d4', 'Nf6', 'Bf4', 'd5', 'Nf3', 'Nc6', 'e3', 'Nh5', 'Bg3', 'Nxg3'], ['e4', 'e5', 'Bc4', 'Nc6', 'd3', 'Nf6', 'Nf3', 'Bc5', 'Ng5', 'd6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Bf5', 'Bf4', 'a6', 'Nf3', 'e6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'dxc4', 'e3', 'Be6', 'Nf3', 'a6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c5', 'exd5', 'exd5', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Ne5', 'Nc3', 'Bb4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'c5', 'Bg7', 'Nf3', 'O-O'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'c4', 'c6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bd7', 'Nf3', 'Bc6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Bg5', 'Be7', 'e3', 'c6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'Bf5', 'Nf3', 'e6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'c5', 'cxd5', 'cxd4'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'Nc3', 'Nc6', 'Nf3', 'Bg4'], ['d4', 'Nf6', 'Nf3', 'e6', 'e3', 'b6', 'Bd3', 'Bb7', 'c4', 'c5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'c5', 'Nf3', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'dxc6', 'h3', 'Nf6'], ['d4', 'd5', 'Nf3', 'e6', 'Bf4', 'Nf6', 'e3', 'a6', 'Bd3', 'h6'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Bg4', 'Ne5', 'Bf5', 'e3', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'c3', 'Qf6', 'O-O', 'Nge7'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Bb4+'], ['d4', 'Nf6', 'Nf3', 'c5', 'd5', 'd6', 'Nc3', 'e5', 'e4', 'Be7'], ['Nf3', 'd5', 'g3', 'c5', 'Bg2', 'Nc6', 'd3', 'Nf6', 'O-O', 'e5'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Nc6', 'e3', 'Bf5', 'Bb5', 'e6'], ['d4', 'd6', 'e4', 'Nc6', 'd5', 'Ne5', 'Be2', 'e6', 'c4', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bb4', 'c3', 'Bc5', 'b4', 'Bb6'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'e6', 'c3', 'Be7', 'Nf3', 'd6'], ['e4', 'c5', 'Nf3', 'Nf6', 'd4', 'Nxe4', 'dxc5', 'Nxc5', 'Qd5', 'e6'], ['e4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'd6', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'Nf6', 'd3', 'e5', 'a3', 'd5', 'exd5', 'Nxd5', 'c4', 'Nf4'], ['d4', 'Nf6', 'c4', 'd5', 'Nc3', 'dxc4', 'e3', 'b5', 'a4', 'b4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'd6', 'dxe5', 'Nxe5'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'c5', 'Nd5', 'd4', 'd6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'Qa5+', 'Bd2', 'Qxd5', 'Be3', 'Bf5'], ['d4', 'd5', 'e3', 'e6', 'c4', 'Bb4+', 'Nd2', 'dxc4', 'Qa4+'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Qe2', 'Nbd7'], ['c4', 'e5', 'g3', 'd5', 'cxd5', 'Qxd5', 'Nf3', 'g5', 'Nc3', 'Qc6'], ['e4', 'h5', 'd4', 'd5', 'exd5', 'Qxd5', 'g4', 'Bxg4', 'f3', 'Bxf3'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'O-O', 'e3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'Nf6'], ['d4', 'd5', 'c4', 'Nf6', 'c5', 'Bf5', 'Nf3', 'Bxb1', 'Rxb1', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Qe7', 'd3', 'Nf6', 'Bg5', 'h6'], ['e4', 'Nf6', 'Nc3', 'e5', 'Bc4', 'Bc5', 'Nf3', 'Nc6', 'Ng5', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'Bb4+', 'Bd2', 'Bxd2+', 'Nbxd2', 'O-O'], ['e4', 'Nf6', 'f3', 'e5', 'c3', 'Be7', 'd4', 'exd4', 'cxd4', 'c5'], ['e4', 'Nf6', 'e5', 'Nd5', 'Nc3', 'Nxc3', 'bxc3', 'd6', 'f4', 'dxe5'], ['e4', 'e5', 'Nf3', 'Bb4', 'Nxe5', 'Qe7', 'Nd3', 'Qxe4+', 'Be2', 'Qxg2'], ['d4', 'd5', 'c4', 'e6', 'cxd5', 'exd5', 'Nc3', 'a6', 'e4', 'dxe4'], ['d4', 'Nf6', 'Nc3', 'e6', 'e4', 'd5', 'e5', 'Nfd7', 'Nf3', 'Bb4'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'd4', 'd6', 'Bf4', 'dxe5'], ['e4', 'Nf6', 'Nc3', 'e5', 'f4', 'exf4', 'd4', 'c5', 'Nf3', 'cxd4'], ['e4', 'g6', 'd4', 'h5', 'Bc4', 'e6', 'Bf4', 'd5', 'exd5', 'exd5'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'c6', 'dxc6', 'Nxc6', 'd4', 'Qxd4'], ['Nf3', 'Nf6', 'd4', 'e6', 'e3', 'c5', 'c3', 'Nc6', 'Nbd2', 'd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Be2', 'd6', 'O-O', 'Nf6'], ['d4', 'Nf6', 'c4', 'c5', 'e3', 'cxd4', 'exd4', 'd6', 'Nf3', 'g6'], ['e4', 'c5', 'Nf3', 'g6', 'Nc3', 'Bg7', 'Bb5', 'a6', 'Be2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'Nf6', 'O-O', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Ng5', 'Bc5', 'd3', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bd6', 'Bd3', 'Ne7'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'd3', 'Bg4', 'Be2', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Nc6', 'c4', 'a6', 'Ba4', 'Bd7'], ['Nh3', 'd5', 'g3', 'Nf6', 'Bg2', 'c5', 'f4', 'e6', 'Nf2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Bc5', 'c3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'a6', 'a3', 'Nf6', 'Bc4', 'e6'], ['d4', 'h6', 'Nf3', 'b5', 'e4', 'b4', 'c4', 'Bb7', 'Bd2', 'a5'], ['e4', 'c6', 'Nf3', 'd5', 'Nc3', 'Bg4', 'd4', 'e6', 'h3', 'Bh5'], ['e4', 'c5', 'c3', 'd6', 'Bc4', 'Nf6', 'd3', 'a6', 'a4', 'e6'], ['e4', 'c5', 'Nf3', 'e6', 'g3', 'Nc6', 'Bg2', 'Qc7', 'd3', 'e5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Bd3', 'Be7'], ['d4', 'Nf6', 'f3', 'c5', 'd5', 'd6', 'c3', 'e6', 'e4', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'd3', 'a6', 'a3', 'g6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'g6', 'O-O', 'Bg7', 'Re1', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'g3', 'Nf6', 'd3', 'Nc6', 'Bg2', 'g6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'c3', 'c6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Nf6'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'c5', 'e3', 'cxd4', 'exd4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'h6', 'O-O', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'a6', 'Ba4', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Bc5', 'O-O', 'b5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'g6', 'Ng5', 'Ne5', 'Bb3', 'h6'], ['e4', 'c6', 'f4', 'd5', 'e5', 'Bf5', 'Nf3', 'h6', 'd4', 'Nd7'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Bf5', 'Nf3', 'e6', 'e3', 'Bb4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Nge2', 'Nf6', 'd3', 'Bg4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd4', 'cxd4', 'Nxd4', 'g6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'Bb5', 'Bd7', 'Nc3', 'a6'], ['e4', 'c5', 'c3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'd6', 'Bb5', 'a6'], ['e4', 'c5', 'Qf3', 'Nc6', 'c3', 'd6', 'Bc4', 'Nf6', 'Bb5', 'Bg4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'a6', 'Bxc6+', 'bxc6'], ['g3', 'e5', 'e4', 'Nf6', 'Bg2', 'Bc5', 'a3', 'a5', 'Nc3', 'd6'], ['d4', 'd5', 'e3', 'Nf6', 'h3', 'e6', 'a3', 'Bd6', 'c4', 'c6'], ['e3', 'e6', 'Qf3', 'Nf6', 'Nc3', 'Nc6', 'Nb5', 'a6', 'Nd4', 'Nxd4'], ['e4', 'e6', 'd4', 'Qh4', 'Nc3', 'Nf6', 'e5', 'Ne4', 'Nf3', 'Qxf2#'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'Nc3', 'Nb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bxe6', 'fxe6', 'd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'c6', 'd4', 'e6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Nc3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd5', 'Nf6', 'Qc4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'f6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'Ng5', 'Qe7'], ['e3', 'e5', 'd4', 'exd4', 'exd4', 'Nf6', 'Nf3', 'Nc6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Ng5', 'O-O'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'Nxe5', 'Nxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'Nc3', 'Bg4', 'h3', 'Bh5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'd3', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'e6', 'Nf3', 'Qa5'], ['h4', 'e5', 'a4', 'd5', 'b4', 'Nc6', 'b5', 'Na5', 'g4', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'd3', 'Nf6', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bb5', 'g6', 'Nxe5', 'c6', 'Bc4', 'd5'], ['d4', 'd5', 'c4', 'Nc6', 'Nc3', 'Nf6', 'e3', 'e6', 'Nf3', 'Bb4'], ['e4', 'e5', 'Nf3', 'c5', 'd4', 'Nc6', 'dxe5', 'd6', 'exd6', 'Bxd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'd3', 'Bc5'], ['d4', 'd5', 'Bf4', 'Nf6', 'Nf3', 'c6', 'e3', 'e6', 'Ne5', 'Nbd7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'Qe7', 'Qxe4', 'Nc6'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'Bc5', 'Bg2', 'O-O', 'e3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Na5', 'Bxf7+', 'Kxf7', 'Nxe5+', 'Ke8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'Bc5', 'Bg5', 'O-O'], ['e4', 'd6', 'Nf3', 'Nf6', 'g3', 'Nbd7', 'Nc3', 'e5', 'Bg2', 'Be7'], ['Nf3', 'd5', 'd3', 'e6', 'Nc3', 'Nc6', 'e4', 'Bb4', 'exd5', 'exd5'], ['Nf3', 'c5', 'g3', 'e6', 'Bg2', 'h5', 'e4', 'a6', 'd3', 'b5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qc5', 'd4', 'Qd6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Qe7', 'Qxe7+', 'Bxe7', 'e5', 'Nd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Qf6', 'Bg5', 'Qg6', 'dxe5', 'Qxe4+'], ['e4', 'e5', 'd4', 'd6', 'd5', 'Nf6', 'f3', 'c6', 'Bg5', 'cxd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'a6', 'd4', 'cxd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Bc4', 'd5', 'd3', 'dxc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd4', 'a6', 'Ba4', 'd6'], ['e4', 'a6', 'Nf3', 'b6', 'd4', 'Bb7', 'Nc3', 'h6', 'Bc4', 'e6'], ['e3', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Qb3', 'b6', 'cxd5', 'exd5'], ['c4', 'e5', 'Nc3', 'Nf6', 'd4', 'Nc6', 'd5', 'Nd4', 'e3', 'Nf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'h6', 'd3', 'Nf6', 'Nc3', 'a6'], ['e4', 'd5', 'f3', 'dxe4', 'fxe4', 'e5', 'Nf3', 'Nc6', 'd3', 'Bg4'], ['Nf3', 'd6', 'e4', 'e5', 'g3', 'f5', 'd3', 'Nf6', 'Nc3', 'c6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'Bc5', 'Bc4', 'c6', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nb4', 'Bd2', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nc3', 'c6', 'Bc4', 'd5'], ['e4', 'Nc6', 'Nf3', 'f5', 'exf5', 'd5', 'd4', 'Bxf5', 'Bb5', 'Qd7'], ['e4', 'e5', 'd4', 'd5', 'dxe5', 'dxe4', 'Bb5+', 'c6', 'Bf1', 'Qxd1+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'd3', 'Nf6', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd5', 'Bxd5', 'Bg4', 'h3', 'Be6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Nc3', 'Nc6', 'Bxc4', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nce7', 'd4', 'c6'], ['Nf3', 'd5', 'g3', 'Bg4', 'Bg2', 'Bxf3', 'Bxf3', 'c6', 'd4', 'e6'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'g3', 'c6', 'Bg2', 'e5'], ['e4', 'e6', 'Nf3', 'd5', 'd4', 'c5', 'dxc5', 'Bxc5', 'Ne5', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c4', 'dxc4', 'Bxc4', 'cxd4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Be2', 'Nf6', 'O-O', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'h6'], ['d4', 'e6', 'c4', 'Nf6', 'Nc3', 'c6', 'e4', 'd6', 'Bg5', 'Be7'], ['f4', 'e6', 'Nf3', 'f5', 'e3', 'Nf6', 'Be2', 'Be7', 'O-O', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Qb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['g3', 'Nf6', 'Bg2', 'd5', 'e3', 'c5', 'd4', 'Nc6', 'dxc5', 'e5'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'Nf3', 'Bb4', 'Bd3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Nc3', 'Nf6', 'O-O', 'Be7'], ['f4', 'Nf6', 'Nf3', 'd6', 'c4', 'Bg4', 'Nc3', 'Nbd7', 'e4', 'e5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nc6', 'Bb5', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'O-O', 'Bc5'], ['e4', 'c6', 'd4', 'd5', 'f3', 'dxe4', 'fxe4', 'e5', 'Nf3', 'exd4'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bg5', 'e6', 'e3', 'c5', 'c3', 'h6'], ['d4', 'd5', 'c3', 'c5', 'dxc5', 'Nc6', 'b4', 'a5', 'b5', 'Ne5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c5', 'exd5', 'exd5', 'dxc5', 'Bxc5'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'Nc3', 'exd5', 'cxd5', 'Nxd5'], ['e4', 'Nc6', 'Nf3', 'f5', 'exf5', 'd5', 'd4', 'Bxf5', 'Bb5', 'Nf6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'e6', 'Nc3', 'dxc4', 'Bf4', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd4', 'Nf3', 'Qf6', 'Nd5', 'Qd6'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'd6', 'Be3', 'Nd7', 'Qd2', 'Ngf6'], ['d4', 'd5', 'c4', 'e6', 'a3', 'c6', 'Nf3', 'dxc4', 'Nc3', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'f6', 'Nxe5', 'fxe5', 'Qh5+', 'Ke7', 'Qxe5+', 'Kf7'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nd4', 'd3', 'Bc5', 'Nxe5', 'Qf6'], ['Nf3', 'Nf6', 'd4', 'd5', 'c4', 'e6', 'Nc3', 'c5', 'cxd5', 'Nxd5'], ['d4', 'd5', 'Nf3', 'e6', 'c4', 'Nf6', 'Nc3', 'Bb4', 'e3', 'c5'], ['Nf3', 'Nf6', 'c4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'e5'], ['e3', 'd5', 'd3', 'Nc6', 'Nf3', 'e5', 'Nc3', 'Be6', 'Be2', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'e6', 'Nc3', 'c6', 'e3', 'Bd6'], ['Nf3', 'c5', 'e4', 'Qc7', 'Nc3', 'a6', 'd4', 'e6', 'd5', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'c4', 'Bc5', 'Nc3', 'd6', 'h3', 'Nge7'], ['e4', 'g6', 'Nf3', 'Nc6', 'd4', 'e6', 'd5', 'exd5', 'exd5', 'Nce7'], ['d4', 'b6', 'e4', 'Bb7', 'Nc3', 'e6', 'a3', 'g6', 'h4', 'Ne7'], ['e4', 'e6', 'e5', 'd6', 'Nf3', 'dxe5', 'Nxe5', 'f6', 'Ng4', 'Bb4'], ['e4', 'e5', 'f4', 'd6', 'Nf3', 'exf4', 'd3', 'Nf6', 'Bxf4', 'Nc6'], ['f4', 'd5', 'Nf3', 'Bg4', 'e3', 'e6', 'b3', 'Bxf3', 'Qxf3', 'Nc6'], ['f4', 'Nf6', 'Nf3', 'd6', 'e3', 'Bg4', 'b3', 'g6', 'Bb2', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'Nc3', 'c6', 'Bc4', 'd5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'O-O'], ['d4', 'd5', 'Bf4', 'c6', 'a3', 'Bf5', 'Nf3', 'e6', 'e3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Bc4', 'd5'], ['g3', 'e5', 'e3', 'd5', 'Bg2', 'Nf6', 'Ne2', 'c5', 'd3', 'Nc6'], ['f4', 'g6', 'Nf3', 'f5', 'e3', 'e6', 'b3', 'Bg7', 'Nc3', 'Ne7'], ['e4', 'e5', 'b3', 'Nc6', 'g3', 'd5', 'd3', 'd4', 'c3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nxf7', 'Kxf7', 'Bc4+', 'Ke8'], ['f4', 'Nc6', 'Nf3', 'd5', 'e3', 'Nf6', 'b3', 'Bf5', 'Bb2', 'e6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Nxe4', 'Bxf7+', 'Kxf7'], ['f4', 'Nc6', 'Nf3', 'd5', 'e3', 'Nf6', 'b3', 'Bf5', 'Bb5', 'a6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nxe4', 'Qe2', 'd5', 'Bb3', 'Bd6'], ['b4', 'e5', 'Bb2', 'Bxb4', 'Bxe5', 'Nf6', 'Nf3', 'O-O', 'e3', 'Nc6'], ['e4', 'c5', 'Nc3', 'Nc6', 'g3', 'e5', 'Bg2', 'Nf6', 'd3', 'Be7'], ['d4', 'Nf6', 'g3', 'e6', 'Bg2', 'd5', 'Nf3', 'b6', 'Bg5', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'd4', 'Bd6'], ['Nc3', 'c6', 'e4', 'd5', 'exd5', 'cxd5', 'd4', 'Bf5', 'Nf3', 'a6'], ['e4', 'e6', 'Nf3', 'b6', 'Nc3', 'Bb4', 'd4', 'Bxc3+', 'bxc3', 'Bb7'], ['e3', 'e5', 'b3', 'Nc6', 'Bb5', 'd5', 'Bxc6+', 'bxc6', 'Bb2', 'Bd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'e5', 'Nd5', 'Bxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bxe6', 'fxe6', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'g6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'f6', 'd4', 'Nge7', 'd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'O-O'], ['d4', 'Nf6', 'c4', 'g6', 'e3', 'Bg7', 'Nf3', 'O-O', 'Nbd2', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'Bb5', 'Bd7', 'O-O', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Qe7', 'O-O', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Bc5', 'd4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'c3', 'Nf6', 'O-O', 'Nxe4'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nc3', 'Bc5', 'Qg4', 'g6', 'Qg3', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Qb6', 'Nc3', 'e6', 'a4', 'a5'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'd5', 'exd5', 'Qxd5', 'c4', 'Qd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'd3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'g6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Qe7', 'Nxf7', 'Rg8'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'd4', 'd6', 'Nf3', 'Nxe4'], ['e4', 'e5', 'Bc4', 'Nc6', 'a3', 'Bc5', 'd3', 'Nf6', 'h3', 'd6'], ['b4', 'e5', 'b5', 'd5', 'Bb2', 'Qd6', 'Nf3', 'Nd7', 'h3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'a6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'h6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'O-O', 'h6', 'c3', 'Bg4'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd6', 'd4', 'g5', 'h4', 'g4'], ['e4', 'e5', 'Bc4', 'Nc6', 'a3', 'Bc5', 'c3', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'O-O', 'c4', 'c5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'Nf3', 'Bg7', 'Bf4', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Bc5', 'c3', 'd6'], ['e4', 'e6', 'Nf3', 'd6', 'Nc3', 'c6', 'd4', 'Nf6', 'Bg5', 'Be7'], ['d4', 'Nf6', 'e3', 'e6', 'c3', 'd5', 'Nf3', 'Nbd7', 'Be2', 'c5'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'd3', 'Bxd3', 'Nc6', 'Nf3', 'd6'], ['d4', 'c6', 'e4', 'd5', 'e5', 'e6', 'c4', 'Ne7', 'Nc3', 'Nf5'], ['e4', 'e5', 'd4', 'exd4', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nbd2', 'Nge7'], ['d4', 'Nf6', 'Nf3', 'g6', 'c3', 'Bg7', 'Bf4', 'O-O', 'e4', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'a6', 'Nc3', 'Nc6', 'Be3', 'Bg4'], ['d4', 'Nf6', 'c4', 'c5', 'Nf3', 'e6', 'Nc3', 'Nc6', 'Bg5', 'Be7'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'c3', 'd6'], ['Nf3', 'b6', 'c4', 'Bb7', 'd3', 'e6', 'Nbd2', 'Be7', 'g3', 'Nf6'], ['e3', 'd5', 'd4', 'e6', 'a3', 'Bd6', 'Nf3', 'Nf6', 'Bb5+', 'c6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'g5', 'Bc4', 'Qe7', 'e5', 'g4'], ['Nf3', 'd5', 'c4', 'dxc4', 'Qa4+', 'Nc6', 'Qxc4', 'e6', 'e4', 'Bd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'd5', 'f3', 'e6', 'd4', 'Nf6', 'Be3', 'dxe4', 'fxe4', 'Nxe4'], ['b3', 'e5', 'c4', 'Nc6', 'a3', 'd6', 'Bb2', 'Be6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Bd6'], ['d4', 'Nc6', 'e4', 'Nf6', 'Bd2', 'Nxe4', 'f3', 'Nxd2', 'Kxd2', 'Nxd4'], ['e3', 'e5', 'Bc4', 'Ne7', 'Qf3', 'f5', 'e4', 'g6', 'g4', 'fxe4'], ['c4', 'e5', 'b4', 'd5', 'Qb3', 'dxc4', 'Qxc4', 'Qd6', 'e4', 'Qxb4'], ['d4', 'd6', 'e4', 'Nc6', 'd5', 'Ne5', 'f4', 'Nd7', 'Nf3', 'e5'], ['d4', 'd5', 'Nc3', 'e6', 'Bd2', 'Bb4', 'a3', 'Bxc3', 'bxc3', 'Nf6'], ['e4', 'e5', 'd4', 'f6', 'Nc3', 'd5', 'Nf3', 'c6', 'dxe5', 'fxe5'], ['e4', 'e6', 'f4', 'd5', 'Nc3', 'Qh4+', 'g3', 'Qd8', 'd4', 'c5'], ['e3', 'e5', 'Nf3', 'd6', 'd4', 'Nd7', 'e4', 'Ngf6', 'c3', 'Nxe4'], ['d4', 'e6', 'e4', 'Nf6', 'Nf3', 'Nxe4', 'Be2', 'a5', 'a4', 'd5'], ['d4', 'd5', 'Nf3', 'Nc6', 'Nc3', 'e6', 'Bd2', 'Bd6', 'a4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Be7', 'd4', 'Nf6'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Ne7', 'Qxh8', 'Nec6', 'Qxh7', 'Ne7'], ['d4', 'd5', 'Nf3', 'c6', 'Bf4', 'Nd7', 'Nc3', 'e6', 'e4', 'Bb4'], ['d4', 'd5', 'Nf3', 'Nf6', 'Nc3', 'c5', 'e4', 'e6', 'e5', 'Ne4'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nf3', 'Bg4', 'e3', 'e5', 'Nc3', 'Bb4'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bd2', 'Nc6', 'h4', 'Nxd4', 'h5', 'h6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bd2', 'Nc6', 'Nf3', 'Qd6', 'e4', 'dxe4'], ['e4', 'e5', 'Nf3', 'Be7', 'Nc3', 'Nf6', 'd4', 'd5', 'Bg5', 'dxe4'], ['e4', 'd5', 'd3', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'h6', 'Be2', 'e5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7', 'Nc3', 'Nf6'], ['e3', 'c5', 'g3', 'Nc6', 'Bg2', 'g6', 'Ne2', 'Bg7', 'O-O', 'Nf6'], ['e4', 'b6', 'd4', 'Bb7', 'd5', 'g6', 'Nf3', 'Bg7', 'Nc3', 'e6'], ['g3', 'e5', 'Bg2', 'Nf6', 'Nc3', 'Bc5', 'd3', 'Ng4', 'e3', 'Bxe3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'd6', 'Re1', 'Be7'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Nf6', 'Bb5', 'a6', 'Bc4', 'Nxe4'], ['e3', 'e5', 'g3', 'Nc6', 'Bg2', 'Nf6', 'Nc3', 'Bc5', 'd3', 'd6'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Nf6', 'Bc4', 'Nxe4', 'Nxe4', 'Bxe4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'd3', 'Bg4'], ['e4', 'c5', 'Nf3', 'e6', 'g3', 'a6', 'Bg2', 'Nc6', 'b3', 'b5'], ['e4', 'e6', 'c3', 'd5', 'f3', 'c5', 'c4', 'Nc6', 'd3', 'dxc4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'Bg5', 'h6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Ne5', 'Nbd7'], ['d4', 'Nf6', 'Nf3', 'Nc6', 'Bf4', 'd6', 'e3', 'e5', 'dxe5', 'dxe5'], ['d4', 'd5', 'Nf3', 'e6', 'Bf4', 'Nf6', 'e3', 'Bb4+', 'c3', 'Bd6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['h3', 'e5', 'a3', 'd5', 'd3', 'd4', 'Nf3', 'Nc6', 'e4', 'f5'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'Nc6', 'e3', 'Bb4+', 'c3', 'Ba5'], ['h3', 'e5', 'a3', 'd5', 'd3', 'Nf6', 'Nc3', 'Nc6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'O-O', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nc3', 'Bg7'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'dxe4', 'Bc4', 'Be6', 'Bxe6', 'fxe6'], ['b3', 'd5', 'd4', 'e6', 'Nf3', 'Nf6', 'a3', 'Nc6', 'Bb2', 'g6'], ['d4', 'd5', 'e4', 'e6', 'Nd2', 'Bb4', 'c3', 'Ba5', 'b4', 'Bb6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Bb4', 'Qc2', 'Nc6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nf6', 'Bf4', 'h6'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Bd7', 'Nc3', 'Bxb5'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['e4', 'e5', 'Nf3', 'f5', 'd3', 'fxe4', 'dxe4', 'Nc6', 'Bc4', 'Bc5'], ['h3', 'e5', 'a3', 'Nf6', 'e3', 'd5', 'Nc3', 'a6', 'd4', 'exd4'], ['e4', 'e5', 'f4', 'exf4', 'Bc4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'f4', 'exf4', 'Bc4', 'Qh4+', 'Kf1', 'Bc5', 'd4', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'Qe7', 'Re1', 'd6'], ['e4', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Nxd5', 'Qxd5', 'Qf3', 'e6'], ['e4', 'Nf6', 'f4', 'Nxe4', 'Nc3', 'Nxc3', 'bxc3', 'd5', 'd4', 'Bf5'], ['d4', 'e6', 'c4', 'c6', 'e4', 'b6', 'Nc3', 'Bb7', 'Nf3', 'Nf6'], ['d4', 'g6', 'e4', 'd6', 'Nf3', 'Bg7', 'c3', 'Nd7', 'Be3', 'e5'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'h3', 'dxe5', 'c3', 'exd4'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Bf5', 'c3', 'Nf6', 'Nf3', 'Ne4'], ['c4', 'c6', 'e4', 'e6', 'Nf3', 'd5', 'cxd5', 'cxd5', 'e5', 'Nc6'], ['d4', 'd5', 'Bf4', 'e6', 'c4', 'Bb4+', 'Nc3', 'dxc4', 'e3', 'g5'], ['e4', 'Nf6', 'Nc3', 'd5', 'e5', 'Nfd7', 'Nf3', 'e6', 'd4', 'c5'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Bf5', 'Bc4', 'c6', 'dxc6', 'Nxc6'], ['d4', 'e6', 'c4', 'Nf6', 'Bf4', 'c6', 'Nc3', 'd5', 'Nf3', 'Nbd7'], ['e4', 'Nf6', 'Nc3', 'd5', 'e5', 'Nfd7', 'd4', 'e6', 'f4', 'c5'], ['d4', 'Nf6', 'Bg5', 'g6', 'Bxf6', 'exf6', 'e4', 'Bg7', 'Nf3', 'O-O'], ['d4', 'd5', 'Bf4', 'g6', 'e3', 'Bg7', 'Nf3', 'Be6', 'c3', 'Nd7'], ['e4', 'd5', 'exd5', 'Nf6', 'Bc4', 'Nxd5', 'Bxd5', 'Qxd5', 'Qf3', 'Qxf3'], ['d4', 'f5', 'Nf3', 'd5', 'Bf4', 'c6', 'Nbd2', 'Nf6', 'e3', 'e6'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'c6', 'dxc6', 'Nxc6', 'd3', 'Bf5'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'c6', 'dxc6', 'Nxc6', 'a3', 'a5'], ['d4', 'e5', 'dxe5', 'Bc5', 'Nf3', 'd6', 'exd6', 'Bxd6', 'Nc3', 'Nc6'], ['e4', 'd5'], ['d4', 'Nf6', 'Bf4', 'g6', 'Nf3', 'Bg7', 'e3', 'd6', 'c3', 'O-O'], ['e4', 'd5', 'exd5', 'Nf6', 'Bc4', 'Nxd5', 'Bxd5', 'Qxd5', 'Nf3', 'Bg4'], ['d4', 'g6', 'Bf4', 'd6', 'Nf3', 'Bg7', 'c3', 'Nf6', 'e3', 'Bg4'], ['c4', 'c6', 'Nc3', 'e6', 'e4', 'Bc5', 'd4', 'Bb6', 'c5', 'Bc7'], ['d4', 'Nf6', 'Bf4', 'd5', 'e3', 'Bf5', 'Nf3', 'c6', 'Nbd2', 'Qb6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'g6', 'c4', 'Bg7', 'Nf3', 'c6'], ['d4', 'f5', 'g3', 'Nf6', 'Bg2', 'c6', 'c4', 'd5', 'Nc3', 'e6'], ['Nf3', 'd5', 'd4', 'Nf6', 'Bf4', 'Bf5', 'e3', 'c5', 'c3', 'Nc6'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'exd6', 'exd6', 'Bc4', 'Nb6'], ['d4', 'Nf6', 'Bf4', 'Nc6', 'e3', 'd5', 'c3', 'h6', 'Nf3', 'g5'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'Nf3', 'Bg4', 'Be2', 'Nc6'], ['e4', 'd5', 'e5', 'Bf5', 'd4', 'e6', 'Nc3', 'c5', 'Bd3', 'Bxd3'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'Nf3', 'O-O', 'c3', 'd6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nc3', 'c6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nd7', 'Nc3', 'Be7', 'Bc4', 'Ngf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e6', 'f4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nf6', 'Ng3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'Bd3', 'c5', 'dxc5', 'Bxc5', 'Qe2', 'd4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'a6', 'Nc3', 'e6'], ['e4', 'b6', 'd4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'Bb7', 'Bd3', 'e6'], ['d4', 'd5'], ['d4', 'd5', 'c4', 'c6', 'e3', 'f6', 'Nf3', 'e6', 'cxd5', 'cxd5'], ['e4', 'd6', 'd4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'Nf6', 'Bf4', 'O-O'], ['e4', 'g6', 'f4', 'Bg7', 'd4', 'e6', 'c3', 'd6', 'Nf3', 'Ne7'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'd6', 'f5', 'Be7', 'Bc4', 'Bh4+'], ['d4', 'g6', 'Nf3', 'Bg7', 'c4', 'e6', 'Bg5', 'Ne7', 'e3', 'd6'], ['c4', 'g6', 'Nc3', 'Bg7', 'Qc2', 'e6', 'e3', 'Ne7', 'Bd3', 'b6'], ['d4', 'e6', 'Nf3', 'Ne7', 'c4', 'Ng6', 'e3', 'c5', 'Nbd2', 'a6'], ['c4', 'Nf6', 'Qc2', 'd5', 'e3', 'e6', 'a3', 'c6', 'Nf3', 'Be7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'b5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Be2', 'Nc6'], ['e3', 'd5', 'd4', 'e6', 'Qe2', 'Nf6', 'Nc3', 'Nc6', 'f3', 'a6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nf6'], ['d3', 'c5', 'Be3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd5', 'e6'], ['e4', 'h6', 'Nf3', 'e6', 'Nc3', 'd6', 'Bc4', 'Nc6', 'd4', 'Nf6'], ['b4', 'e5', 'a4', 'd5', 'Nc3', 'Bxb4', 'Ba3', 'd4', 'Ne4', 'Bxa3'], ['e4', 'e6', 'd4', 'Nf6', 'Nc3', 'Nc6', 'e5', 'Ng8', 'Nf3', 'd6'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb3', 'c5', 'Ba4+', 'Nc6'], ['d4', 'd5', 'Nf3', 'c6', 'Bf4', 'Nf6', 'c3', 'Bf5', 'e3', 'e6'], ['d4', 'e6', 'Bf4', 'd6', 'Nf3', 'c6', 'e3', 'Nf6', 'Nbd2', 'Nbd7'], ['f4', 'd5', 'Nf3', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qc3', 'Nf6'], ['c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'c5', 'g3', 'e6', 'Bg2', 'd5'], ['c4', 'c6', 'e3', 'e6', 'd4', 'a5', 'Qf3', 'Qf6', 'Nc3', 'e5'], ['c4', 'Nf6', 'd3', 'e6', 'e4', 'd5', 'cxd5', 'exd5', 'e5', 'Nfd7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'dxe4'], ['c4', 'g6', 'd3', 'Bg7', 'Nf3', 'c5', 'Nc3', 'e6', 'e3', 'Ne7'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Nf3', 'Nc6'], ['d4', 'd5', 'e4', 'e6', 'Nd2', 'c5', 'dxc5', 'Bxc5', 'a3', 'Nf6'], ['c4', 'c5', 'Nc3', 'e6', 'd4', 'Nf6', 'dxc5', 'Bxc5', 'Nf3', 'O-O'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'd4', 'Nf3', 'Nc6', 'e3', 'Bb4+'], ['c4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nxc6', 'bxc6'], ['c4', 'Nf6', 'd4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'O-O', 'Bf4', 'd6'], ['Nf3', 'd5', 'g3', 'Nf6', 'Bg2', 'Nc6', 'Kf1', 'e6', 'c3', 'Bd6'], ['c4', 'c6', 'd3', 'e6', 'Nf3', 'd5', 'cxd5', 'exd5', 'Nc3', 'Be6'], ['c4', 'e6', 'd3', 'Bc5', 'Nf3', 'a6', 'Nc3', 'h6', 'e3', 'Nf6'], ['d4', 'd5', 'c4', 'Nf6', 'Nf3', 'c6', 'Bg5', 'e6', 'e3', 'Be7'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bg5', 'Nc6', 'Bxf6', 'exf6', 'Qd3', 'Bd6'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'Nc3', 'Nc6', 'Nf3', 'Bf5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'Nc6', 'Nf3', 'e6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'Bb4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'h6', 'Bh4', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'O-O', 'Ngf6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Nc6', 'cxd5', 'Nxd5', 'Nf3', 'Nxc3'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'O-O'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'Na3', 'b5', 'Nxb5', 'c6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'exd5', 'Bg5', 'Be7'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'Nf6', 'f3', 'd5', 'Bb5', 'Bd7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'cxd5', 'exd5', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Na5'], ['e4', 'e5', 'Qh5', 'Nc6', 'c3', 'Nf6', 'Qd1', 'Bc5', 'f3', 'O-O'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'Bf5', 'Nf3', 'Bxb1'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd3', 'Bc5', 'Nbd2', 'd5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'f6', 'Bxc4', 'Nc6', 'Nf3', 'e5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'dxc4', 'e3', 'Bxc3'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'cxd5', 'exd5', 'Bg5', 'c6'], ['e3', 'e5', 'd4', 'Nc6', 'dxe5', 'Nxe5', 'Nf3', 'Bd6', 'Nxe5', 'Bxe5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nc6', 'Bxc4', 'e5', 'Nf3', 'e4'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'd4', 'e3', 'Bb4+', 'Nd2', 'd3'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'dxc4', 'e3', 'b5', 'a4', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'Bb5', 'Bd7', 'Nc3', 'exd4'], ['d4', 'd5', 'Nc3', 'e6', 'Nf3', 'c5', 'e3', 'Nc6', 'Ne5', 'cxd4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qc6', 'Nf3', 'Nf6', 'Bb5', 'Qxb5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'c3', 'Nf6', 'Qe2', 'O-O'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'c6', 'h4', 'd5', 'e5', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'd3', 'd4', 'Nb1', 'Be6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Bd3', 'Nd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Bc5', 'O-O', 'Nf6'], ['d4', 'd5', 'f4', 'Bf5', 'e3', 'Nc6', 'g4', 'Be4', 'c4', 'Bxh1'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'd5', 'Bd3', 'exd4', 'Nxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd4', 'Nxe4', 'dxe5', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd3', 'O-O'], ['g3', 'e5', 'Bg2', 'd5', 'b3', 'Nc6', 'Bb2', 'Nf6', 'Nc3', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Nd4', 'Be3', 'Nxb5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'd5'], ['e4', 'e5', 'c3', 'Nc6', 'd4', 'd5', 'f3', 'Nf6', 'dxe5', 'Nxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'd3', 'Nge7', 'Bg5', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Bb6', 'd4', 'd6'], ['d4', 'd5', 'Nf3', 'Bf5', 'g4', 'Bxg4', 'h3', 'Bxf3', 'exf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bd3', 'Bc5', 'O-O', 'O-O', 'Nxe5', 'd6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qf3', 'f6', 'Nh3', 'Ne7', 'Ng5', 'fxg5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bb4+', 'c3', 'Ba5', 'd5', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'c6', 'Bc4', 'b5', 'Bb3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'Bxd5', 'Nxd5'], ['d4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'Bg4', 'h3', 'Bh5', 'e3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Bd5', 'Nd4', 'Bc6+', 'bxc6'], ['e4', 'e6', 'd4', 'Qf6', 'Nf3', 'b6', 'Bg5', 'Qg6', 'Nc3', 'Bb7'], ['e4', 'e5', 'd3', 'Bc5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'Bg5', 'd6'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'e4', 'Ng1', 'Bc5', 'Nc3', 'Qf6'], ['e4', 'e5', 'd3', 'd5', 'Nf3', 'Nc6', 'Nc3', 'Be6', 'Qd2', 'Qd7'], ['e3', 'e5', 'Nf3', 'Nc6', 'd4', 'd5', 'dxe5', 'Bg4', 'h4', 'Nxe5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'a3', 'Ba5', 'b4', 'Bb6'], ['e4', 'e6', 'Nf3', 'd5', 'Nc3', 'c5', 'Bb5+', 'Bd7', 'd3', 'Bxb5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bd3', 'd6', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'Bc4', 'd6', 'O-O', 'Be6'], ['e4', 'e5', 'Nc3', 'Nf6', 'Qf3', 'Nc6', 'Nd5', 'd6', 'Nxf6+', 'gxf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'g5', 'g3', 'g4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bc4', 'f6', 'Nc3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'd6', 'd3', 'Be6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f6', 'Bb5+', 'c6', 'Ba4', 'b5'], ['e4', 'h5', 'd4', 'Nf6', 'Nc3', 'd6', 'h3', 'e5', 'Be3', 'exd4'], ['a4', 'e5', 'Ra3', 'Bxa3'], ['e4', 'g6', 'd4', 'Bg7', 'Nc3', 'd6', 'Be2', 'Nf6', 'Be3', 'O-O'], ['e4', 'c5', 'Nc3', 'd6', 'f4', 'Nc6', 'Bb5', 'Bd7', 'Nf3', 'e6'], ['c4', 'd5', 'cxd5', 'Nf6', 'Nc3', 'Nxd5', 'e4', 'Nxc3', 'bxc3', 'e5'], ['e4', 'c5', 'Nc3', 'Nc6', 'f4', 'e5', 'f5', 'Nf6', 'Nf3', 'd5'], ['c4', 'Nf6', 'g3', 'd5', 'cxd5', 'Nxd5', 'Bg2', 'Nc6', 'Nc3', 'Nb6'], ['b3', 'c5', 'Bb2', 'Nc6', 'c4', 'e5', 'e3', 'Nf6', 'Ne2', 'd5'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'Nf3', 'O-O', 'Be2', 'd6'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Nxd5', 'c4', 'Nb6', 'Nc3', 'Nc6'], ['e4', 'd5', 'e5', 'c5', 'f4', 'h5', 'Nf3', 'Bf5', 'Nc3', 'e6'], ['b3', 'd5', 'Bb2', 'Bg4', 'h3', 'Bh5', 'g4', 'Bg6', 'Bg2', 'e6'], ['e4', 'g6', 'd4', 'Bg7', 'Nc3', 'd6', 'f4', 'Nf6', 'Nf3', 'O-O'], ['b3', 'd6', 'Bb2', 'Bf5', 'd3', 'Nd7', 'e4', 'Bg6', 'f4', 'f5'], ['f4', 'Nc6', 'Nf3', 'Nf6', 'b3', 'g6', 'Bb2', 'Bg7', 'e3', 'O-O'], ['b3', 'c5', 'Bb2', 'Nc6', 'c4', 'f5', 'e3', 'Nf6', 'Ne2', 'e5'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nce7', 'c4', 'Ng6', 'Nc3', 'Nf6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Nxd5', 'Qxd5', 'Qf3', 'Qxf3'], ['b3', 'd5', 'Bb2', 'Nf6', 'e3', 'e6', 'd4', 'c5', 'c4', 'dxc4'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'Nc6', 'e3', 'Ngxe5'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'Nc3', 'exd5', 'c5', 'd4'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'dxe6', 'Bxe6', 'd4', 'Bb4+'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'e6', 'dxe6', 'Bxe6', 'c3', 'c5'], ['b3', 'b6', 'Bb2', 'Bb7', 'Nc3', 'Nf6', 'Nf3', 'c5', 'd3', 'd5'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'd5', 'Ne2', 'd4', 'e4', 'Nf6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'e6', 'dxe6', 'Bxe6', 'h3', 'Bc5'], ['e4', 'd5', 'e5', 'Nc6', 'd4', 'f6', 'f4', 'e6', 'Bb5', 'a6'], ['e4', 'g6', 'd4', 'Bg7', 'c4', 'd6', 'Nc3', 'Nf6', 'Nf3', 'O-O'], ['e4', 'c5', 'Nc3', 'e6', 'd3', 'd5', 'exd5', 'exd5', 'd4', 'Nc6'], ['Nf3', 'd5', 'Nd4', 'e5', 'Nf3', 'e4', 'Ng1', 'Bc5', 'e3', 'Bf5'], ['e4', 'e6', 'd4', 'Bb4+', 'Nc3', 'Bf8', 'Bd2', 'Be7', 'Qf3', 'Bf8'], ['Nf3', 'c6', 'Nc3', 'd5', 'Ng1', 'Nf6', 'Nb1', 'e5', 'Nc3', 'Bd6'], ['e4', 'Nf6', 'Nc3', 'Ng8', 'Nf3', 'Nc6', 'Bc4', 'Nb8', 'O-O', 'e6'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bf4', 'd6', 'e3', 'Bg7', 'Be2', 'Nbd7'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Nxd5', 'c4', 'Nf6', 'Nc3', 'e6'], ['c4', 'Nf6', 'Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O', 'O-O', 'd6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nf6', 'Bd3', 'Qxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nc6', 'Nf3', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'h6', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'Bd6', 'O-O', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nb4', 'O-O', 'Nf6', 'Nc3', 'c6'], ['e4', 'c5', 'e5', 'Nc6', 'f4', 'd6', 'Nf3', 'Bg4', 'h3', 'Bxf3'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'dxc4', 'a4', 'Bf5'], ['e4', 'c5', 'Bb5', 'Nf6', 'Nc3', 'Nc6', 'Bxc6', 'bxc6', 'e5', 'Nd5'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'a4', 'Nf6', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'c6', 'e3', 'Bf5', 'Bd3', 'Bxd3'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'f3', 'exf3', 'Nxf3', 'Bg4'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'e6', 'Nf3', 'Bb4', 'Qc2', 'Nf6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nc6', 'Qe2+', 'Be7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'e6', 'e3', 'h6'], ['d4', 'e6', 'e4', 'c5', 'd5', 'exd5', 'exd5', 'Nf6', 'c4', 'Bd6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'cxd4'], ['d4', 'g6', 'e4', 'Bg7', 'Nf3', 'd6', 'Be3', 'c6', 'Be2', 'Nd7'], ['d4', 'e6', 'c4', 'Nf6', 'Nc3', 'c5', 'd5', 'exd5', 'cxd5', 'd6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'cxd4', 'cxd4', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Bb5', 'a6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'f6', 'Nc3', 'Bb4', 'Qc2', 'Ne7'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'c3', 'Nc6', 'Ngf3', 'Qb6'], ['e4', 'd5', 'd3', 'e6', 'Nf3', 'c6', 'Nc3', 'Nf6', 'Bd2', 'Qb6'], ['d3', 'd5', 'e4', 'e6', 'Qf3', 'Nc6', 'exd5', 'exd5', 'Qe3+', 'Qe7'], ['Nf3', 'Nf6', 'e3', 'g6', 'd3', 'Bg7', 'Be2', 'd6', 'Nc3', 'e5'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['Nf3', 'd5', 'Nc3', 'd4', 'd3', 'dxc3', 'bxc3', 'Nf6', 'e3', 'Bg4'], ['e4', 'e5', 'd3', 'Nf6', 'Nf3', 'd5', 'exd5', 'Qxd5', 'c4', 'Qd6'], ['d4', 'd5', 'Nf3', 'Nf6', 'c3', 'Nc6', 'Bg5', 'Ng4', 'h3', 'h6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qf3', 'Nd6', 'Bc4', 'Nxc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Nxe5', 'Nxe5', 'd4', 'Nc6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'Nf6', 'e5', 'Nd5', 'cxd4', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['d4', 'Nf6', 'Nf3', 'd5', 'g3', 'Bf5', 'Bg2', 'e6', 'O-O', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nb3', 'Bxf2+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'O-O', 'c6'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'e6', 'Nc3', 'exd5', 'cxd5', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Qe2', 'Nc6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'd4', 'd5'], ['e4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nxe4', 'Bxf7+', 'Kxf7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'b5'], ['d4', 'e6', 'Bf4', 'c5', 'e3', 'Nf6', 'Nf3', 'Nc6', 'Nbd2', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7', 'O-O', 'Nf6'], ['Nf3', 'c5', 'd4', 'e6', 'd5', 'exd5', 'Qxd5', 'Nf6', 'Qg5', 'Nc6'], ['c4', 'Nf6', 'd4', 'g6', 'Nc3', 'd5', 'e3', 'Bg7', 'Nf3', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'Nf3', 'Bb4', 'Bg5', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Bb4'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'a6', 'Bg5', 'Be7'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nd7', 'Bc4', 'Ngf6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'Nf6', 'e5', 'Nd5', 'cxd4', 'd6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Nf3', 'O-O', 'Qd3', 'd5'], ['e4', 'Nf6', 'h3', 'Nxe4', 'Qf3', 'Nf6', 'g4', 'e6', 'g5', 'Nd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'b5'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nf6', 'Nc3', 'Be7', 'Nf3', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'a3', 'd5', 'Nc3', 'Be7', 'Bg5', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['d4', 'e6', 'c4', 'f5', 'g3', 'Nf6', 'Bg2', 'Be7', 'Nf3', 'O-O'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'b5'], ['e4', 'g6', 'd4', 'd6', 'Nc3', 'Bg7', 'f4', 'Nf6', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'd6', 'h3', 'Nbd7'], ['e4', 'c5', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'g6', 'Bb5+', 'Bd7'], ['c4', 'Nf6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'g3', 'e5', 'Bg2', 'Nb6'], ['c4', 'Nf6', 'Nc3', 'e5', 'g3', 'd5', 'cxd5', 'Nxd5', 'Bg2', 'Nb6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e6', 'd3', 'd5', 'exd5', 'exd5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Nf3', 'O-O', 'Qd3', 'Bxc3+'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Bc4', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bd3', 'Nxd4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'e6', 'Nc3', 'c6', 'Bg5', 'h6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'g6', 'Nc3', 'Bg7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Nge2', 'e6', 'd4', 'Qf6'], ['e4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Ba4', 'Nxf3+'], ['d4', 'd5', 'c4', 'e6', 'c5', 'b6', 'e3', 'bxc5', 'dxc5', 'c6'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nf6', 'Nf3', 'Bb4+', 'Bd2', 'Bd6'], ['d4', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Nc3', 'e6', 'Nf3', 'Nf6'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nb6', 'Be3', 'e6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bb5', 'g6', 'h3', 'Bg7'], ['d4', 'd5', 'c4', 'e6', 'c5', 'Nc6', 'Nc3', 'Nf6', 'Bg5', 'e5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'g6', 'a3', 'Bg7', 'Bb5', 'd6'], ['d4', 'e6', 'e4', 'Nf6', 'e5', 'Nd5', 'Bc4', 'Nc6', 'Bxd5', 'exd5'], ['Nc3', 'd5', 'Nxd5', 'Qxd5', 'c4', 'Qd8', 'b3', 'e5', 'g4', 'e4'], ['e4', 'e5', 'c4', 'Nf6', 'f3', 'Bc5', 'Ne2', 'Nc6', 'Nbc3', 'a6'], ['d4', 'b5', 'f3', 'g5', 'g4', 'a5', 'h4', 'gxh4', 'Rxh4', 'Nf6'], ['d4', 'd5', 'Nf3', 'e6', 'Bf4', 'Nf6', 'Nbd2', 'c5', 'c3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'd6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Bc4', 'dxe5', 'd3', 'Be6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nc6', 'Be2', 'g6'], ['e4', 'c5', 'e5', 'Nc6', 'Nf3', 'f6', 'exf6', 'Nxf6', 'Bc4', 'd5'], ['Nf3', 'Nf6', 'c4', 'b6', 'g3', 'Bb7', 'Bg2', 'e6', 'O-O', 'Be7'], ['d4', 'c5', 'Nf3', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Bf4', 'd6'], ['e4', 'b6', 'Nf3', 'Bb7', 'd3', 'g6', 'Be2', 'Bg7', 'O-O', 'd6'], ['b3', 'e5', 'Bb2', 'Nc6', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'c5', 'Nf3', 'h5', 'd4', 'h4', 'd5', 'f6', 'Bf4', 'g5'], ['h4', 'e5', 'h5', 'd5', 'e3', 'Nf6', 'f3', 'e4', 'g4', 'exf3'], ['e4', 'd6', 'Nf3', 'f6', 'd4', 'e5', 'dxe5', 'fxe5', 'Nc3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bd6', 'd5', 'Nd4', 'Nxd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bg4', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'c3', 'c5', 'd4', 'cxd4', 'cxd4', 'exd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Nc3', 'Bg4', 'h3', 'Bh5'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'c5', 'cxd5', 'exd5', 'dxc5', 'Bxc5'], ['b4', 'f6', 'Bb2', 'Nc6', 'b5', 'Na5', 'e4', 'a6', 'a4', 'c6'], ['c4', 'g6', 'd4', 'Bg7', 'e4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'c6'], ['e3', 'd5', 'd4', 'Nc6', 'h3', 'Bf5', 'Nf3', 'e6', 'a3', 'Nf6'], ['d4', 'c6', 'c4', 'd5', 'e3', 'Nf6', 'Bd3', 'Nbd7', 'Nf3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nd4'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nf6', 'Bd3', 'Nxe4'], ['d4', 'd5', 'c4', 'Bf5', 'Nf3', 'e6', 'e3', 'Nc6', 'cxd5', 'Qxd5'], ['e4', 'Nf6', 'Nc3', 'e5', 'Bc4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5'], ['d4', 'd5', 'Nf3', 'Nf6', 'Nc3', 'c6', 'Bg5', 'Bf5', 'e3', 'e6'], ['Nf3', 'd5', 'c4', 'c6', 'd4', 'e6', 'g3', 'Bd6', 'Bg2', 'Nd7'], ['Nf3', 'c5', 'g3', 'd5', 'Bg2', 'Nf6', 'c4', 'd4', 'O-O', 'Nc6'], ['d4', 'd5', 'Nf3', 'e6', 'Bf4', 'Nf6', 'e3', 'a6', 'Bd3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'd3', 'Nf6'], ['d4', 'd5', 'Nf3', 'f6', 'Bf4', 'e6', 'e3', 'Nh6', 'Bd3', 'Ng4'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qc4', 'e6', 'Nc3', 'Ne5'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Nc6', 'e3', 'Bd7', 'Nbd2', 'g6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'Bf5', 'Bg5', 'e6', 'e3', 'Qd7'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'Nc6', 'Nf3', 'e6', 'Be2', 'Bb4'], ['d4', 'd5', 'e3', 'Nf6', 'Bd3', 'Bg4', 'f3', 'Bh5', 'g4', 'Bg6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qf3', 'Qf6', 'Qxf6', 'gxf6'], ['d4', 'd5', 'Nf3', 'e6', 'Bf4', 'c5', 'e3', 'Nc6', 'Bd3', 'Qb6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'Bb4'], ['c4', 'Nc6', 'Nc3', 'b6', 'e3', 'Bb7', 'a3', 'e6', 'd4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bd6'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'e6', 'e3', 'Nf6', 'Bd3', 'b6'], ['e4', 'c5', 'Nf3', 'Nc6', 'b4', 'e6', 'b5', 'Nd4', 'Bb2', 'Nxb5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Qf6', 'Be3', 'Nh6'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'e4', 'Qe2', 'Nf6', 'd3', 'Qxd5'], ['f4', 'e5', 'fxe5', 'd6', 'Nf3', 'Nc6', 'e3', 'dxe5', 'Bb5', 'Bd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'Bc5', 'e3', 'Nc6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nc6', 'Nf3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'd5'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'e5'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'g6', 'Nc3', 'Bg7'], ['d4', 'Nf6', 'c4', 'e5'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'f3', 'Nf6', 'Be3', 'Be7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'e6', 'Nf3', 'c6'], ['b3', 'e5', 'Bb2', 'f6', 'd3', 'd5', 'e3', 'Be6', 'Nf3', 'Nd7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'e6', 'Nf3', 'c6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Nf6', 'Re1', 'Be7'], ['d4', 'd5', 'Nf3', 'Nf6', 'g3', 'c5', 'c3', 'cxd4', 'cxd4', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bg5', 'O-O', 'Qc2', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bg5', 'h6'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nf3', 'Bg4', 'e3', 'e6', 'c4', 'Bd6'], ['d4', 'Nf6', 'Bg5', 'g6', 'Bxf6', 'exf6', 'e4', 'd5', 'exd5', 'Qxd5'], ['e4', 'Nf6', 'Nc3', 'e5', 'Bc4', 'Nxe4', 'Nxe4', 'd5', 'Bd3', 'dxe4'], ['e4', 'Nf6', 'Nc3', 'e5', 'f4', 'd5', 'fxe5', 'Nxe4', 'Nf3', 'Nxc3'], ['d4', 'd6', 'e4', 'Nf6', 'Nc3', 'e5', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['e4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Bc4', 'Nxf3+'], ['d4', 'g6', 'c4', 'Bg7', 'Nc3', 'd6', 'e4', 'Nc6', 'd5', 'Nd4'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'c5', 'c3', 'Nc6', 'Nd2', 'e6'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'e6', 'Nc3', 'exd5', 'cxd5', 'd6'], ['d4', 'd5', 'f4', 'f5', 'Nf3', 'Nf6', 'e3', 'c6', 'Be2', 'e6'], ['d4', 'd5', 'Nf3', 'e6', 'c4', 'Nf6', 'Bg5', 'Be7', 'Bxf6', 'Bxf6'], ['d4', 'd5', 'c3', 'c5', 'dxc5', 'e5', 'Qd3', 'e4', 'Qd4', 'Nc6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Bg5', 'O-O', 'Bxf6', 'Bxf6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Bf5', 'c4', 'e6', 'Nc3', 'c5'], ['e4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5'], ['e4', 'g6', 'd4', 'Bg7', 'Nc3', 'e6', 'Bf4', 'b6', 'Nb5', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'a6', 'Ba4', 'b5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'e3', 'Be7', 'Nf3', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf5', 'd5'], ['e4', 'c5', 'd4', 'cxd4', 'Bd3', 'Nc6', 'Nf3', 'e5', 'O-O', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'd4', 'cxd4', 'Nxd4', 'Qa5+'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Bg5', 'Be7', 'Nc3', 'O-O'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Qc7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e5', 'd3', 'Nf6', 'c3', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Be7', 'Nc3', 'c6'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'Nf6', 'Nc3', 'Bg4', 'Be2', 'e6'], ['d4', 'd5', 'e4', 'dxe4', 'Bb5+', 'Bd7', 'Nc3', 'Bxb5', 'Nxb5', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'Nc3', 'Bb4'], ['d4', 'd5', 'e3', 'Nc6', 'a3', 'e5', 'c4', 'exd4', 'exd4', 'dxc4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf5', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'Re1', 'Bc5'], ['e3', 'e5', 'b3', 'd5', 'd3', 'Bb4+', 'Bd2', 'Bxd2+', 'Nxd2', 'Nc6'], ['e4', 'e6', 'd4', 'b6', 'Nf3', 'd6', 'Bd3', 'a6', 'O-O', 'h6'], ['e3', 'd5', 'b3', 'e5', 'Bb2', 'Nf6', 'a3', 'Nc6', 'h3', 'd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'Bc4', 'Nf6', 'Ng5', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'Bb4+'], ['e4', 'e6', 'd4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Nf6', 'e5', 'Nd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'Bc5', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qf6', 'O-O', 'Bc5', 'd3', 'h6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'O-O', 'Nf6'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nb4', 'a3', 'Qh4', 'Nc3', 'Na6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'O-O', 'Be7', 'd4', 'exd4'], ['e4', 'e5', 'd3', 'Nc6', 'Nf3', 'Nf6', 'Bg5', 'h6', 'Bh4', 'Be7'], ['e4', 'c5', 'd3', 'Nc6', 'Nf3', 'd6', 'Be3', 'e5', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bxe6', 'fxe6', 'O-O', 'Nc6'], ['d4', 'd5', 'c3', 'Nc6', 'Nf3', 'Bg4', 'Nbd2', 'Nf6', 'Nb3', 'Bxf3'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'e5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'c4', 'Bg7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Bb5', 'Bd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'd4', 'cxd4', 'Nxd4', 'Qb6'], ['d4', 'b6', 'e4', 'Bb7', 'Bd3', 'e6', 'Nc3', 'Be7', 'Nf3', 'd6'], ['e4', 'b6', 'Bc4', 'Bb7', 'd3', 'e6', 'Nf3', 'd6', 'Bg5', 'Be7'], ['Nf3', 'c5', 'g3', 'd6', 'Bg2', 'Nf6', 'd3', 'g6', 'b3', 'Bg7'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'e6', 'd4', 'Bb4', 'Bd2', 'Bxc3'], ['Nf3', 'd5', 'g3', 'Nf6', 'Bg2', 'Bf5', 'd3', 'e6', 'Nbd2', 'Bc5'], ['b3', 'd5', 'Bb2', 'Nc6', 'e3', 'e5', 'Bb5', 'Bd6', 'f4', 'exf4'], ['e3', 'e5', 'd3', 'd5', 'c3', 'Nc6', 'Nd2', 'Nf6', 'h3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'd6', 'a3', 'Nf6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Bf4', 'Bg7', 'Nf3', 'Nh5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'c3', 'Nf6', 'Qe2', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'c6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nf6', 'Bf4', 'Bf5'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nc3', 'e6', 'Bd3', 'Bg6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'c4', 'e6', 'Nc3', 'Bb4'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nc3', 'e6', 'Bd3', 'Bxd3'], ['d4', 'd5', 'Nc3', 'Nf6', 'e4', 'dxe4', 'Bb5+', 'c6', 'Bg5', 'cxb5'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'c6', 'dxc6', 'Nxc6', 'Nf3', 'Bg4'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nc6', 'c3', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nc6', 'c3', 'Nf6'], ['e4', 'c6', 'Nc3', 'd5', 'Nf3', 'Bg4', 'h3', 'Bh5', 'exd5', 'cxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'c6', 'd3', 'd5', 'Nd2', 'e5', 'Ngf3', 'Bd6', 'd4', 'exd4'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bf4', 'Nd7', 'Nf3', 'e6'], ['e4', 'e6', 'd4', 'b6', 'c4', 'Bb7', 'Nc3', 'Bb4', 'Bd3', 'Nf6'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'c6', 'dxc6', 'Nxc6', 'b3', 'e5'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Nxd5', 'Qxd5', 'd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Bb6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Bg4', 'Be2', 'h5', 'h3', 'Bxf3'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'Bf5', 'Nf3', 'e6'], ['e4', 'c6', 'c4', 'd5', 'exd5', 'cxd5', 'cxd5', 'Qxd5', 'Nc3', 'Qg5'], ['f4', 'e6', 'g4', 'Qh4#'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Nxd5', 'Nf3', 'Nc6', 'c4', 'Nb6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'd5', 'exd5', 'Nf6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'c4', 'c6'], ['e4', 'd5', 'exd5', 'Nf6', 'Bc4', 'Nxd5', 'Bxd5', 'Qxd5', 'Nf3', 'Bg4'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nc3', 'Bf5', 'cxd5', 'cxd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bc4', 'b5', 'Bd5', 'Bb7'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'Nc3', 'exd5', 'cxd5', 'Nxd5'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'Nc3', 'exd5', 'cxd5', 'Nxd5'], ['e4', 'd6', 'd4', 'f5', 'Bd3', 'fxe4', 'Bxe4', 'Nf6', 'Bd3', 'e6'], ['c4', 'e5', 'd3', 'Nf6', 'a3', 'c5', 'Bd2', 'Nc6', 'h3', 'Be7'], ['e4', 'd6', 'd4', 'f5', 'Bd3', 'fxe4', 'Bxe4', 'Nf6', 'Bd3', 'e6'], ['f4', 'd5', 'e3', 'c5', 'Nf3', 'Nc6', 'Be2', 'd4', 'd3', 'Nf6'], ['e4', 'd6', 'd4', 'f5', 'Bd3', 'fxe4', 'Bxe4', 'e6', 'Qh5+', 'Ke7'], ['e4', 'e5', 'a3', 'Bc5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd4', 'exd4'], ['f4', 'e6', 'g4', 'Qh4#'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'Bf5', 'e3', 'e6'], ['f4', 'e6', 'g4', 'Qh4#'], ['e3', 'f5', 'Nc3', 'g5', 'Qh5#'], ['e4', 'e5', 'a3', 'Nf6', 'f3', 'Nxe4', 'fxe4', 'Qh4+', 'Ke2', 'Qxe4+'], ['f4', 'e6', 'g4', 'Qh4#'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Bf5', 'c3', 'e6', 'Nf3', 'Be7'], ['c4', 'Nf6', 'd4', 'e6', 'Nc3', 'Bb4', 'e3', 'c5', 'Bd3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nf3', 'Bg4', 'Nc3', 'e6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'g6', 'Bb5', 'Bg7', 'O-O', 'e6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'e3', 'Be7', 'Bd3', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Be7', 'Nc3', 'a6'], ['d4', 'Nf6', 'c4', 'e6', 'e3', 'd5', 'Nd2', 'c5', 'b3', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'd6', 'd4', 'exd4'], ['e4', 'e6', 'h3', 'd5', 'e5', 'd4', 'Nf3', 'Ne7', 'a3', 'Ng6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bf4', 'd5', 'e3', 'c5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Nc3', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nd3', 'Nxe4', 'Qe2', 'Qe7'], ['d4', 'd5', 'a4', 'e6', 'a5', 'Nf6', 'e4', 'dxe4', 'f4', 'c5'], ['e4', 'c5', 'Nc3', 'g6', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'O-O', 'd6'], ['e4', 'e6', 'Nc3', 'd5', 'd4', 'Nf6', 'e5', 'Nfd7', 'f4', 'c5'], ['d4', 'Nf6', 'Bg5', 'h6', 'Bh4', 'c5', 'd5', 'Qa5+', 'c3', 'Qb6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'Qxf3', 'dxe5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nxe4', 'd3', 'Nf6', 'Bg5', 'd5'], ['b4', 'd5', 'Nf3', 'Nc6', 'b5', 'Nb8', 'd4', 'Nf6', 'e3', 'Bf5'], ['b4', 'e6', 'a3', 'Be7', 'e4', 'd6', 'd4', 'Nd7', 'Nc3', 'Ngf6'], ['b4', 'd5', 'Nf3', 'Bg4', 'a3', 'Nf6', 'd4', 'Nbd7', 'Nbd2', 'Ne4'], ['b4', 'Nf6', 'Nf3', 'g6', 'e3', 'Bg7', 'd4', 'Nc6', 'b5', 'Nb4'], ['Nf3', 'e5', 'Nxe5', 'Qg5', 'd4'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Be2', 'Nf6', 'Nc3', 'Bc5', 'Nxe5', 'Nxe5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Be7', 'Bc4', 'Bf6'], ['e4', 'c5', 'c3', 'Nc6', 'Nf3', 'Nf6', 'd3', 'd6', 'Be2', 'e6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nf6', 'e5', 'Ng4', 'd4', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nd4'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'O-O', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Nge2', 'e6', 'd4', 'Qf6'], ['d4', 'd5', 'c4', 'c5', 'dxc5', 'Qa5+', 'Nc3', 'd4', 'Qa4+', 'Nc6'], ['e4', 'c5', 'g3', 'Nc6', 'Bg2', 'Nf6', 'Ne2', 'd6', 'Nbc3', 'e6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'Nf3', 'Nb6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'c4', 'e6'], ['e4', 'e6', 'd4', 'c5', 'd5', 'd6', 'c4', 'Bd7', 'Nc3', 'a6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'Nc3', 'd6', 'd3', 'Nf6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'e5'], ['e4', 'c5', 'd3', 'Nc6', 'Nf3', 'e6', 'Be2', 'Nf6', 'O-O', 'd5'], ['e4', 'c5', 'Bc4', 'd6', 'd3', 'Nc6', 'Nf3', 'Bg4', 'h3', 'Bh5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Qc7', 'c3', 'a6', 'Bxc6', 'Qxc6'], ['d4', 'd5', 'e4', 'dxe4', 'f3', 'exf3', 'Nxf3', 'Nf6', 'Nc3', 'Bg4'], ['c4', 'e5', 'Nc3', 'a6', 'g3', 'Bc5', 'Nf3', 'Nc6', 'Bg2', 'd6'], ['d4', 'Nf6', 'e3', 'd5', 'Nf3', 'Bg4', 'Be2', 'e6', 'Nc3', 'c5'], ['c4', 'Nc6', 'Nc3', 'e5', 'g3', 'f5', 'Bg2', 'e4', 'f3', 'Nf6'], ['d4', 'f5', 'Bg5', 'Nf6', 'Bxf6', 'exf6', 'e3', 'd5', 'Nf3', 'Bd6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nc6', 'c3', 'Qc7'], ['e4', 'e5', 'd3', 'c5', 'Nc3', 'Bd6', 'Nf3', 'Nc6', 'Be3', 'g6'], ['e4', 'c5', 'c3', 'e6', 'Nf3', 'g6', 'c4', 'Nf6', 'd3', 'Bg7'], ['e4', 'c5', 'Nc3', 'd6', 'Bb5+', 'Nc6', 'Nf3', 'a6', 'Bd3', 'g6'], ['e4', 'd5', 'e5', 'f6', 'exf6', 'gxf6', 'Qh5+', 'Kd7', 'Qxd5+', 'Ke8'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'Ne7', 'Nc3', 'g6', 'd3', 'Bh6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'Nf6', 'Bd2', 'e6'], ['e4', 'd5', 'Qe2', 'c6', 'e5', 'f6', 'd4', 'g6', 'f4', 'Qb6'], ['e4', 'd5', 'e5', 'Nc6', 'd4', 'Bf5', 'Nf3', 'g6', 'Bb5', 'Bg7'], ['e4', 'd5', 'Qf3', 'c6', 'exd5', 'cxd5', 'Nc3', 'Nf6', 'Nb5', 'Nc6'], ['d4', 'd5', 'e3', 'Nf6', 'f4', 'Bg4', 'Bd3', 'Bxd1', 'Kxd1', 'Nc6'], ['e4', 'c5', 'Be2', 'd6', 'Nc3', 'a6', 'd3', 'Nc6', 'Be3', 'e6'], ['e4', 'd5', 'exd5', 'Bd7', 'Nc3', 'e6', 'Bc4', 'Be7', 'Nf3', 'Nf6'], ['e4', 'e5', 'Qh5', 'd6', 'Bb5+', 'c6', 'Bc4', 'g6', 'Qf3', 'Qf6'], ['d4', 'd5', 'e4', 'dxe4', 'Bf4', 'Be6', 'Bb5+', 'Bd7', 'Nc3', 'Bxb5'], ['d4', 'd5', 'f3', 'e6'], ['d4', 'e6', 'Nf3', 'c5', 'Be3', 'Qb6', 'Qd2', 'Qxb2', 'Nc3', 'Qxa1+'], ['e4', 'e6', 'd4', 'Qh4', 'Nf3', 'Qxe4+', 'Qe2', 'Qc6', 'Bd2', 'Qxc2'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'e5', 'Qf3', 'Bb4+'], ['e4', 'b6', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'g3', 'e5', 'Bg2', 'Bc5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'Qg6', 'Nf3', 'Qxg2'], ['d4', 'd5', 'c3', 'Nc6', 'e4', 'dxe4', 'Be3', 'Nf6', 'Bb5', 'Bd7'], ['e4', 'd5', 'Nc3', 'Bg4', 'Be2', 'Be6', 'd4', 'dxe4', 'Nxe4', 'Bxa2'], ['d4', 'e5', 'dxe5', 'f6', 'exf6', 'Bb4+', 'Bd2', 'Bxd2+', 'Nxd2', 'gxf6'], ['e4', 'e6', 'd4', 'b6', 'Bc4', 'Nc6', 'Bf4', 'd5', 'exd5', 'exd5'], ['d4', 'd5', 'g3', 'c6', 'Nf3', 'Nf6', 'b4', 'Bg4', 'Ng1', 'h6'], ['Nh3', 'e5', 'g3', 'Nf6', 'Bg2', 'd5', 'O-O', 'h6', 'f4', 'e4'], ['Nf3', 'Nc6', 'g3', 'g6', 'Bg2', 'Nf6', 'O-O', 'Bg7', 'c3', 'O-O'], ['Nf3', 'Nf6', 'g3', 'd5', 'Bg2', 'e6', 'O-O', 'Be7', 'd3', 'O-O'], ['Nf3', 'Nf6', 'g3', 'e6', 'd3', 'b6', 'Bg2', 'Bb7', 'O-O', 'Be7'], ['Nf3', 'd5', 'h3', 'c5', 'd3', 'Nc6', 'Nbd2', 'e5', 'e4', 'd4'], ['Nf3', 'c5', 'g3', 'd5', 'd3', 'Nc6', 'Bg2', 'e5', 'Nc3', 'Nf6'], ['Nf3', 'Nc6', 'g3', 'g6', 'Nc3', 'Nf6', 'Bg2', 'Bg7', 'd3', 'd6'], ['Nf3', 'd5', 'g3', 'Nc6', 'Bg2', 'e6', 'O-O', 'Nf6', 'd4', 'Be7'], ['Nf3', 'd5', 'g3', 'c5', 'Bg2', 'Nc6', 'd3', 'Nf6', 'O-O', 'e5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'a6'], ['Nf3', 'e6', 'g3', 'd5', 'Bg2', 'c5', 'O-O', 'Nc6', 'c3', 'Qb6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nb5', 'a6'], ['Nf3', 'e6', 'g3', 'd5', 'Bg2', 'Nc6', 'O-O', 'Nf6', 'd3', 'Bc5'], ['Nf3', 'c5', 'g3', 'd5', 'Bg2', 'Nf6', 'd4', 'e6', 'c3', 'Be7'], ['Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'd6', 'd4', 'Nf6', 'Nc3', 'O-O'], ['Nf3', 'b6', 'g3'], ['Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'Nf6', 'O-O', 'O-O', 'd3', 'c5'], ['g3', 'c6', 'Bg2', 'd5', 'd4', 'Nf6', 'Nc3', 'e6', 'Bg5', 'Be7'], ['Nf3', 'c6', 'g3', 'Nf6', 'Bg2', 'e5', 'O-O', 'e4', 'd3', 'exf3'], ['Nf3', 'd5', 'g3', 'Nc6', 'Bg2', 'e5', 'O-O', 'Nf6', 'd3', 'Bf5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'e6'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nf6', 'Nf3', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'a6', 'd4', 'exd4', 'Ne2', 'Bc5'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Be7', 'O-O', 'd6', 'Re1', 'c6'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'd3', 'e6', 'Bg5', 'Nbd7'], ['e4', 'e5', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'f3', 'Bb4+', 'Bd2', 'Qe7'], ['e4', 'c5', 'c3', 'Nc6', 'd4', 'd6', 'd5', 'Ne5', 'Nf3', 'Nf6'], ['d4', 'd5', 'Nc3', 'e6', 'Nf3', 'Nf6', 'Bg5', 'c6', 'e3', 'Bb4'], ['d4', 'd5', 'Nf3', 'e6', 'Bf4', 'Nf6', 'e3', 'c5', 'c3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['d3', 'd5', 'e4', 'Nf6', 'd4', 'dxe4', 'Bb5+', 'Bd7', 'a4', 'a6'], ['d3', 'e5', 'e4', 'Nf6', 'g3', 'Bc5', 'Bg5', 'h6', 'Be3', 'Bxe3'], ['d4', 'd5', 'e3', 'Nc6', 'Nf3', 'Bg4', 'Bd3', 'e5', 'dxe5', 'Nxe5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'exd5', 'Bg5', 'Be7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Qc7'], ['e4', 'd5', 'e5', 'e6', 'd4', 'Bb4+', 'c3', 'Ba5', 'Nd2', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nc3', 'Bg4'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e6', 'Nc3', 'Bb4', 'a3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'Bc5', 'c3', 'O-O'], ['f3', 'e5', 'Kf2', 'd5', 'e3', 'Nf6', 'Nc3', 'd4', 'exd4', 'exd4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'd4', 'exd4', 'Ng5', 'Ne5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'O-O', 'Be7', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'd4', 'exd4', 'e5', 'dxc3'], ['Nf3', 'd5', 'e3', 'Bg4', 'Be2', 'e6', 'd4', 'Bd6', 'O-O', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'd6', 'O-O', 'Bg4', 'h3', 'Bh5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'h3', 'O-O'], ['d4', 'd5', 'c4', 'Nf6', 'c5', 'c6', 'e3', 'e6', 'Nf3', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'a6', 'Ba4', 'b5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'e6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'c6', 'Ng5', 'Qe7'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'd6', 'Ng5', 'Qd7', 'Bxf7+', 'Ke7'], ['d4', 'c6', 'c4', 'e6', 'e3', 'Nf6', 'Nc3', 'Be7', 'Nf3', 'd5'], ['d4', 'e6', 'c4', 'd5', 'e3', 'dxc4', 'Bxc4', 'a6', 'Nf3', 'b5'], ['d4', 'd5', 'e3', 'Nf6', 'Nf3', 'e6', 'Bb5+', 'Bd7', 'Be2', 'Bd6'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'Nf6', 'e3', 'c6', 'Nf3', 'Nbd7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Nge2', 'Nf6', 'g3', 'Qc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'a6', 'Ba4', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Ng5', 'O-O'], ['e4', 'e5', 'Nc3', 'Nf6', 'd3', 'g6', 'Nf3', 'd6', 'Be2', 'Bg7'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'd3', 'h6', 'Be3', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'Bb4', 'Bg5', 'O-O'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'd3', 'Bxd3', 'Nc6', 'Nf3', 'e6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'a6', 'Bc4', 'b5', 'Bb3', 'e6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'd6', 'Nf3', 'Nf6'], ['Nf3', 'd5', 'b3', 'Bg4', 'Bb2', 'Nf6', 'e3', 'e6', 'h3', 'Bh5'], ['d4', 'c5', 'e3', 'Nc6', 'd5', 'Ne5', 'e4', 'd6', 'Qe2', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'Bb4', 'a3', 'a6'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Bf4', 'Nc6', 'Nf3', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'Nxd5', 'Nxd5', 'exd5', 'Qxd5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nxf7', 'Kxf7', 'd4', 'Nxe4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bd3', 'Nf6', 'h3', 'Bd6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bd3', 'Be6', 'Nf3', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Be3', 'Bg7'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Nc6', 'Bxc6+', 'bxc6'], ['e4', 'e6', 'Nf3', 'Nf6', 'd3', 'd5', 'e5', 'Nfd7', 'Bg5', 'f6'], ['Nf3', 'Nc6', 'e4', 'e5', 'd4', 'd6', 'c3', 'exd4', 'cxd4', 'Bg4'], ['e4', 'e6', 'Nf3', 'd6', 'd3', 'c5', 'Nc3', 'Nc6', 'Be2', 'Be7'], ['e3', 'e5', 'Ne2', 'Nc6', 'f4', 'd5', 'd4', 'exd4', 'exd4', 'Bf5'], ['e4', 'b6', 'Nf3', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb3', 'Bb7'], ['e4', 'b6', 'd3', 'e6', 'Nf3', 'c6', 'c4', 'a5', 'Nc3', 'Na6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd6', 'd4', 'Bg4', 'Bxf4', 'Bxf3'], ['b3', 'e5', 'Bb2', 'Nc6', 'c4', 'd5', 'e3', 'Nf6', 'cxd5', 'Nxd5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'c6', 'Bf4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'd3', 'h6', 'Be3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Bd6', 'Bc4', 'h6', 'd4', 'Nc6', 'd5', 'Nce7'], ['e4', 'e5', 'Nf3', 'Bd6', 'Bc4', 'Qf6', 'd3', 'Nh6', 'Bg5', 'Qg6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Nc3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'c4', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'd5', 'Nxc6', 'bxc6'], ['d4', 'd5', 'g3', 'g6', 'c3', 'Bg7', 'Nf3', 'e6', 'Bg2', 'Nf6'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'Nc6', 'O-O', 'e6', 'd4', 'cxd4'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'exd5', 'exd5', 'Nf3', 'Bb4'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'Bg4', 'd4', 'e6', 'Be2', 'h6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Nf6', 'c4', 'Qd8', 'd4', 'e6'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'Bd6', 'd4', 'dxe4', 'Nc3', 'Bxe5'], ['e4', 'c5', 'f4', 'd6', 'd3', 'Nc6', 'Be3', 'e6', 'Nf3', 'Be7'], ['d4', 'd5', 'Nf3', 'e6', 'e3', 'Nf6', 'Bd3', 'Nc6', 'O-O', 'Be7'], ['c4', 'Nf6', 'Nc3', 'e5', 'e3', 'Nc6', 'Be2', 'b6', 'd3', 'Bb7'], ['c4', 'c5', 'Nc3', 'Nc6', 'e3', 'Nf6', 'Nf3', 'g6', 'Be2', 'Bg7'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Bb4', 'a3', 'Bxc3+'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nc6', 'Nc3', 'e6', 'Bb5', 'Be7'], ['e3', 'c5', 'Bc4', 'e6', 'Qf3', 'Nc6', 'Nc3', 'd6', 'Ne4', 'd5'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Bg5', 'Nbd7', 'Nc3', 'g6'], ['e4', 'e6', 'Nf3', 'd5', 'Nc3', 'Nc6', 'd4', 'dxe4', 'Nxe4', 'Nf6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bg4', 'e3', 'e6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'g3', 'Be7'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qf5', 'Nf3', 'Nc6', 'g3', 'Nf6'], ['c4', 'e5', 'g3', 'Nc6', 'Bg2', 'Nf6', 'Nc3', 'Bc5', 'e3', 'd6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Be7', 'cxd5', 'Nxd5'], ['c4', 'e6', 'g3', 'c6', 'Bg2', 'd5', 'cxd5', 'exd5', 'Nf3', 'Bg4'], ['e4', 'e6', 'e5', 'd5', 'exd6', 'Bxd6', 'Qg4', 'Qf6', 'Bd3', 'Ne7'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Bb5', 'Bd7'], ['c4', 'Nf6', 'g3', 'e5', 'Bg2', 'd6', 'Nc3', 'Nbd7', 'Nf3', 'Be7'], ['c4', 'e5', 'g3', 'f5', 'Bg2', 'Nf6', 'Nc3', 'c6', 'e3', 'Bb4'], ['c4', 'b6', 'Nc3', 'Bb7', 'e3', 'e6', 'Nf3', 'Bb4', 'g3', 'Qf6'], ['e4', 'e6', 'Qf3', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'd4', 'cxd4'], ['e4', 'e6', 'Nf3', 'd5', 'd3', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'Nc6'], ['c4', 'Nc6', 'Nc3', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['c4', 'e5', 'g3', 'Bc5', 'Bg2', 'Nc6', 'Nc3', 'd6', 'b3', 'a6'], ['e4', 'c5', 'c3', 'e5', 'd4', 'cxd4', 'cxd4', 'exd4', 'Qxd4', 'Nc6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'b3', 'Bc5', 'Bc4', 'd6', 'd3', 'Bg4'], ['d4', 'c5', 'd5', 'Nf6', 'c4', 'e5', 'dxe6', 'fxe6', 'Nf3', 'd5'], ['e4', 'e5', 'Nc3', 'Bc5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'O-O'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'Nf6', 'd3', 'Bf5', 'Nc3', 'exd3'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'b6', 'Bd3', 'Bc5'], ['e4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Nc3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'Nc6', 'd4', 'd5', 'e5', 'Bd7'], ['e4', 'c5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Bc4', 'e6'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'O-O'], ['e4', 'c5', 'Nf3', 'e6', 'Bc4', 'Nc6', 'Nc3', 'Nf6', 'd3', 'd5'], ['c4', 'Nf6', 'Nc3', 'c5', 'Nf3', 'e6', 'e4', 'd6', 'Be2', 'Nbd7'], ['c4', 'c6', 'd4', 'e6', 'Nf3', 'g6', 'g3', 'Bg7', 'e4', 'Ne7'], ['e4', 'e6', 'd4', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'Nf6', 'e5', 'Nd5', 'd4', 'cxd4'], ['c4', 'c5', 'Nc3', 'e6', 'e4', 'Nc6', 'Nf3', 'Nf6', 'e5', 'Ng4'], ['e4', 'c5', 'Nf3', 'e6', 'Be2', 'Nc6', 'O-O', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'e5', 'Qa5+'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'f4', 'Bc5', 'Nf3', 'exf4', 'Bc4', 'Bb6', 'd4', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'd5', 'Bd2', 'Bxc3'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'e3', 'c6', 'Nc3', 'Nbd7'], ['e4', 'c5', 'f4', 'e6', 'Bc4', 'Nc6', 'Nf3', 'Nge7', 'd3', 'd5'], ['e4', 'e5', 'Qh5', 'Nc6', 'Nf3', 'Nf6', 'Qh4', 'Be7', 'Qg3', 'Nh5'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Na5', 'Bd5', 'c6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Bg4', 'Be2', 'Nf6', 'O-O', 'Nc6'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'c6', 'd4', 'exd4', 'Qxd4', 'd5'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nc3', 'd6', 'Bc4', 'Bg4', 'O-O', 'Nf6'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e3', 'dxc4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Nf6', 'Nc3', 'Bb4'], ['d4', 'Nf6', 'c4', 'g6', 'g3', 'd5', 'Bg2', 'dxc4', 'Qa4+', 'Bd7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Bb4', 'e5', 'h6'], ['b3', 'e5', 'Bb2', 'd6', 'e3', 'g6', 'Qe2', 'Bg7', 'd4', 'Nd7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Bc4', 'Nf6', 'Nf3', 'g6'], ['d4', 'e6', 'e4', 'c5', 'd5', 'exd5', 'exd5', 'Nf6', 'c4', 'Qe7+'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'a6', 'a4', 'h6', 'e5', 'Bf5'], ['e4', 'e6', 'Nf3', 'b6', 'Bc4', 'Bb7', 'e5', 'd5', 'exd6', 'Bxd6'], ['e4', 'e6', 'Nf3', 'b6', 'Bb5', 'Bb7', 'Nc3', 'a6', 'Bd3', 'd6'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'c4', 'Bg7'], ['d4', 'Nf6', 'Bg5', 'c5', 'Bxf6', 'exf6', 'dxc5', 'Bxc5', 'Nf3', 'Qb6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Nf6', 'Nxf6+', 'Qxf6'], ['e4', 'c5', 'Nf3', 'e6', 'b3', 'd6', 'Bb2', 'Nd7', 'c3', 'Ngf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'Nf3', 'Nxe4', 'Be2', 'd5'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'a6', 'a3', 'Nc6', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'Qxf3', 'dxe5'], ['f4', 'd5', 'Nf3', 'c5', 'e3', 'Nc6', 'b3', 'Nf6', 'Bb2', 'e6'], ['e4', 'c5', 'c4', 'e5', 'd4', 'cxd4', 'Nf3', 'd6', 'Nbd2', 'Nc6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'a4', 'Qc7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'c5', 'Nf3', 'e6', 'Bc4', 'a6', 'a4', 'Nc6', 'c3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'O-O', 'c6'], ['d4', 'Nf6', 'Nc3', 'd5', 'Bf4', 'Bf5', 'e3', 'c6', 'Bd3', 'Bxd3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nd7', 'd3', 'Be7', 'Nc3', 'c6'], ['d4', 'Nf6', 'f3', 'd5', 'e4', 'dxe4', 'Nc3', 'exf3', 'Nxf3', 'e6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'd6'], ['d4', 'Nf6', 'c4', 'c5', 'dxc5', 'Qa5+', 'Nc3', 'Qxc5', 'e3', 'g6'], ['e4', 'e6', 'd4', 'g6', 'c4', 'Bg7', 'Nc3', 'a6', 'Be3', 'd6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'c4', 'Qc7'], ['e4', 'e6', 'd4', 'g6', 'c4', 'Bg7', 'Nc3', 'a6', 'Be3', 'd6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'd6', 'd3', 'Be6', 'Bxe6', 'fxe6'], ['e4', 'c5', 'f4', 'Nc6', 'Nf3', 'Qc7', 'e5', 'e6', 'c3', 'd6'], ['d4', 'Nf6', 'e3', 'd5', 'a3', 'c6', 'c4', 'Bf5', 'c5', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'Nc6', 'Bb5', 'Nge7', 'd4', 'cxd4'], ['e4', 'c5', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'cxd4', 'cxd4', 'Nc6'], ['e4', 'g6', 'd4', 'Bg7', 'c4', 'd6', 'Nc3', 'Nf6', 'Bd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qe7', 'Nc3', 'Nf6', 'O-O', 'Nd4'], ['e4', 'c5', 'c3', 'e6', 'd4', 'cxd4', 'cxd4', 'd5', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bxe6', 'fxe6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'd6', 'c3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e6', 'd4', 'c5', 'c4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'd6', 'Ng5', 'Qf6'], ['e4', 'e5', 'Nc3', 'Bc5', 'f4', 'Qh4+', 'g3', 'Qf6', 'Nf3', 'exf4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'h3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'a6', 'a4', 'd6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nc3', 'c6', 'd3', 'Qb6', 'Qf3', 'Nf6'], ['d4', 'd5', 'Bf4', 'Bf5', 'Nf3', 'e6', 'e3', 'Nf6', 'h3', 'Nh5'], ['d4', 'd5', 'Nc3', 'c6', 'Bf4', 'Nd7', 'e4', 'dxe4', 'Nxe4', 'Nb6'], ['e4', 'e6', 'd4', 'd6', 'f4', 'Nd7', 'Nf3', 'h6', 'e5', 'd5'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'Nc6', 'd3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qf6', 'O-O', 'Bc5', 'c3', 'a6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Na4', 'd6', 'Nxc5', 'dxc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'Bb5', 'a6', 'Bxc6', 'bxc6'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nf3', 'Nf6', 'e3', 'Bg4', 'Be2', 'e5'], ['e4', 'e5', 'Nf3', 'd5', 'Bb5+', 'Nc6', 'Nc3', 'a6', 'b3', 'axb5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'Nb4', 'Nxe5', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'd5', 'exd5', 'Nc6', 'dxc6'], ['e3', 'e5', 'Bc4', 'd5', 'Bd3', 'e4', 'Be2', 'Bb4', 'c3', 'Ba5'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Bf5', 'c3', 'e6', 'Nd2', 'Bd6'], ['d4', 'd6', 'Bf4', 'g6', 'e3', 'Bg7', 'Nc3', 'Nf6', 'e4', 'O-O'], ['e4', 'b6', 'Nc3', 'e6', 'f4', 'Bb7', 'd3', 'Nf6', 'Nf3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'd6', 'd3', 'Nf6'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'e6', 'Bg5', 'Nc6', 'Nf3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'd4', 'Be7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'c3', 'Qb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bc5', 'Bxc6', 'dxc6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nf6', 'Be2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'd4', 'exd4', 'Nxd4', 'Ne5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'Bd6', 'Nf3', 'Qe7', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Nc3', 'Ne7', 'd4', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'd4', 'Qf6'], ['d4', 'f5', 'Nc3', 'd6', 'e4', 'Nf6', 'Bd3', 'e6', 'Bg5', 'Be7'], ['g3', 'e5', 'Bg2', 'd5', 'd4', 'e4', 'f3', 'f5', 'fxe4', 'fxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd3', 'Nf6', 'O-O', 'Bc5'], ['d4', 'Nf6', 'c4', 'd5', 'cxd5', 'Nxd5', 'Nf3', 'Bf5', 'Qc2'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'Nc3', 'Bb4'], ['b3', 'e5', 'Bb2', 'Nc6', 'g3', 'd5', 'Bg2', 'Nf6', 'd4', 'e4'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'Bg4', 'Bg5', 'Nbd7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'Qe5+'], ['d4', 'd5', 'c4', 'e6', 'cxd5', 'exd5', 'Nc3', 'Bb4', 'Qa4+', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e3', 'e6', 'd4', 'd5', 'c4', 'Bb4+', 'Bd2', 'Bxd2+', 'Qxd2', 'dxc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'h6', 'Be3', 'Be7'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'a6', 'Bc4', 'h6', 'd3', 'Be6'], ['e4', 'e5', 'c3', 'Nc6', 'd4', 'exd4', 'cxd4', 'Nf6', 'e5', 'Ne4'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'h3', 'Nc6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Bf5', 'Nc3', 'Nd7', 'cxd5', 'cxd5'], ['e4', 'c6', 'f4', 'd5', 'e5', 'h6', 'Nf3', 'Bf5', 'Bd3', 'Bxd3'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'b6', 'c4', 'Bc5'], ['e4', 'e5', 'g3', 'Nc6', 'Bg2', 'Nf6', 'd3', 'Bc5', 'Nf3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'd4', 'cxd4', 'Nxd4', 'Nc6'], ['d4', 'd5', 'a3', 'Nf6', 'Bg5', 'Ne4', 'Nf3', 'Nxg5', 'Nxg5', 'h6'], ['e4', 'e5', 'Nf3', 'c6', 'Nxe5', 'Qe7', 'd4', 'f6', 'Nf3', 'Qxe4+'], ['e4', 'e5', 'Nf3', 'c6', 'Nxe5', 'Qe7', 'd4', 'f6', 'Nf3', 'Qxe4+'], ['e4', 'e5', 'c3', 'Nf6', 'd4', 'exd4', 'e5', 'Ne4', 'cxd4', 'Bb4+'], ['Nf3', 'Nf6', 'g3', 'd5', 'Bg2', 'c6', 'O-O', 'Bf5', 'd3', 'e6'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Bc4', 'e6'], ['d4', 'c5', 'c3', 'e6', 'a3', 'd5', 'e3', 'Nf6', 'Nd2', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'd4', 'cxd4', 'Nxd4'], ['e3', 'e5', 'Qh5', 'Nc6', 'Bc4', 'd5', 'Bb5', 'Bd6', 'd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bc5', 'Bxc6', 'dxc6'], ['e3', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'b3', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Qxd4', 'Bg4', 'Qa4+', 'Nc6'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'dxe4', 'Bc4', 'Qd4', 'Nxf7', 'Qxc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'Nc3', 'a6', 'Ba4', 'b5'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'dxe4', 'Nc3', 'Nc6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'bxc6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['c4', 'e5', 'Nc3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'Bc5', 'Nf3', 'O-O'], ['e4', 'e6', 'd4', 'Qf6', 'Nf3', 'd6', 'Bg5', 'Qg6', 'Bd3', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'O-O'], ['e4', 'Nc6', 'Nf3', 'd6', 'Bc4', 'e5', 'O-O', 'b5', 'Bd5', 'Bb7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'd5', 'Bxc6+', 'bxc6'], ['d4', 'd5', 'e3', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Nc6', 'c3', 'e5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Be2', 'Nf6', 'O-O', 'Be7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'd4', 'exd4', 'Nxd4', 'Bxd4'], ['e4', 'e6', 'd4', 'Qf6', 'Nf3', 'h6', 'Bc4', 'Ne7', 'Nc3', 'Nec6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'c5', 'dxc5', 'Nc6', 'Bg5', 'e5'], ['e4', 'e5', 'Qh5', 'Nc6', 'c3', 'g6', 'Qe2', 'Nf6', 'd3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nce7', 'c4', 'c6'], ['e4', 'd6', 'd4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'd5', 'e5', 'Ng8'], ['e3', 'e5', 'Qh5', 'd6', 'Bc4', 'g6', 'Qf3', 'Be6', 'Qxb7', 'c6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'Bd6', 'Nf3', 'c5', 'Nc3', 'c4'], ['e4', 'e5', 'Qh5', 'Bd6', 'Bc4', 'Qe7', 'Qg4', 'g6', 'd3', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nc6', 'e3', 'Nf6', 'Nc3', 'Bd6'], ['e4', 'e5', 'f4', 'f6', 'Nf3', 'c6', 'd4', 'd5', 'Bd3', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'Be7', 'O-O', 'a6'], ['Nh3', 'e5', 'e4', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'Nxf7', 'Kxf7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'd6', 'O-O', 'Bd7'], ['e4', 'c5', 'c3', 'd6', 'Nf3', 'Nc6', 'd4', 'b6', 'dxc5', 'bxc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bd7', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'f6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nc3', 'Bg7'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'e6', 'Nb5', 'Bd6', 'e3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'd3', 'Rb8'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Be7', 'Bc4', 'Nf6', 'd3', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'd3', 'Nc6'], ['b3', 'e5', 'g3', 'd5', 'Ba3', 'Bxa3', 'Nxa3', 'Bf5', 'Bh3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Bc5', 'd4', 'exd4', 'Nxd4', 'Nc6', 'c3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'O-O', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c4', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bxc3'], ['d4', 'd5', 'Nf3', 'Bg4', 'Bf4', 'Bxf3', 'exf3', 'Nc6', 'Bb5', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Nf6'], ['d4', 'd5', 'Nf3', 'Bg4', 'Bf4', 'Nc6', 'e3', 'g6', 'Bb5', 'a6'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'exd4', 'Qxd4', 'b6', 'Qxf6', 'Nxf6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e6', 'Bxc4', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Ng5', 'Qxg5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'O-O', 'Ba6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'Qf6', 'O-O', 'd6', 'd3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bc5', 'Ng5', 'Ne5'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'g6', 'Bb5', 'Bg7', 'Nf3', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'O-O', 'Nf6', 'd3', 'Be7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Qe7', 'd3', 'Be6', 'Bxe6', 'Qxe6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'Nd5', 'Nf6', 'Nxf6+', 'Qxf6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bd6', 'g3', 'Ne7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Bd7', 'c4', 'cxd4'], ['d4', 'd5', 'Bf4', 'Nc6', 'h3', 'Bf5', 'Nf3', 'e6', 'e3', 'Bd6'], ['e4', 'd6', 'Nf3', 'g6', 'd4', 'Bg7', 'e5', 'dxe5', 'dxe5', 'Qxd1+'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Nf6', 'h3', 'Bd7', 'Nf3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'b3', 'Bd6'], ['g3', 'e5', 'Bg2', 'd5', 'c3', 'e4', 'd3', 'f5', 'f3', 'Nf6'], ['d4', 'd5', 'Nf3', 'Bg4', 'e3', 'Nc6', 'h3', 'Bh5', 'Be2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'b6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'Nd7', 'Nf3', 'c5', 'c3', 'Ne7'], ['Nf3', 'd5', 'd3', 'Nc6', 'c3', 'e5', 'Qa4', 'e4', 'dxe4', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd5', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'd3', 'Ng4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'd4'], ['e4', 'e5', 'Bc4', 'b6', 'd3', 'Nf6', 'Nf3', 'd6', 'h3', 'Bb7'], ['e4', 'c5', 'Nf3', 'Nc6', 'b3', 'e5', 'Bb2', 'd6', 'c3', 'Bg4'], ['e4', 'e6', 'Nf3', 'Be7', 'd4', 'd6', 'Bd3', 'e5', 'd5', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'c6', 'd4', 'exd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'a6', 'a4', 'Nf6', 'b3', 'd6'], ['e4', 'Nc6', 'd4', 'd5', 'e5', 'Bf5', 'Bf4', 'e6', 'Nc3', 'Nb4'], ['Nf3', 'Nc6', 'e4', 'e5', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Nc3', 'O-O'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'c6', 'axb5', 'cxb5'], ['e4', 'e5', 'Nf3', 'f5', 'exf5', 'e4', 'Ng5', 'Qxg5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'b3', 'Bg4', 'h3', 'Bh5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'Qe7', 'Nf3', 'd5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'b6', 'Bg5', 'Bb7', 'Bxf6', 'Qxf6'], ['c4', 'g6', 'Nc3', 'Bg7', 'd4', 'Nf6', 'e3', 'b6', 'Nf3', 'Bb7'], ['c4', 'd5', 'e3', 'e5', 'a3', 'Nf6', 'Nf3', 'e4', 'Nd4', 'g6'], ['c4', 'e5', 'd3', 'Nf6', 'Nc3', 'Bb4', 'Bd2', 'd5', 'a3', 'Bxc3'], ['c4', 'e5', 'Nc3', 'Nf6', 'd3', 'Bb4', 'Bd2', 'Nc6', 'a3', 'Bxc3'], ['c4', 'e5', 'd3', 'Qf6', 'Nf3', 'Bc5'], ['c4', 'd6', 'Nc3', 'g6', 'd4', 'Bg7', 'e3', 'Nf6', 'b3', 'O-O'], ['c4', 'e5', 'd3', 'd5', 'b3', 'dxc4', 'bxc4', 'Bb4+', 'Bd2', 'Qe7'], ['c4', 'e5', 'e4', 'Nc6', 'Nf3', 'd6', 'Qa4', 'Nf6', 'Nc3', 'Ng4'], ['c4', 'g6', 'Nc3', 'd6', 'd3', 'Bg7', 'd4', 'Nf6', 'd5', 'O-O'], ['c4', 'b6', 'd4', 'Ba6', 'b3', 'Nf6', 'Nc3', 'e6', 'Bf4', 'Bb4'], ['c4', 'Nc6', 'Nf3', 'e5', 'd3', 'f5', 'Qc2', 'd5', 'Bg5', 'Be7'], ['c4', 'e6', 'd4', 'b6', 'Qa4', 'Bb7', 'Nc3', 'c6', 'Ne4', 'd6'], ['c4', 'd5', 'd3', 'dxc4', 'Qa4+', 'Nc6', 'Qxc4', 'e6', 'Nf3', 'Nf6'], ['c4', 'Nf6', 'd4', 'e6', 'Bg5', 'c6', 'c5', 'b6', 'Nc3', 'bxc5'], ['d4', 'd5', 'c3', 'e6', 'Bf4', 'Bd6', 'e3', 'Nc6', 'Bb5', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'O-O', 'Be6', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'Bb5', 'Bd7', 'dxe5', 'Nxe5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'Bb5', 'Bg4', 'd5', 'a6'], ['d4', 'd5', 'Nf3', 'e6', 'Ne5', 'f6', 'Nf3', 'Bd6', 'e3', 'e5'], ['e4', 'e5', 'd3', 'Nc6', 'Be3', 'f6', 'Be2', 'g6', 'c3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd6', 'c3', 'Bg4'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nf3', 'd6', 'O-O', 'Bg4'], ['d4', 'd5', 'h3', 'Nc6', 'g4', 'Nxd4', 'Qxd4', 'c6', 'Qa4', 'Nf6'], ['d3', 'e6', 'g3', 'h6', 'Nf3', 'Nc6', 'Bg2', 'Nb4', 'Bd2', 'Nd5'], ['d4', 'Nf6', 'c3', 'g6', 'Nf3', 'Bg7', 'Bf4', 'O-O', 'h4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'a6', 'Ba4', 'b5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Be2', 'Nf6', 'd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Ke7', 'Nxf7', 'Qe8'], ['e4', 'e5', 'Bc4', 'Qh4', 'Qf3', 'Nh6', 'd3', 'Bc5', 'Bxh6', 'Bxf2+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'O-O', 'a6', 'c3', 'Be6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Qe2', 'Qxe2+', 'Bxe2', 'Nf6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd5', 'Nf6', 'Qc4', 'Ne5'], ['e4', 'e5', 'Nc3', 'd6', 'Nf3', 'Nc6', 'd4', 'f6', 'd5', 'Nce7'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qc4', 'e5', 'Nf3', 'd6'], ['d4', 'Nf6', 'Bg5', 'd5', 'Bxf6', 'exf6', 'Nc3', 'Bb4', 'Qd3', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bb5', 'Nf6', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'd5', 'Qh5', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'b3', 'Qe5+', 'Be2', 'Qxa1', 'Nc3', 'e5'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nb4', 'Bb5', 'Qf6', 'Bd2', 'Bc5'], ['e4', 'd5', 'd3', 'dxe4', 'f3', 'exd3', 'Bxd3', 'e5', 'g3', 'Nc6'], ['d4', 'e6', 'e4', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'd6', 'Bb5', 'Bd7'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'Nh6', 'Nxe4', 'Bf5', 'Nbc3', 'e6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Bc4', 'Qb4', 'd3', 'Be6'], ['e4', 'e6', 'Nc3', 'Bc5', 'Nf3', 'Nf6', 'Bc4', 'O-O', 'd4', 'Bb4'], ['d4', 'd5', 'e3', 'Nc6', 'Bd2', 'Bf5', 'c4', 'e6', 'c5', 'Qf6'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Bg4', 'Nc3', 'e4', 'Qe2', 'Bxf3'], ['e3', 'e5', 'b3', 'd5', 'Bb2', 'Nc6', 'g3', 'Nf6', 'Bg2', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'd3', 'Bxc3+'], ['d4', 'd5', 'Bg5', 'f6', 'Bh4', 'g5', 'Bg3', 'Nh6', 'e3', 'Nf5'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'd6', 'Bc4', 'Bd7', 'O-O', 'h6'], ['e4', 'c5', 'Nf3', 'Nf6', 'e5', 'Nd5', 'c4'], ['d4', 'c5', 'dxc5', 'e5', 'Be3', 'Nc6', 'a3', 'd5', 'Nf3', 'e4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'd6', 'd3', 'Be6'], ['d4', 'c5', 'Nf3', 'c4', 'e4', 'Nc6', 'Bxc4', 'Qa5+', 'Bd2', 'Nb4'], ['e4', 'c5', 'd4', 'cxd4', 'Nf3', 'Nc6', 'Ne5', 'Nxe5', 'Qxd4', 'Qc7'], ['e4', 'e5', 'Bc4', 'Qh4', 'Qf3', 'Nf6', 'g3', 'Qh6', 'd4', 'Qxc1+'], ['g4', 'e5', 'Bg2', 'Qg5', 'h3', 'Nf6', 'Nf3', 'Qh6', 'Nxe5', 'Nxg4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e5', 'Nd5', 'Nf6', 'Nxf6+', 'Qxf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qf3', 'd5', 'Qxf7#'], ['e4', 'c5', 'Nc3', 'Nc6', 'Qf3', 'e5', 'Bc4', 'Nd4', 'Qxf7#'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'e6', 'dxe6', 'Bxe6', 'Nf3', 'Bd5'], ['e4', 'e6', 'Nc3', 'Bc5', 'Nf3', 'Nc6', 'd4', 'Bb6', 'd5', 'Nb4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e5', 'c3', 'Nf6', 'Bxf7+', 'Kxf7'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'c6', 'd4', 'd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e5', 'O-O', 'Nf6', 'c3', 'Qa5'], ['e4', 'c5', 'Nf3', 'd6', 'c4', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Ng5', 'h6', 'Nxf7', 'Kxf7'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'd6', 'd4', 'Bg4', 'd5', 'Bxf3'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'Nc6', 'Be2', 'd5', 'e5', 'b6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Qh5', 'g6', 'Qxc5', 'd6', 'Bxf7+', 'Kxf7'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qc6', 'Nf3', 'Bg4', 'Ne5', 'Qe6'], ['e4', 'g6', 'Nf3', 'c5', 'e5', 'Bg7', 'd4', 'cxd4', 'Qxd4', 'Nc6'], ['e4', 'c5', 'Nf3', 'e6', 'e5', 'Nc6', 'Nc3', 'g6', 'Bb5', 'Bg7'], ['e4', 'c5', 'Nf3', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Nxd5', 'Qxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nge7', 'O-O', 'O-O'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'b5', 'b3', 'Bf5', 'Bb2', 'bxc4'], ['e4', 'e5', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'd6', 'Nge2', 'Nge7'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c4', 'Nf6', 'Nc3', 'e6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'Nc3', 'Nf6', 'd3', 'O-O'], ['e4', 'e6', 'Nf3', 'd6', 'Nc3', 'c6', 'd4', 'Nd7', 'a3', 'Ne7'], ['e4', 'c6', 'Nf3', 'd5', 'Nc3', 'd4', 'Ne2', 'c5', 'c3', 'dxc3'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'c3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd4', 'exd4', 'O-O', 'Nxe4'], ['d4', 'd5', 'c4', 'e5', 'Nf3', 'Nc6', 'e3', 'exd4', 'exd4', 'Nf6'], ['e4', 'e6', 'd3', 'd5', 'Nd2', 'c5', 'Ngf3', 'Nc6', 'g3', 'Qb6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'Ngf3', 'c5'], ['e4', 'c5', 'Bc4', 'Nc6', 'd3', 'e6', 'Nf3', 'd5', 'exd5', 'exd5'], ['e4', 'c6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Bg4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Bb5', 'Qb6'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bc4', 'Nf6', 'd4', 'exd4', 'O-O', 'd6'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb3', 'Nf6', 'd4', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'd6', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd4', 'exd4'], ['d4', 'd5', 'Bg5', 'Nc6', 'c3', 'h6', 'Bh4', 'Bf5', 'e3', 'Qd7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'c6', 'Bd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd4', 'Bxd4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nc3', 'c6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Bb5', 'Qb6'], ['d4', 'd5', 'Bg5', 'Nc6', 'e3', 'h6', 'Bh4', 'Bf5', 'c3', 'Qd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4', 'Qxd4', 'a6'], ['c4', 'e6', 'b3', 'd5', 'Bb2', 'c5', 'cxd5', 'exd5', 'e3', 'Nc6'], ['b3', 'e6', 'Bb2', 'd5', 'e3', 'c5', 'c4', 'Nc6', 'Ne2', 'Qb6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nc3', 'Bg7'], ['e4', 'e6', 'c4', 'd5', 'd4', 'c5', 'dxc5', 'Bxc5', 'exd5', 'exd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'd6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'b4', 'Nc6', 'bxc5', 'Bxc5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd4', 'Bxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxd4', 'exd4', 'Qh5', 'Qf6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'Bd3', 'c5'], ['d4', 'e5', 'dxe5', 'Qe7', 'e3', 'Qxe5', 'Nf3', 'Qa5+', 'Qd2', 'Bb4'], ['d4', 'e5', 'c3', 'Nf6', 'dxe5', 'Ng4', 'Nf3', 'd6', 'h3', 'Nh6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'd3', 'Bc5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'e6', 'd4', 'd5', 'Bd3', 'c5', 'c3', 'Nc6', 'Be3', 'Qb6'], ['e4', 'c6', 'd4', 'd6', 'Nc3', 'g6', 'Bc4', 'Bg7', 'Bf4', 'Qc7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'c6', 'd4', 'd6', 'Nc3', 'g6', 'Bc4', 'Bg7', 'Nf3', 'Qc7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd4', 'Bxd4'], ['e4', 'e6', 'd4', 'd5', 'Bd3', 'c5', 'c3', 'Nc6', 'Nf3', 'Bd7'], ['f4', 'e6', 'Nf3', 'd5', 'e3', 'c5', 'c3', 'Nc6', 'a3', 'Qb6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'd6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'c5', 'e3', 'Nc6', 'a3', 'Qb6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bg4', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'd4', 'Nf6', 'dxe5', 'Nxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Qe2', 'Bc5', 'c3', 'O-O'], ['e4', 'c6', 'Nf3', 'e5', 'Bc4', 'Qe7', 'd3', 'Nh6', 'g3', 'Ng4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Nxe5', 'Nxe5', 'd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'a3', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'd6', 'g3', 'd5', 'Nxe5', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5'], ['d4', 'Nc6', 'Nf3', 'e6', 'Nc3', 'd5', 'Bf4', 'Nf6', 'e3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd6', 'd4', 'exd4', 'Nxd4', 'Bg4'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Bf5', 'f3', 'exf3', 'Qxf3', 'Bc8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'a3', 'Bxc3', 'dxc3', 'd6'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'f3', 'exf3', 'Qxf3', 'Bg4'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Bf5', 'f3', 'exf3', 'Qxf3', 'g6'], ['e4', 'c6', 'Nf3', 'd5', 'd3', 'Nf6', 'Bf4', 'Bg4', 'h3', 'Bxf3'], ['d4', 'Nf6', 'Nc3', 'd5', 'e3', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'Qf6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f6', 'dxe5', 'fxe5', 'Nc3', 'Be6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Be6', 'Nxe6', 'fxe6'], ['d4', 'Nf6', 'Bg5', 'Ne4', 'Bf4', 'c5', 'f3', 'Nf6', 'Bg5', 'e6'], ['d4', 'Nf6', 'Bg5', 'e6', 'e4', 'Be7', 'Bxf6', 'Bxf6', 'e5', 'Bg5'], ['e4', 'c5', 'c3', 'Nc6', 'Nf3', 'e5', 'Bb5', 'Nge7', 'O-O', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bb4', 'O-O', 'Nf6', 'd4', 'Nxe4'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'g3', 'd5', 'cxd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd5', 'Bxd5', 'Na5', 'Nxe5', 'c6'], ['e4', 'e5', 'Bc4', 'd6', 'Nf3', 'Bg4', 'Nc3', 'c6', 'Nxe5', 'Bxd1'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'Bd2', 'Bxc3', 'Bxc3', 'dxe4'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'Bc5', 'd3', 'Nc6', 'Nf3', 'd6'], ['Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'Nf6', 'O-O', 'O-O', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd4', 'exd4', 'Ng5', 'Nh6'], ['Nf3', 'd5', 'g3', 'Nf6', 'Bg2', 'c6', 'O-O', 'Bg4', 'd3', 'e6'], ['Nf3', 'd6', 'g3', 'e5', 'd3', 'Nc6', 'Bg2', 'Nf6', 'Nbd2', 'd5'], ['d4', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'c3', 'O-O', 'Nd2', 'd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd6', 'e4', 'Nbd7', 'Nge2', 'e5'], ['Nf3', 'd5', 'g3', 'Nf6', 'Bg2', 'Nc6', 'O-O', 'Bf5', 'd3', 'e5'], ['Nf3', 'b6', 'd3', 'Bb7', 'e4', 'f6', 'Nbd2', 'e5', 'g3', 'Nc6'], ['c4', 'Nf6', 'Nc3', 'g6', 'd4', 'Bg7', 'e3', 'O-O', 'g3', 'd6'], ['Nf3', 'd6', 'g3', 'e5', 'd3', 'Nc6', 'Nbd2', 'Bg4', 'Bg2', 'Nf6'], ['e4', 'e5', 'Bc4', 'c6', 'Qf3', 'Nf6', 'd3', 'h6', 'Nc3', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nxc6', 'bxc6'], ['Nf3', 'c5', 'e4', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'g6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nf6', 'd3', 'Be7', 'd4', 'cxd4'], ['g3', 'c5', 'Nf3', 'd5', 'Bg2', 'Nf6', 'd3', 'Bg4', 'O-O', 'Bxf3'], ['e4', 'c5', 'e5', 'e6', 'Nf3', 'Nc6', 'd3', 'h6', 'g3', 'd5'], ['g3', 'd5', 'b3', 'Bf5', 'd3', 'Nf6', 'Nf3', 'e6', 'Nd4', 'c5'], ['e4', 'e5', 'd3', 'd6', 'g3', 'g6', 'Bg2', 'f5', 'Nf3', 'fxe4'], ['d4', 'Nf6', 'e4', 'd6', 'e5', 'dxe5', 'dxe5', 'Qxd1+', 'Kxd1', 'Ng4'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Bg5', 'd6', 'Nf3', 'O-O'], ['c4', 'e5', 'Nc3', 'Bb4', 'Qc2', 'Bxc3', 'Qxc3', 'Nc6', 'e4', 'f5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'a6', 'Bxc6', 'Nxc6'], ['e4', 'c5', 'd4', 'e6', 'd5', 'Nf6', 'dxe6', 'Qe7', 'exf7+', 'Qxf7'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'exd5', 'Bg5', 'c6'], ['h4', 'd5', 'Rh2', 'e5', 'g3', 'Nf6', 'Nh3', 'h6', 'f3', 'Bc5'], ['e4', 'e5', 'd4', 'f6', 'dxe5', 'fxe5', 'Bc4', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nc3', 'Nf6', 'Bc4', 'b6', 'Nf3', 'h6', 'Nxe5', 'd5'], ['d4', 'd5', 'c4', 'e6', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nf6', 'Nf3', 'Bb4+', 'Bd2', 'Bxd2+'], ['d4', 'e6', 'c4', 'd6', 'Nc3', 'Nf6', 'Bf4'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bg4', 'Bf4', 'e6'], ['e4', 'c5', 'Qf3', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Bg5', 'g6'], ['d4', 'd6', 'c4', 'e6', 'Nc3', 'Nf6', 'e4', 'Na6', 'e5', 'Nd7'], ['e4', 'e5', 'Qh5', 'Qf6', 'Qf5', 'Qxf5', 'exf5', 'Nf6', 'Bd3', 'e4'], ['d4', 'd5', 'Nf3', 'c5', 'Nbd2', 'e6', 'e3', 'Nc6', 'Bd3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Bc5', 'Nxf7', 'Bxf2+'], ['d4', 'd5', 'Nf3', 'Nf6', 'Nbd2', 'e6', 'e3', 'Bb4', 'Bd3', 'O-O'], ['d4', 'd5', 'Nf3', 'Nc6', 'Nbd2', 'e6', 'e3', 'Nf6', 'Bd3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'Nc3', 'Nf6'], ['d4', 'd5', 'Nf3', 'e6', 'Nbd2', 'f5', 'e3', 'Nf6', 'Bd3', 'Bd6'], ['e4', 'd6', 'd4', 'g6', 'Nf3', 'Bg7', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Bc5', 'd3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c5', 'Nf3', 'a6', 'Bd3', 'Nc6'], ['e3', 'e5', 'Nc3', 'd5', 'Qh5', 'Nc6', 'Bb5', 'Nf6', 'Qxe5+', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'Bb4', 'Bd2', 'O-O'], ['d4', 'd5', 'g3', 'Nf6', 'Bg2', 'Bf5', 'g4', 'Bxg4', 'h3', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd3', 'Bc5', 'Nc3', 'Nf6'], ['Nf3', 'c5', 'g3', 'Nc6', 'Bg2', 'e6', 'd3', 'd5', 'O-O', 'Nd4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'exd4'], ['e4', 'e5', 'Nf3', 'c6', 'Nxe5', 'Qe7', 'd4', 'c5', 'c3', 'cxd4'], ['d4', 'd5', 'e3', 'c5', 'dxc5', 'e5', 'b4', 'a5', 'c3', 'axb4'], ['e4', 'e6', 'd4', 'Nc6', 'Nf3', 'd5', 'e5', 'Nge7', 'Nc3', 'Nf5'], ['Nf3', 'Nc6', 'e3', 'd5', 'c4', 'd4', 'e4', 'e5', 'd3', 'Bg4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'g6', 'd4', 'Qb6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'g6', 'Nf3', 'Bg7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'c5', 'Nf3', 'Nc6'], ['e3', 'e5', 'b3', 'd5', 'Bb2', 'Nc6', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6'], ['e4', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Nxd5', 'Qxd5', 'd4', 'Nc6'], ['d4', 'd5', 'g3', 'g6', 'b3', 'Bg7', 'Bb2', 'Nf6', 'Bg2', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'd3', 'Be7'], ['d3', 'd5', 'h4', 'e5', 'h5', 'Nf6', 'Bg5', 'Be7', 'Na3', 'Nc6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'Bb4', 'e3', 'Ne4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e6', 'd4', 'b6', 'Nc3', 'Bb7', 'Bd3', 'h6', 'Nf3', 'd6'], ['e4', 'c5', 'Qf3', 'd6', 'Bc4', 'Nf6', 'Nh3', 'Nxe4', 'Qxf7+', 'Kd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Bc4', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'h3', 'Bc5', 'c3', 'd6', 'a3', 'Be6'], ['d4', 'd5', 'c3', 'c5', 'e3', 'Nc6', 'dxc5', 'e5', 'Qa4', 'Bd7'], ['e4', 'c5', 'Nf3', 'a6', 'd4', 'e6', 'Nc3', 'b5', 'dxc5', 'Bxc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Nxe4', 'Nxe4', 'd5'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'b6'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'b5', 'Nc3', 'b4', 'Nd5', 'c6'], ['d4', 'e6', 'c4', 'Qf6', 'Nc3', 'Bb4', 'Bd2', 'Bxc3', 'Bxc3', 'Nh6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Nh5', 'Be2', 'c5'], ['e4', 'e5', 'b4', 'Bxb4', 'c3', 'Bf8', 'Nf3', 'Nc6', 'g4', 'd6'], ['e4', 'e6', 'f3', 'Nf6', 'e5', 'Ne4', 'fxe4', 'Qh4+', 'g3', 'Qxe4+'], ['e4', 'a6', 'd4', 'b5', 'f4', 'Bb7', 'Bd3', 'e6', 'Ne2', 'c5'], ['e4', 'Nf6', 'Nf3', 'Nxe4', 'Be2', 'd5', 'O-O', 'c5', 'd4', 'cxd4'], ['a3', 'c6', 'b4', 'b5', 'Bb2', 'a5', 'e3', 'axb4', 'axb4', 'Rxa1'], ['e4', 'e5', 'Bc4', 'd6', 'Nc3', 'Be6', 'Nd5', 'c6', 'Ne3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd3', 'Nf6', 'Bg5', 'e6', 'Nc3', 'Be7'], ['e4', 'e5', 'Nf3', 'f5', 'exf5', 'Nf6', 'Nxe5', 'Bc5', 'd4', 'Bb6'], ['e4', 'e5', 'Nf3', 'Qf6', 'd3', 'h6', 'Be2', 'Ne7', 'Nc3', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'd3', 'Bxc3+', 'bxc3', 'd5'], ['e4', 'e5', 'Qh5', 'd6', 'Bc4', 'g6', 'Qf3', 'Be6', 'Bxe6', 'fxe6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'd6', 'd4', 'exd4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'c6', 'c4', 'd5', 'e3', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Nc6', 'Ne5', 'Bd7'], ['d4', 'd5', 'Bf4', 'Nf6', 'Nf3', 'e6', 'e3', 'Bd6', 'Bd3', 'Bxf4'], ['d4', 'Nf6', 'Bf4', 'd5', 'Nf3', 'Bf5', 'e3', 'e6', 'Bd3', 'Ne4'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'Nc6', 'e3', 'Bd6', 'Bxd6', 'Qd7'], ['d4', 'd6', 'c4', 'Bg4', 'h3', 'Bxe2'], ['d4', 'f5', 'Bf4', 'Nf6', 'Nf3', 'e6', 'e3', 'c6', 'Bd3', 'Qa5+'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nf3', 'f6', 'h4', 'e5', 'dxe5', 'Bg4'], ['e4', 'Nc6', 'Nf3', 'd6', 'd4', 'd5', 'e5', 'Bf5', 'c3', 'e6'], ['d4', 'd5', 'Bf4', 'c6', 'Nf3', 'f6', 'e3', 'g5', 'Bg3', 'Nh6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nc3', 'Nc6', 'd3', 'Nd4', 'Nf3', 'd6'], ['d4', 'd5', 'Bf4', 'Bf5', 'Nf3', 'Nf6', 'e3', 'a6', 'Bd3', 'Ne4'], ['c4', 'e5', 'Nc3', 'Bb4', 'Nf3', 'Bxc3', 'bxc3', 'e4', 'Nd4', 'Nc6'], ['d4', 'd5', 'Bf4', 'Qd7', 'Nf3', 'Nf6', 'e3', 'e6', 'Bd3', 'Bd6'], ['d4', 'd5', 'Bf4', 'Nf6', 'Nf3', 'e6', 'e3', 'Be7', 'Bd3', 'Ne4'], ['d4', 'd5', 'c4', 'Nf6', 'Bg5', 'e6', 'a3', 'Be7', 'Bxf6', 'Bxf6'], ['e4', 'e5', 'd4', 'Qh4', 'Nc3', 'exd4', 'Qxd4', 'Nc6', 'Qd3', 'Bc5'], ['e4', 'e5', 'd3', 'd6', 'Nf3', 'f6', 'd4', 'c6', 'd5', 'cxd5'], ['e4', 'e5', 'Bc4', 'Bb4', 'Qh5', 'g6', 'Qd1', 'Nf6', 'c3', 'Bc5'], ['d4', 'd5', 'Nc3', 'e6', 'e4', 'c6', 'exd5', 'cxd5', 'Bb5+', 'Bd7'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'Nf6', 'Bd3', 'd6', 'cxd4', 'Nc6'], ['e4', 'e5', 'Qf3', 'Nf6', 'Qf5', 'Nc6', 'Qf3', 'Nd4', 'Qd3', 'Bb4'], ['e4', 'c5', 'Qf3', 'd6', 'Bc4', 'e6', 'Qh5', 'Nf6', 'Qg5', 'h6'], ['d4', 'd5', 'Nc3', 'Nc6', 'e4', 'dxe4', 'Nxe4', 'Nxd4', 'c3', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bd3', 'Nxe4', 'Bxe4', 'Bd6', 'O-O', 'O-O'], ['c4', 'e5', 'b4', 'Nc6', 'a3', 'Nf6', 'f4', 'exf4', 'e3', 'fxe3'], ['e4', 'e5', 'Nc3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'Bb4', 'Nd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'f5', 'Nxe5', 'Qf6', 'd4', 'd6', 'Nd3', 'fxe4'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'Be2', 'Bd7', 'Qc2', 'Nc6'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'd4', 'd6', 'f4', 'dxe5'], ['e4', 'c5', 'c3', 'g6', 'd4', 'cxd4', 'cxd4', 'Bg7', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'Qe2', 'Bc5', 'd4', 'exd4'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'Nbd7', 'Bc4', 'e5', 'd5', 'c6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bxe6', 'fxe6', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bb4', 'O-O', 'O-O'], ['e4', 'e6', 'Nf3', 'Nf6', 'Bd3', 'c5', 'Nc3', 'a6', 'O-O', 'Nc6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bc4', 'Bxc3'], ['e4', 'c5', 'Bc4', 'b6', 'Nf3', 'e6', 'Ng5', 'a6', 'Qf3', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Bb4+', 'c3', 'Bc5', 'Ng5', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nc6', 'Nf3', 'Bf5', 'Bf4', 'Qd7'], ['e4', 'e5', 'Nc3', 'd6', 'Nf3', 'h6', 'Bc4', 'a6', 'O-O', 'Nc6'], ['d4', 'd5', 'Nc3', 'Nc6', 'e3', 'Nf6', 'g3', 'Bf5', 'Bg2', 'Nb4'], ['e4', 'c6', 'Nc3', 'e6', 'Nf3', 'Bb4', 'a3', 'Bxc3', 'dxc3', 'd5'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nc6', 'Nf3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bb4', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Ng5', 'Qxg5', 'd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Ng5', 'O-O'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Bc5', 'Nxe5', 'O-O', 'Bd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'O-O', 'O-O'], ['e3', 'e5', 'h4', 'Nf6', 'Nf3', 'Nc6', 'b3', 'Bc5', 'Bb2', 'O-O'], ['e4', 'e5', 'Nf3', 'd5', 'd4', 'exd4', 'Nxd4', 'dxe4', 'Nc3', 'Bc5'], ['e4', 'c5', 'Nc3', 'a6', 'Bc4', 'e6', 'd4', 'cxd4', 'Qxd4', 'Nc6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Qh4', 'Qf3', 'Nd4'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'a6', 'Bc4', 'h6', 'O-O', 'b5'], ['g3', 'e5', 'Bg2', 'Nf6', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qa4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Ng5', 'Qxg5', 'd4', 'Bxd4'], ['d4', 'd5', 'Nc3', 'Nf6', 'h3', 'Nc6', 'Nf3', 'Bf5', 'Bf4', 'Qd7'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'g6', 'Bc4', 'Bg7', 'Ng5', 'Qxg5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd7', 'Bb5', 'c6', 'Bc4', 'b5'], ['e4', 'e5', 'd3', 'Nf6', 'Nf3', 'd5', 'Nxe5', 'dxe4', 'Bf4', 'exd3'], ['e4', 'e6', 'Nf3', 'd6', 'Nc3', 'Nf6', 'd4', 'g6', 'Bg5', 'Bg7'], ['g3', 'e5', 'Bg2', 'd5', 'h3', 'Nc6', 'b3', 'Nf6', 'Bb2', 'Bf5'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'f3', 'exf3', 'Nxf3', 'Nc6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'Nc3', 'a6', 'O-O', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Nxe4', 'Nxe4', 'd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nxc6', 'bxc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'c6', 'a3', 'Bf5'], ['d4', 'd5', 'Nf3', 'Nc6', 'g3', 'Bf5', 'Bg2', 'Nb4', 'a3', 'Nxc2+'], ['e4', 'e5', 'Nc3', 'Nf6', 'Bc4', 'd6', 'd3', 'Nc6', 'h3', 'a6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'Nc6', 'd5', 'exd5', 'exd5', 'Nb4'], ['g3', 'd5', 'Bg2', 'e5', 'c4', 'c6', 'd4', 'e4', 'Nc3', 'Nf6'], ['d4', 'Nf6', 'c4', 'c5', 'e3', 'd5', 'Nf3', 'e6', 'Nc3', 'dxc4'], ['e4', 'e5', 'Bc4', 'd6', 'd4', 'exd4', 'c3', 'Nf6', 'Nf3', 'Be7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'a6'], ['e4', 'c5', 'Nc3', 'a6', 'Nf3', 'b5', 'd4', 'cxd4', 'Nxd4', 'Bb7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'd6'], ['e4', 'e6', 'f4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'c5', 'c4', 'e5', 'Nc3', 'g5', 'd3', 'h5', 'Nf3', 'f6'], ['d4', 'e6', 'e3', 'Nf6', 'f4', 'b6', 'g3', 'Bb7', 'Nf3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'h6', 'd3', 'Nge7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'O-O', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'd6', 'Nf3', 'g6', 'Nc3', 'a6', 'd4', 'Bd7', 'Be3', 'Bg7'], ['e4', 'e5', 'Bc4', 'Nc6', 'c3', 'Bc5', 'Qf3', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Nxe5', 'Nxe5', 'd4', 'Bd6'], ['e4', 'd6', 'Nf3', 'b6', 'Nc3', 'Bb7', 'Bc4', 'c6', 'd4', 'Qc8'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qf3', 'Nc6', 'Bc4', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'Nxe5', 'Bb7'], ['e4', 'e5', 'Bc4', 'Na6', 'Qf3', 'b6', 'Qxf7#'], ['e4', 'e5', 'Bc4', 'Na6', 'Qf3', 'b6', 'Qxf7#'], ['f4', 'e6', 'g4', 'Qh4#'], ['e4', 'c5', 'Bc4', 'e6', 'Ke2', 'Nc6', 'Kf3', 'Nf6', 'Kf4', 'Bd6+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bb4+', 'Nc3', 'Nf6', 'dxe5', 'Nh5'], ['e4', 'e5', 'Bc4', 'd6', 'Qf3', 'Nf6', 'Nh3', 'h6', 'Nf4', 'exf4'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'd5', 'g3', 'dxe4', 'Nfd2', 'Bb4'], ['c4', 'f5', 'Nf3', 'g6', 'g3', 'Bg7', 'Nc3', 'Nf6', 'Bg2', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'c5', 'Qh5', 'd6', 'Bc4', 'Be6', 'Nh3', 'g6', 'Qf3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'd6', 'Bd3', 'Bg4', 'd5', 'h6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Qb6', 'Be3', 'Qxb2'], ['d4', 'd5', 'g3', 'e6', 'Nf3', 'c6', 'Bg2', 'Bd6', 'O-O', 'Nf6'], ['e4', 'c5', 'Qh5', 'd6', 'e5', 'dxe5', 'Qxe5', 'e6', 'f4', 'Nf6'], ['d4', 'g6', 'Nf3', 'Bg7', 'g3', 'e6', 'Bg2', 'Ne7', 'O-O', 'c6'], ['e4', 'c5', 'Nc3', 'd6', 'Bc4', 'Nf6', 'Nf3', 'g6', 'Ng5', 'Be6'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'a4', 'g6', 'a5', 'Nxc4'], ['d4', 'e5', 'dxe5', 'Qe7', 'Nf3', 'd5', 'g3', 'Bg4', 'Bg2', 'Bxf3'], ['d4', 'd5', 'Nf3', 'f6', 'g3', 'g5', 'Bg2', 'h6', 'O-O', 'Bg4'], ['d4', 'Nf6', 'Nc3', 'e6', 'Bf4', 'd5', 'Nb5', 'Bd6', 'Nxd6+', 'cxd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'd5', 'g3', 'd4', 'Bg2', 'Be6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nf6', 'Nc3', 'cxd4', 'Nxd4', 'g6'], ['e4', 'd5', 'e5', 'e6', 'd4', 'Bb4+', 'Bd2', 'a5', 'c3', 'Be7'], ['e4', 'd5', 'Qh5', 'e5', 'Qxe5+', 'Qe7', 'Qxd5', 'c6', 'Qd4', 'c5'], ['d4', 'e6', 'e4', 'Qh4', 'g3', 'Qxe4+', 'Ne2', 'Qxh1'], ['e4', 'e5', 'Nf3', 'Bb4', 'c3', 'Bc5', 'Na3', 'Nf6', 'Nc4', 'Nxe4'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'Bg4', 'f3', 'Bf5', 'Nc3', 'c6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'f5', 'exf5', 'd5', 'Bb3', 'Bxf5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Qe2', 'Qxe2+', 'Bxe2', 'Bf5'], ['e4', 'e5', 'Bb5', 'c6', 'Bc4', 'Qg5', 'Nf3', 'Qxg2', 'Nh4', 'Qxh1+'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qc4', 'd4', 'Nf6', 'e4', 'Bg4'], ['e4', 'e5', 'd3', 'Bc5', 'Nf3', 'd6', 'h4', 'h6', 'Nfd2', 'Nc6'], ['e4', 'c5', 'Bc4', 'Nc6', 'h3', 'Nd4', 'Nc3', 'Qa5', 'd3', 'e6'], ['e4', 'e5', 'Ne2', 'Nc6', 'Nbc3', 'Bb4', 'g3', 'Nf6', 'f4', 'O-O'], ['d4', 'e5', 'dxe5', 'd5', 'Nc3', 'd4', 'Nb5', 'd3', 'Qxd3', 'Bc5'], ['d4', 'd5', 'Nc3', 'e6', 'Nf3', 'Be7', 'Bg5', 'Bd7', 'e3', 'Nc6'], ['d4', 'd5', 'Bf4', 'Bf5', 'Nc3', 'Nc6', 'Nxd5', 'Qxd5', 'e3', 'Be4'], ['e3', 'd5', 'b3', 'Bf5', 'd3', 'd4', 'e4', 'Bg6', 'Bg5', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Nf6', 'Nf3', 'Bf5'], ['g3', 'e5', 'Bg2', 'Nf6', 'Nh3', 'd5', 'O-O', 'e4', 'b3', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Qf3', 'Be6', 'c4', 'Qf5', 'h4', 'Qg4'], ['d4', 'd5', 'e4', 'c6', 'exd5', 'Qa5+', 'Bd2', 'Qxd5', 'Bc3', 'Bf5'], ['d4', 'd5', 'c4', 'dxc4', 'Qa4+', 'Bd7', 'Qxc4', 'Nc6', 'd5', 'Ne5'], ['g3', 'e5', 'Bg2', 'Qf6', 'Nh3', 'Bc5', 'O-O', 'Qh6', 'b3', 'e4'], ['d4', 'Nh6', 'Nf3', 'e6', 'Ng5', 'Qf6', 'Ne4', 'Qf5', 'Qd3', 'Ng4'], ['e4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nf6', 'd3', 'Bg4', 'f3', 'Bh5'], ['Nf3', 'f5', 'e3', 'd5', 'Ne5', 'b5', 'e4', 'dxe4', 'Bxb5+', 'c6'], ['e4', 'd5', 'Nh3', 'dxe4', 'Ng5', 'Nf6', 'Bc4', 'e3', 'fxe3', 'e6'], ['e4', 'e5', 'Nf3', 'Bb4', 'Nxe5', 'Nf6', 'a3', 'Bc5', 'd3', 'Ng4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd6', 'Bb5+', 'Nc6', 'Nf3', 'Qc5'], ['d4', 'd5', 'Nc3', 'Bf5', 'Nxd5', 'Qxd5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd6', 'Bb5+', 'c6', 'Ba4', 'e5'], ['Nf3', 'b6', 'Nc3', 'Bb7', 'e4', 'Na6', 'Bc4', 'g6', 'Ng5', 'Bg7'], ['d4', 'd5', 'Bf4', 'e6', 'Nc3', 'Bd6', 'Qd2', 'Nf6', 'Bg5', 'O-O'], ['e4', 'c6', 'Bc4', 'e6', 'Nf3', 'b5', 'Bb3', 'a5', 'Nc3', 'a4'], ['Nf3', 'b6', 'e3', 'Ba6', 'c4', 'Bb7', 'd3', 'Na6', 'Bd2', 'g6'], ['e4', 'b6', 'Bb5', 'c6', 'Ba4', 'Bb7', 'Nc3', 'd6', 'Nf3', 'Qc7'], ['Nf3', 'd5', 'e3', 'Bf5', 'd3', 'Nc6', 'Be2', 'Nf6', 'e4', 'e5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Qa5+'], ['d4', 'd5', 'Nf3', 'Bf5', 'Nc3', 'e6', 'Bf4', 'Bb4', 'h3', 'Bxc3+'], ['e4', 'e5', 'Bc4', 'd6', 'Nc3', 'c6', 'Bb3', 'b5', 'a3', 'Nf6'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nd4', 'Be3', 'c5', 'dxc6', 'Nxc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e6', 'Bb5', 'a6', 'Bxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'Bd6', 'Nf3', 'dxe4', 'Nd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bd6', 'd4', 'exd4', 'Bxf7+', 'Kxf7'], ['Nf3', 'Nc6', 'c4', 'e5', 'd4', 'exd4', 'Nxd4', 'Bc5', 'e3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bb5', 'd6', 'O-O', 'Bg4'], ['d4', 'd5', 'c4', 'b6', 'Nc3', 'e6', 'a3', 'dxc4', 'e3', 'c5'], ['e4', 'e5', 'f4', 'f6', 'Nf3', 'g6', 'Bc4', 'Bh6', 'd4', 'Bxf4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6'], ['d4', 'd5', 'c4', 'b6', 'Nc3', 'dxc4', 'e4', 'f5', 'e5', 'e6'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'a6', 'd4', 'cxd4', 'Nxd4', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e6', 'Bb5', 'a6', 'Bxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'd6', 'd4', 'Bg4'], ['d4', 'd5', 'c4', 'b6', 'Nc3', 'dxc4', 'Bf4', 'f6', 'e3', 'g5'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'a6', 'd4', 'exd4', 'cxd4', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'O-O', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'f5', 'g3', 'Nf6', 'exf5', 'Bc5'], ['e4', 'e6', 'Nf3', 'c6', 'Nc3', 'a6', 'h3', 'Ne7', 'a3', 'd5'], ['e4', 'e5', 'Bc4', 'Nc6', 'd3', 'a6', 'a3', 'b5', 'Ba2', 'd6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'c6', 'd4', 'exd4', 'Nxd4', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'exd5', 'e4', 'Nd4', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'c3', 'Bg4', 'Qb3', 'Qd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'Nxd4', 'Nxd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'b6', 'O-O', 'Bb7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bd6', 'Bxc6', 'dxc6', 'd3', 'Bg4'], ['e4', 'e6', 'Nf3', 'c5', 'Nc3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6'], ['e4', 'e5', 'd3', 'Nc6', 'Nf3', 'd6', 'h3', 'a6', 'c4', 'Be6'], ['e4', 'e6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'd4', 'Nf6', 'e5', 'Nd5'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Nc3', 'Bg4', 'Nxe5', 'Nxe5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'g6', 'Bb5', 'Qb6', 'Bxc6', 'Qxc6'], ['e4', 'e5', 'f4', 'd6', 'Nf3', 'exf4', 'Bc4', 'Bg4', 'O-O', 'Bxf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'Bc5', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nc3', 'Nc6', 'g3', 'Nf6', 'Nge2', 'Bc5', 'Bg2', 'O-O'], ['e3', 'c5', 'e4', 'e5', 'Qe2', 'c4', 'Qxc4', 'Nf6', 'd4', 'Nc6'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nce7', 'Nf3', 'Nf6', 'Nc3', 'c6'], ['e4', 'e5', 'Nc3', 'Nc6', 'Nf3', 'Bc5', 'Qe2', 'Nf6', 'Nd5', 'O-O'], ['e4', 'c5', 'Nc3', 'd6', 'g3', 'a6', 'Bh3', 'Bxh3', 'Nxh3', 'Nf6'], ['d4', 'Nf6', 'Nc3', 'd5', 'Bg5', 'e6', 'Bxf6', 'Qxf6', 'e3', 'Bb4'], ['c4', 'e5', 'Nc3', 'Bb4', 'e4', 'Ne7', 'a3', 'Bxc3', 'dxc3', 'O-O'], ['e4', 'c5', 'Bc4', 'd6', 'h3', 'a6', 'Qf3', 'e6', 'a3', 'Nc6'], ['e4', 'e5', 'f4', 'd6', 'Nf3', 'f6', 'd3', 'h5', 'Be2', 'h4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Qb6'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'e6', 'c4', 'a6', 'cxd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'g3', 'Nf6', 'd3', 'Bc5', 'Bg2', 'Nd4'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'Ne2', 'Bc5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nf6', 'Nc3', 'exd4', 'Nxd4', 'c5'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'O-O', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Bd6', 'Nc3', 'Nf6', 'Be2', 'Nd4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'f3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nc3', 'd6', 'Nf3', 'Nf6', 'd4', 'Bg4', 'Be2', 'exd4'], ['e4', 'd6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nd7', 'dxe5', 'b6', 'exd6', 'Bxd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bd6', 'Nc3', 'Nge7', 'd3', 'Bb4'], ['d4', 'd6', 'c4', 'Nf6', 'Nc3', 'c6', 'h3', 'e5', 'Nf3', 'exd4'], ['e4', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'd6', 'Bb5', 'Bd7', 'd4', 'e5'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'd4', 'Nc6', 'Be3', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qf6', 'O-O', 'a6', 'Ba4', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'd5'], ['e4', 'e5', 'c4', 'Nc6', 'Nf3', 'd6', 'Nc3', 'f5', 'exf5', 'Bxf5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'Be7', 'Bxf7+', 'Kxf7'], ['d4', 'Nf6', 'e3', 'd5', 'h3', 'Nc6', 'Bd3', 'e6', 'Nf3', 'Ne4'], ['e4', 'd5', 'e5', 'Nc6', 'd4', 'Bf5', 'Nf3', 'Nb4', 'Bd3', 'Bxd3'], ['e4', 'e5', 'd4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'e4', 'Nc3', 'Qf5'], ['e4', 'f6', 'Nf3', 'e5', 'd4', 'Ne7', 'd5', 'g6', 'Bc4', 'd6'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'd6', 'Bc4', 'Bg4', 'O-O', 'Nd4'], ['e4', 'c5', 'Nc3', 'd6', 'Bc4', 'a6', 'a3', 'b5', 'Ba2', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'd4', 'Nc6', 'd5', 'Na5'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qe7'], ['e4', 'Nc6', 'Nf3', 'e5', 'Nc3', 'd6', 'Bc4', 'f5', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'a6', 'd4', 'Nc6', 'd5', 'b5'], ['e4', 'e6', 'Nf3', 'c6', 'Bc4', 'Bc5', 'O-O', 'Bd6', 'd4', 'Bc7'], ['d4', 'e6', 'c4', 'Nf6', 'Nc3', 'Bb4', 'Bd2', 'Bxc3', 'Bxc3', 'Ne4'], ['e4', 'e5', 'Qf3', 'Nf6', 'd3', 'Bc5', 'Be2', 'd6', 'Qg3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'O-O'], ['e4', 'b6', 'Nf3', 'Bb7', 'Bc4', 'Bxe4', 'Ng5', 'f6', 'Bf7#'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'd6', 'O-O', 'Be7', 'Nc3', 'Qg6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'e6', 'Bg5', 'Be7', 'e3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Bc5', 'Bc4', 'O-O', 'O-O', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'd3', 'Nf6', 'Nf3', 'Bc5', 'Nxe5', 'd6', 'Ng4', 'Nxg4'], ['g3', 'e5', 'e4', 'Nf6', 'Bg2', 'Bc5', 'h3', 'O-O', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bxe6', 'fxe6', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nb4', 'Nxe5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'Qg5', 'O-O', 'Bc4', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'O-O'], ['e4', 'c5', 'Nf3', 'a6', 'Bc4', 'Nc6', 'Ng5', 'Ne5', 'b3', 'Nxc4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'O-O', 'Qh4', 'Nxh4', 'Bxd1'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'exd4', 'Qxd4', 'b6', 'Bg5', 'Bc5'], ['e4', 'e5', 'c3', 'Nf6', 'd4', 'exd4', 'cxd4', 'Nxe4', 'Qg4', 'Bb4+'], ['d4', 'd6', 'Bg5', 'Nf6', 'Nf3', 'e5', 'dxe5', 'dxe5', 'Nxe5', 'Qxd1+'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'Nf3', 'Ng4', 'd4', 'exd4'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'Qg5', 'O-O', 'e5', 'Ne4'], ['e4', 'e6', 'Nf3', 'f6', 'e5', 'c6', 'exf6', 'gxf6', 'Bc4', 'Qb6'], ['e4', 'e6', 'Nf3', 'f6', 'e5', 'Bc5', 'exf6', 'gxf6', 'Bc4', 'c6'], ['e4', 'e6', 'Nf3', 'f6', 'e5', 'c6', 'exf6', 'gxf6', 'Bc4', 'b5'], ['e4', 'e6', 'Nf3', 'f6', 'Bc4', 'c6', 'e5', 'd5', 'Bd3', 'Bc5'], ['e4', 'e6', 'Nf3', 'f6', 'Bc4', 'c6', 'e5', 'Qb6', 'exf6', 'gxf6'], ['e4', 'e6', 'Nf3', 'f6', 'e5', 'c6', 'exf6', 'gxf6', 'Bc4', 'Qb6'], ['e4', 'e5', 'c4', 'Nf6', 'h4', 'Nxe4', 'f3', 'Nd6', 'c5', 'Nf5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'f4', 'c5'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'g3', 'd5', 'cxd5', 'Nxd5'], ['e4', 'e6', 'e5', 'Bc5', 'd4', 'Be7', 'c3', 'Nh6', 'Bxh6', 'gxh6'], ['e4', 'e5', 'd3', 'Bc5', 'f4', 'Qf6', 'g3', 'exf4', 'Bxf4', 'g5'], ['e4', 'e5', 'Bc4', 'd6', 'Qf3', 'Nf6', 'g4', 'b6', 'g5', 'Bb7'], ['e4', 'e5', 'd3', 'Bc5', 'f4', 'Qf6', 'g3', 'exf4', 'Bxf4', 'g5'], ['e4', 'e5', 'Bc4', 'Qh4', 'Nf3', 'Qxe4+', 'Be2', 'd6', 'd3', 'Qf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Be7', 'c3', 'Nf6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'Bc4', 'O-O', 'g4', 'd6'], ['e4', 'e6', 'd4', 'Qh4', 'Nh3', 'Bb4+', 'c3', 'Ba5', 'd5', 'exd5'], ['g3', 'e5', 'Bg2', 'Bc5', 'c4', 'Qf6', 'e3', 'Nc6', 'b3', 'Nge7'], ['e4', 'd5', 'd3', 'dxe4', 'c4', 'exd3', 'Bxd3', 'Qd7', 'Qc2', 'Qc6'], ['e4', 'Nf6', 'e5', 'Nd5', 'Bc4', 'Nb6', 'Bb3', 'd6', 'Qh5', 'e6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'd4', 'd6', 'Nc4', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'a6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Bc5', 'Nxe5', 'Nc6', 'Nxc6', 'dxc6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Ng8', 'Nf3', 'Nc6', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nh6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nc6', 'Nc3', 'Nb4', 'O-O', 'Bd6'], ['d4', 'e6', 'h4', 'e5', 'Bg5', 'f6', 'Bd2', 'exd4', 'e3', 'dxe3'], ['e4', 'e5', 'd3', 'Bc5', 'Nf3', 'Qf6', 'Nxe5', 'Qxe5', 'Be2', 'Qf6'], ['e4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'Nf6', 'd3', 'Nd4', 'Nxd4', 'exd4'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'd6', 'Nxe5', 'dxe5', 'Qh5+', 'g6'], ['d4', 'e5', 'dxe5', 'Bc5', 'Qd5', 'b6', 'e6', 'Qh4', 'Nf3', 'Qxf2+'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'Qh5', 'Nf6', 'Qe5+', 'Be7'], ['e3', 'e5', 'Bc4', 'Nh6', 'Qh5', 'Qf6', 'e4', 'c6', 'Nf3', 'd5'], ['e3', 'd5', 'd4', 'Nf6', 'f3', 'e6', 'e4', 'dxe4', 'fxe4', 'Nxe4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'Qf3', 'Nc6', 'Qg3', 'g6'], ['e3', 'd5', 'd3', 'd4', 'exd4', 'Qxd4', 'c3', 'Qe5+', 'Be3', 'Qb5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'f6', 'Bxc6', 'bxc6', 'd3', 'c5'], ['e4', 'e5', 'Be2', 'Nc6', 'Nf3', 'Nf6', 'Bd3', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Qf3', 'Bc5', 'Bc4', 'Nf6', 'd3', 'O-O', 'Nh3', 'c6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bb5+', 'c6', 'Ba4', 'b5'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'Qxd5', 'c4', 'Qe6+', 'Qe2', 'Qg4'], ['e4', 'e5', 'f4', 'Bd6', 'Nf3', 'exf4', 'Bc4', 'Qf6', 'O-O', 'c6'], ['e4', 'e5', 'Nf3', 'Be7', 'Bc4', 'Nh6', 'Nxe5', 'O-O', 'd3', 'd6'], ['e4', 'e6', 'e5', 'Bc5', 'd4', 'Be7', 'c3', 'Nh6', 'Bxh6', 'gxh6'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Qe7', 'Qxh8', 'Nf6', 'd3', 'd6'], ['d4', 'e6', 'd5', 'Bc5', 'e3', 'd6', 'a3', 'c6', 'b4', 'Bb6'], ['e4', 'e5', 'Bd3', 'd6', 'Nf3', 'h6', 'O-O', 'c6', 'Be2', 'Nf6'], ['e4', 'd5', 'Qf3', 'h5', 'exd5', 'Bg4', 'Qe4', 'f5', 'Qe5', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'c4', 'Qd4', 'd3', 'e6', 'Be3', 'Bb4+'], ['e4', 'd5', 'exd5', 'Qxd5', 'c4', 'Qd4', 'c5', 'Qxc5', 'd3', 'e6'], ['e4', 'e5', 'Nf3', 'Bc5', 'd4', 'Bxd4', 'Nxd4', 'exd4', 'Qxd4', 'f6'], ['e3', 'e5', 'c3', 'f6', 'h4', 'Nh6', 'a4', 'Be7', 'a5', 'O-O'], ['d4', 'e6', 'e3', 'c6', 'Na3', 'h5', 'Bd2', 'h4', 'Nc4', 'a5'], ['e3', 'g6', 'Nf3', 'Bg7', 'd4', 'e6', 'Bd3', 'd5', 'O-O', 'Ne7'], ['g3', 'd5', 'Bg2', 'e5', 'd3', 'Nf6', 'c4', 'dxc4', 'Qa4+', 'Qd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'g6', 'Bxc6', 'dxc6', 'd3', 'Bg7'], ['d4', 'Nf6', 'c4', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nb4', 'Qa4+', 'c6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'Bf4', 'Bg7', 'Nf3', 'O-O'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'a6', 'a3', 'b5', 'Ba2', 'Bb7'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Nbd7', 'Bg5', 'Be7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'g6', 'c3', 'Bg7', 'd4', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'Bc5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'a6'], ['e4', 'd6', 'd4', 'c6', 'Nf3', 'e6', 'Bc4', 'Be7', 'O-O', 'f5'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'd6', 'Bc4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'c3', 'a6', 'Ba4', 'b5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c6', 'Nf3', 'Nf6', 'cxd5', 'exd5'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'e4', 'Nd4', 'Bc5', 'Nb3', 'Bxf2+'], ['e4', 'c5', 'Nc3', 'd6', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'a6'], ['e4', 'c5', 'Bc4', 'd6', 'd3', 'Nc6', 'a3', 'Nf6', 'Nc3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'c3', 'd6', 'O-O', 'Bg4'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'c3', 'a6', 'd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'c3', 'a6', 'd4', 'b5'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bg5', 'Nbd7', 'e3', 'e6', 'a3', 'Be7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'c3', 'Nf6', 'd3', 'g6'], ['g3', 'e5', 'Bg2', 'c6', 'd3', 'd5', 'Nf3', 'Nd7', 'O-O', 'Ngf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'd3', 'Nc6', 'c3', 'Na5'], ['e4', 'c5', 'Nf3', 'd6', 'b3', 'Nc6', 'Bb2', 'e6', 'Be2', 'Nf6'], ['e4', 'b6', 'Nf3', 'Bb7', 'e5', 'e6', 'd4', 'Ne7', 'Bd3', 'Nd5'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'dxe6', 'Bxe6', 'b3', 'Qe7'], ['e4', 'c5', 'Bc4', 'd6', 'f4', 'e5', 'Nf3', 'exf4', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'Bc5'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'e6', 'c4', 'c6', 'Nc3', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'd6', 'c3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'Nd5', 'e6', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nb5', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'c3', 'Bd7', 'd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'b5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'c4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'c3', 'Bd7', 'd4', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'd3', 'Nc6', 'c3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Be3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'O-O', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'c3', 'Bd7', 'd4', 'exd4'], ['e4', 'c5', 'b4', 'cxb4', 'd4', 'd6', 'Nf3', 'Nc6', 'Bc4', 'Nf6'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'Nf3', 'dxe5', 'dxe5', 'e6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nc6', 'd4', 'd5', 'e5', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Bd6', 'd4', 'O-O', 'Qf3', 'Qe8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Bb4', 'a3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Qe7', 'Nxf7', 'Rg8'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'g6', 'Bc4', 'Bg7', 'd3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nd4', 'Nxd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Bd6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Be3', 'Nf6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'e5', 'Nd5', 'Bc4', 'c6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e3', 'e5', 'a3', 'd5', 'h3', 'Nf6', 'Nf3', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['d4', 'Nc6', 'c4', 'e5', 'd5', 'Nd4', 'e3', 'Nf5', 'Nf3', 'd6'], ['e4', 'e5', 'Nf3', 'c5', 'Bc4', 'd6', 'c3', 'Nf6', 'd4', 'cxd4'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'Nf6', 'e3', 'c5', 'cxd5', 'Nxd5'], ['Nf3', 'd5', 'd4', 'Bg4', 'Bf4', 'e6', 'Nbd2', 'Bd6', 'Bg3', 'Bxg3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'd6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bg5', 'h6', 'Bh4', 'c5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'exd5', 'Bg5', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'c3', 'Nf6'], ['d4', 'e6', 'c4', 'Nf6', 'Nc3', 'Bb4', 'Bg5', 'O-O', 'e3', 'd5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e5', 'Bxc4', 'exd4', 'Qb3', 'Qf6'], ['e4', 'b6', 'd4', 'Bb7', 'Bd3', 'Nf6', 'Nc3', 'e6', 'Nge2', 'Bb4'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'c5', 'd5', 'b5', 'Nc3', 'e5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Bd3', 'O-O'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Nf3', 'Bf5', 'Bxc4', 'e6'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'e6', 'Bg5', 'Be7', 'e3', 'O-O'], ['d4', 'd5', 'Nf3', 'f5', 'Bf4', 'e6', 'e3', 'Nf6', 'Nbd2', 'Bd6'], ['d4', 'd5', 'f4', 'Bf5', 'Nf3', 'e6', 'e3', 'Nd7', 'a3', 'Bd6'], ['d4', 'g6', 'c4', 'Bg7', 'Nc3', 'e6', 'e3', 'Ne7', 'Bd3', 'O-O'], ['e4', 'e5', 'd4', 'exd4', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Qxd4', 'Qxd4'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Bf5', 'Qa4+', 'Nc6', 'd5', 'Bd7'], ['d3', 'e5', 'e4', 'Nc6', 'Be3', 'Nf6', 'g3', 'h6', 'Bg2', 'd6'], ['e4', 'e5', 'f4', 'Nc6', 'Bc4', 'exf4', 'Nf3', 'Be7', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bxb4', 'c3', 'Ba5'], ['d4', 'd5', 'Nf3'], ['e4', 'g6', 'd4', 'Bg7', 'e5', 'd6', 'Nf3', 'dxe5', 'd5', 'e4'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nge2', 'e6', 'g3', 'd5', 'exd5', 'exd5'], ['Nf3', 'e5', 'd4', 'e4', 'Nfd2', 'd5', 'f3', 'Bf5', 'fxe4', 'Bxe4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Bb5+', 'Nc6', 'Nf3', 'Qa5+'], ['e4', 'e5', 'd3', 'd5', 'Qh5', 'Qf6', 'exd5', 'g6', 'Qf3', 'Bc5'], ['e4', 'e6', 'd4', 'b6', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'Bd2', 'Bb7'], ['d4', 'e6', 'c3', 'd5', 'b4', 'Qf6', 'g4', 'b6', 'f3', 'g5'], ['d4', 'd5', 'Nf3', 'e5', 'Nxe5', 'f6', 'Nf3', 'Bb4+', 'Bd2', 'Qd6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Bg5', 'Qxg5', 'Nf3', 'Qd8'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Bc5', 'd3', 'd6', 'Ng5', 'Nh6'], ['e4', 'd5', 'e5', 'd4', 'Qf3', 'Be6', 'c3', 'dxc3', 'bxc3', 'g6'], ['e4', 'b6', 'd4', 'Bb7', 'd5', 'd6', 'Nc3', 'e5', 'dxe6', 'fxe6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qc4', 'd6', 'Bf4', 'Be6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'O-O', 'Qf6', 'Be2', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Be7', 'dxe5', 'dxe5', 'Qxd8+', 'Bxd8'], ['e4', 'e6', 'd4', 'd5', 'e5', 'Nc6', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6'], ['e4', 'e5', 'Bc4', 'h6', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Bc4', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'Qxf3', 'dxe5'], ['e4', 'e5', 'f4', 'd6', 'Nf3', 'Bg4', 'Bc4', 'h6', 'O-O', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'h6', 'Nc3', 'Nf6'], ['Nf3', 'e6', 'c4', 'd5', 'cxd5', 'Qxd5', 'd4', 'Nc6', 'g3', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'e6', 'O-O', 'Nge7', 'd4', 'Ng6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Qd8', 'd4', 'c6', 'Bc4', 'Bf5'], ['g3'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'd5', 'exd5', 'Qxd5', 'd4', 'cxd4'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'exf4', 'd4', 'g5', 'h4', 'g4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Bc5', 'Ng5', 'Nf6', 'Be2', 'O-O'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'g6', 'd4', 'Qe7', 'd5', 'Bg7'], ['e4', 'e5', 'Bc4', 'd6', 'Nf3', 'Bg4', 'O-O', 'Bxf3', 'Qxf3', 'Qf6'], ['e4', 'e5', 'f4', 'exf4', 'd4', 'Qh4+', 'g3', 'fxg3', 'Nf3', 'Qg4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Qf3', 'Qe5+', 'Be2', 'Nc6', 'Nh3', 'Nd4'], ['e4', 'e5', 'Bc4', 'd6', 'Nf3', 'Nh6', 'd3', 'Ng8', 'Ng5', 'Be6'], ['e4', 'd6', 'Bc4', 'g6', 'Qf3', 'Be6', 'd4', 'Bxc4', 'Nh3', 'h6'], ['e4', 'd5'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'dxe4', 'Qe2', 'f6', 'Nc4', 'Be6'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'e4', 'Nxd5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bb4+', 'Bd2', 'Bf8', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'c3', 'Bg4', 'd4', 'Nf6', 'dxe5', 'Nxe4'], ['e4', 'e5'], ['e3', 'e5'], ['e3', 'd5', 'd3', 'Nc6', 'Qh5', 'Be6', 'Qxh7', 'Rxh7'], ['e3', 'e5', 'd3', 'd5', 'Be2', 'f5', 'Bd2', 'Nf6', 'Nf3', 'Nc6'], ['e3', 'c5', 'd3', 'e5'], ['e3', 'e5'], ['e3', 'e6'], ['e3', 'e5'], ['b4', 'd6', 'Bb2', 'e6', 'a3'], ['e4', 'd6', 'd4', 'e6', 'Nf3', 'Bd7', 'Nc3', 'Be7', 'e5', 'Nc6'], ['e3', 'd6', 'd3', 'Nc6', 'Be2', 'Nf6', 'Bd2', 'Bd7', 'Nf3', 'e5'], ['e3', 'e5', 'd3', 'd5', 'Be2', 'Nf6', 'Bd2', 'Nc6', 'Nf3', 'Bg4'], ['d4', 'd6', 'c4', 'e6', 'e4', 'Bd7', 'Nf3', 'Be7', 'Nc3', 'Nc6'], ['e3', 'e5', 'd3', 'd5', 'Be2', 'Nf6', 'Bd2', 'Nc6', 'Nf3', 'e4'], ['f4', 'd6', 'e4', 'e6', 'd4', 'Bd7', 'Nf3', 'Be7', 'Bd3', 'Nc6'], ['e3', 'e5', 'd3', 'd5', 'Be2', 'd4', 'Bd2', 'dxe3', 'Bxe3', 'h6'], ['e4'], ['b3', 'g6'], ['d4', 'e5', 'dxe5', 'Bb4+', 'Nd2', 'Qg5', 'b3', 'Nc6', 'Bb2', 'Nh6'], ['g3', 'd5', 'Bg2', 'e5', 'Nf3', 'e4', 'Nd4', 'Bc5', 'c3', 'Na6'], ['b3', 'g6', 'Bb2', 'Nf6', 'Bxf6', 'exf6', 'Nc3', 'Bg7', 'g3', 'f5'], ['Nf3', 'e6', 'g3', 'Bd6', 'Bg2', 'Nf6', 'O-O', 'O-O', 'd4', 'e5'], ['b3', 'f6', 'Bb2'], ['d4', 'e6', 'e4', 'Qh4', 'Bg5', 'Qxg5'], ['d4', 'c5', 'dxc5', 'f5', 'Bf4', 'e6', 'Bd6', 'Bxd6', 'cxd6', 'Nf6'], ['d4', 'e6', 'Bf4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'd4', 'exd4', 'Nxd4', 'Ne5'], ['d4', 'e6', 'e4', 'd5', 'e5', 'c5', 'c4', 'Nc6', 'Nf3', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e5', 'Nfd7'], ['d4', 'Nf6', 'e3', 'c5', 'c3', 'cxd4', 'cxd4', 'd5', 'Bd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Bc5', 'c3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Bc4', 'd6', 'Qf3', 'Nf6', 'd3', 'Bg4', 'Qg3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd4', 'h6', 'dxe5', 'dxe5'], ['e3', 'd5', 'd4', 'Nf6', 'f3', 'Nc6', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6'], ['d4', 'e6', 'Bf4', 'g5', 'Bd2', 'f6', 'f3', 'h6', 'e4', 'd6'], ['e4', 'e5', 'Nc3', 'c6', 'd4', 'b5', 'dxe5', 'b4', 'Na4', 'a5'], ['d3', 'e5', 'e4', 'Nc6', 'h4', 'Nd4', 'Bg5', 'f6', 'Bd2', 'c5'], ['d3', 'e5', 'e3', 'Nf6', 'f3', 'Nh5', 'g4', 'Qh4+', 'Kd2', 'Nf6'], ['e4', 'd5', 'd3', 'd4', 'Nf3', 'Nc6', 'c3', 'e5', 'cxd4', 'exd4'], ['d4', 'd5', 'e3', 'Bf5', 'Bd3', 'Bxd3', 'cxd3', 'Nf6', 'f3', 'e6'], ['c4', 'e5', 'Nc3', 'c6', 'g3', 'f5', 'd3', 'Bb4', 'Bg2', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'd5', 'Bxf3', 'Qxf3', 'c6'], ['e4', 'e5', 'Bc4', 'c6', 'Nf3', 'b5', 'Bb3', 'f6', 'Nh4', 'g5'], ['h4', 'e5', 'd4', 'd6', 'dxe5', 'dxe5', 'e4', 'Qxd1+', 'Kxd1', 'Bg4+'], ['e4', 'e6', 'd3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Qe7', 'Qxe7+', 'Bxe7'], ['e4', 'd5', 'Bb5+', 'c6', 'Bd3', 'dxe4', 'Bxe4', 'Nf6', 'Bd3', 'e5'], ['e4', 'g6', 'f3', 'Bh6', 'h4', 'e5', 'd3', 'Bxc1', 'Qxc1', 'Nc6'], ['d4', 'd5', 'e4', 'e6', 'Bb5+', 'c6', 'Bd3', 'b5', 'b4', 'dxe4'], ['e4', 'e5', 'f3', 'Nc6', 'c3', 'd6', 'd4', 'f6', 'dxe5', 'fxe5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'f6'], ['e4', 'e5', 'Qh5', 'd6', 'Bc4', 'd5', 'Bxd5', 'c6', 'Qxf7#'], ['e4', 'e5', 'f3', 'Nf6', 'h4', 'Nc6', 'Bb5', 'Nd4', 'Bd3', 'd5'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'Bxf2+', 'Kxf2', 'c6', 'Nxe5', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'c6', 'h4', 'd6', 'Ng5', 'Qxg5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Bc5', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Nc3', 'h6', 'O-O', 'Nf6'], ['h4', 'e5', 'g3', 'Nc6', 'Bh3', 'Nf6', 'b4', 'Bc5', 'bxc5', 'Nd4'], ['e4', 'd5', 'f3', 'dxe4', 'fxe4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bg4'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'exf4', 'Bc4', 'Bc5', 'd4', 'Qf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nf6', 'Bf4', 'Bg4'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'a6', 'd4', 'cxd4', 'Nxd4', 'Qc7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nxe5', 'Nxe5'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'Nc6', 'Bc4', 'Nf6', 'd4', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'Bb5', 'Qf6', 'Bg5', 'Qe6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'Nc3', 'c6', 'O-O', 'Bxf3'], ['d4', 'e6', 'e4', 'Nc6', 'c3', 'd5', 'e5', 'f6', 'f4', 'fxe5'], ['d4', 'e6', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'd5', 'a4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'd6', 'd3', 'Nf6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Bd6', 'Bc4', 'f6', 'd4', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bb4', 'O-O', 'Nd4', 'Nxe5', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'h6', 'c3', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'e5', 'Ng5', 'Rg8'], ['Nc3', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nd4', 'Nxd4', 'exd4'], ['e4', 'c6', 'd4', 'd5', 'f3', 'Nf6', 'Bg5', 'dxe4', 'fxe4', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'Ng5', 'd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e6', 'd4', 'cxd4', 'Nxd4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'd4', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'e5', 'd4', 'd6'], ['e4', 'c5', 'Nf3', 'g6', 'Bb5', 'Bg7', 'd3', 'a6', 'Bc4', 'e6'], ['e3', 'd5', 'd4', 'Bf5', 'Bd3', 'e5', 'Bxf5', 'g6', 'Bh3', 'e4'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bb5', 'g6', 'Qf3', 'Nf6', 'Bc4', 'Nd4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'Nc3', 'Bxf3', 'Qxf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'f6', 'dxe5', 'fxe5', 'Bg5', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'd4', 'exd4', 'Nxd4', 'Ne5'], ['e4', 'e5', 'Bc4', 'Qe7', 'Nf3', 'g6', 'Nc3', 'Bg7', 'd3', 'c6'], ['e4', 'Nc6', 'Nf3', 'b6', 'Nc3', 'Bb7', 'Bc4', 'e6', 'Bb5', 'Nge7'], ['b3', 'e5', 'e4', 'Nf6', 'Nc3', 'Nc6', 'Bb2', 'Bc5', 'h3', 'd6'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nd4', 'Be3', 'f6', 'Bxd4', 'exd4'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Be6', 'Bxf6', 'exf6', 'e4', 'dxe4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Bb4+', 'Bd2', 'Bc5'], ['e4', 'c6', 'd4', 'e6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Nc3', 'a6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Qe2', 'Qxe2+', 'Bxe2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'f6', 'dxe5', 'Nxe5', 'Nxe5', 'fxe5'], ['d4', 'd5', 'Nf3', 'Bg4', 'e3', 'Nc6', 'Bb5', 'e6', 'Bxc6+', 'bxc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Nf6', 'Nf3', 'Qd6'], ['c4', 'c5', 'd4', 'd6', 'e4', 'e5', 'dxe5', 'Nc6', 'exd6', 'Qd7'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nf6', 'Nc3', 'Nc6', 'Qd1', 'Bb4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'd4', 'Nc6', 'dxe5', 'Nxe5', 'Nf3', 'd6', 'Nxe5', 'dxe5'], ['e4', 'd5', 'Nc3', 'Nf6', 'exd5', 'Nxd5', 'Nxd5', 'Qxd5', 'c4', 'Qe4+'], ['e4', 'e5', 'd4', 'f6', 'd5', 'd6', 'Nc3', 'Be7', 'Nf3', 'h5'], ['g3', 'Nf6', 'Bg2', 'e5', 'd3', 'Nc6', 'Nf3', 'd5', 'Nfd2', 'Bd6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qc4', 'Nf6', 'f3', 'd5'], ['e4', 'e5', 'd4', 'Nf6', 'Nc3', 'Nc6', 'dxe5', 'Nxe5', 'Nf3', 'Nfg4'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'Bb5', 'Bb4', 'Bxc6', 'dxc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'd4', 'Qe4+', 'Be3', 'Bg4', 'Ne2', 'Bxe2'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Bg4', 'Nf3', 'Bxf3'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'e6', 'Nf3', 'Qd6'], ['b4', 'e5', 'Ba3', 'Qf6', 'e4', 'Nh6', 'h3', 'Nc6', 'c3', 'a6'], ['e4', 'e6', 'd4', 'd6', 'Nf3', 'f6', 'Nc3', 'Ne7', 'Bd3', 'c6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nc3', 'c6'], ['e4', 'Nc6', 'Bb5', 'Nd4', 'Nc3', 'Nxb5', 'Nxb5', 'c6', 'Nc3', 'd5'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Bc5', 'Bb5', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'Nd4', 'Nxd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'd5', 'exd5', 'Qxd5'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'Nh6', 'dxe5', 'Qe6', 'b3', 'd6'], ['e4', 'e5', 'd4', 'Nc6', 'dxe5', 'Nxe5', 'Nc3', 'Nf6', 'Nf3', 'Nxf3+'], ['e4', 'Nc6', 'Nc3', 'e5', 'a3', 'Nf6', 'f3', 'd5', 'Nxd5', 'Nxd5'], ['g3', 'e5', 'c3', 'Nf6', 'b4', 'd5', 'f3', 'Nc6', 'Nh3', 'Bxh3'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Bg4', 'Nc3', 'Qe6+', 'Be2', 'Nc6'], ['h3', 'e5', 'a3', 'd5', 'd4', 'Bd6', 'Nf3', 'e4', 'Ng5', 'Nf6'], ['e4', 'e5', 'd4', 'Bb4+', 'Nc3', 'Nc6', 'Nf3', 'd6', 'd5', 'Nce7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'h6', 'Nxf7', 'Qe7'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'c6', 'Nc3', 'd6', 'Bd3', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Nf3', 'Bf5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Qe4+', 'Be2', 'Bg4', 'Nc3', 'Qe6'], ['e4', 'e5', 'Nc3', 'c6', 'Nf3', 'd6', 'd4', 'Nf6', 'dxe5', 'Ng4'], ['e4', 'e5', 'Nf3', 'd5', 'Bd3', 'dxe4', 'Bxe4', 'Nc6', 'Bxc6+', 'bxc6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'e5', 'Bb5', 'Bc5'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'g6', 'Bb5', 'Bg7'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'd6', 'Nf3', 'Be6', 'Nc3', 'Nf6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'd6'], ['Nf3', 'e6', 'Nc3', 'Nf6', 'd4', 'Bb4', 'e4', 'Nxe4', 'a3', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'O-O', 'Nf6'], ['Nf3', 'd5', 'd4', 'Nc6', 'e3', 'Bg4', 'Be2', 'Nf6', 'Nfd2', 'Bxe2'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'e6', 'Nf3', 'Bd6', 'Bg3', 'Nc6'], ['Nf3', 'd5', 'd4', 'e6', 'e3', 'Nf6', 'Be2', 'c5', 'Nc3', 'Nc6'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'Nf6', 'e3', 'e6', 'Bxc4', 'Be7'], ['d4', 'd5', 'e3', 'Nc6', 'a3', 'Nf6', 'c4', 'Bf5', 'Nc3', 'e6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'e3', 'Bd6', 'cxd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Nc3', 'Nf6', 'O-O', 'Be7'], ['d4', 'd5', 'c4', 'Nf6', 'Nf3', 'e6', 'cxd5', 'exd5', 'e3', 'Bb4+'], ['Nf3', 'd6', 'e4', 'e5', 'Bc4', 'Nc6', 'Nc3', 'Bg4', 'O-O', 'Nd4'], ['Nf3', 'd5', 'd4', 'Nc6', 'e3', 'e6', 'Bb5', 'Bd7', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'd6', 'd4', 'exd4'], ['Nf3', 'd5', 'c4', 'Nf6', 'Nc3', 'Nc6', 'g3', 'd4', 'Nb5', 'e5'], ['d3', 'e5', 'e4', 'Nc6', 'a3', 'Nf6', 'Nc3', 'Bc5', 'Bg5', 'h6'], ['Nf3', 'Nc6', 'd4', 'd5', 'e3', 'Nf6', 'Be2', 'e6', 'O-O', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Nge7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bd7', 'h3', 'Nf6'], ['Nf3', 'b6', 'd4', 'Bb7', 'Nc3', 'd5', 'Bf4', 'Nf6', 'e3', 'Nbd7'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'O-O'], ['Nf3', 'd5', 'd4', 'c6', 'e3', 'h6', 'Nc3', 'Bf5', 'Bd3', 'Bg4'], ['e4', 'd5', 'Nf3', 'd4', 'd3', 'Nc6', 'Bf4', 'e5', 'Bd2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['e4', 'e5', 'Qh5', 'Nc6', 'Nf3', 'Nf6', 'Qh4', 'Be7', 'd3', 'd6'], ['f4', 'd5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'Nc3', 'e6', 'g3', 'Bb4'], ['Nf3', 'd5', 'd4', 'Nc6', 'e3', 'Nf6', 'Bb5', 'e6', 'Ne5', 'Bb4+'], ['g3', 'd5', 'e3', 'e5', 'd3', 'Nf6', 'h3', 'Bc5', 'a3', 'Nc6'], ['e4', 'e5', 'f4', 'd6', 'Nf3'], ['Nf3', 'd5', 'd4', 'e6', 'g3', 'Nf6', 'Bg2', 'c5', 'O-O', 'cxd4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Bc5', 'a3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'h6', 'O-O', 'Nf6'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'Nd2', 'O-O', 'c3', 'Nd5'], ['e4', 'c5', 'c3', 'e6', 'a3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bd3', 'Nf6', 'h3', 'Bd6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Nc6', 'c4', 'Qd8'], ['e4', 'd5', 'exd5', 'c6', 'Nf3', 'Nf6', 'd4', 'Bg4', 'Be2', 'cxd5'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nf6', 'Nf3', 'Bg4'], ['Nf3', 'Nf6', 'd4', 'd5', 'Nc3', 'c6', 'Bg5', 'Bg4', 'e3', 'e6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['b3', 'Nf6', 'Bb2', 'e6', 'c3', 'g6', 'Qc2', 'Bg7', 'd3', 'd5'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'Bd3', 'Bxd3'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Bb4', 'e5', 'h6'], ['d4', 'Nf6', 'c4', 'c5', 'e3', 'cxd4', 'exd4', 'd5', 'Nc3', 'Nc6'], ['d4', 'Nf6', 'c4', 'c5', 'e3', 'cxd4', 'exd4', 'd5', 'Nf3', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'd3', 'Nc6', 'Bg5', 'Bg4'], ['e4', 'g6', 'd4', 'Bg7', 'c3', 'c5', 'e5', 'd6', 'f4', 'cxd4'], ['Nf3', 'd5', 'd4', 'Nf6', 'Bf4', 'c5', 'e3', 'Nc6', 'Bb5', 'Qa5+'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd3', 'Nf6', 'Nc3', 'Bc5'], ['e4', 'e5', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'Bd3', 'Nc5', 'Nf3', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['d4', 'd5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bf4', 'e6', 'e3', 'Bd6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd2', 'Nf6', 'Nc3', 'e5'], ['e4', 'c5', 'Nc3', 'd6', 'Nf3', 'Nc6', 'Be2', 'a6', 'O-O', 'b5'], ['e4', 'c5', 'Nc3', 'd6', 'Bc4', 'Nf6', 'f4', 'Nc6', 'Nf3', 'e6'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bf4', 'Bg7', 'h3', 'O-O', 'e3', 'd6'], ['d4', 'Nf6', 'Nc3', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O', 'e4', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'Qf6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'f3', 'e5'], ['e4', 'c5', 'Nc3', 'd6', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Be3', 'e6'], ['d4', 'd5', 'Nc3', 'c5', 'e3', 'Nc6', 'Nf3', 'Nf6', 'Bb5', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'c3', 'Bg4'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'h3', 'Nc6'], ['e4', 'c5', 'Bc4', 'd6', 'Qf3', 'Nf6', 'd3', 'Nc6', 'c3', 'g6'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'Bc5', 'Bg2', 'a6', 'a3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nd4'], ['c4', 'c5', 'Nf3', 'Nc6', 'd3', 'g6', 'b3', 'Bg7', 'd4', 'cxd4'], ['f4', 'd5', 'e3', 'Nc6', 'Nf3', 'Bg4', 'Be2', 'h5', 'O-O', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bg5', 'Nxe4'], ['c4', 'd6', 'd4', 'e5', 'd5', 'f6', 'Nc3', 'f5', 'e4', 'Na6'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qf5', 'e4', 'Qe5', 'd4', 'Qa5'], ['c4', 'c5', 'Nc3', 'g6', 'g3', 'Bg7', 'Bg2', 'Nf6', 'Nf3', 'Nc6'], ['c4', 'Nc6', 'g3', 'e5', 'Bg2', 'Nf6', 'Nc3', 'Bc5', 'Nf3', 'a6'], ['c4', 'd5', 'e3', 'dxc4', 'Bxc4', 'Nf6', 'Nc3', 'Nbd7', 'Nf3', 'Nb6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Bc4', 'Nc6', 'Nf3', 'g6'], ['d4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'd5'], ['c4', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'Nc3', 'O-O', 'Nf3', 'd6'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'c6', 'Nc3', 'Na6', 'd3', 'Bb4'], ['c4', 'e5', 'd3', 'Nf6', 'g3', 'd5', 'cxd5', 'Nxd5', 'Bg2', 'c6'], ['c4', 'c5', 'g3', 'e6', 'Bg2', 'Ne7', 'Nc3', 'Nbc6', 'Nf3', 'g6'], ['Nf3', 'd5', 'c4', 'dxc4', 'e4', 'Nf6', 'e5', 'Ng4', 'Bxc4', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Nd4', 'Nxe5', 'Qe7'], ['c4', 'Nc6', 'g3', 'd5', 'cxd5', 'Qxd5', 'Nf3', 'Bg4', 'Nc3', 'Qh5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'Nf6', 'Nf3', 'e6', 'e3', 'd5', 'Nc3', 'Be7', 'Ng5', 'c5'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'c6', 'd4', 'exd4', 'Qxd4', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'd5', 'Nf3', 'c6', 'e3', 'Nf6', 'Be2', 'e6', 'O-O', 'Be7'], ['d4', 'd5', 'Nf3', 'Bf5', 'Nc3', 'c6', 'e3', 'Nf6', 'Bd3', 'Bxd3'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'a6', 'Bg5', 'dxc4'], ['d4', 'g6', 'e4', 'Bg7', 'Nf3', 'd5', 'e5', 'e6', 'Nc3', 'Ne7'], ['g3', 'c5', 'Bg2', 'Nc6', 'Bxc6', 'bxc6', 'b3', 'Nf6', 'e3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'a3', 'a5', 'c3', 'Qe7'], ['d4', 'd5', 'Nf3', 'Nf6', 'Nc3', 'e6', 'e3', 'Bb4', 'Bd3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'd4', 'Nbd7', 'dxe5', 'dxe5'], ['d4', 'Nf6', 'Nf3', 'e6', 'e3', 'c5', 'Be2', 'Nc6', 'O-O', 'Qc7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nf3', 'c6', 'dxc6', 'Nxc6', 'Bb5', 'e6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nf3', 'e6', 'dxe6', 'Bxe6', 'Nc3', 'Bd6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'c6', 'dxc6', 'Nxc6', 'Nf3', 'e5'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'c6', 'dxc6', 'Nxc6', 'Nf3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'Qe2', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'a6', 'd4', 'cxd4', 'Nxd4', 'Qc7'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Nge2', 'Nc6', 'g3', 'Bg4'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Qc7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'Ne7', 'a3', 'Bxc3+'], ['e4', 'e6', 'Nc3', 'd5', 'd4', 'Nf6', 'e5', 'Nfd7', 'f4', 'c5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Be7', 'Nc3', 'd6'], ['d4', 'Nf6', 'Nf3', 'd5', 'Bf4', 'Nh5', 'Bd2', 'Nf6', 'c4', 'e6'], ['Nf3', 'd5', 'd4', 'Nf6', 'Bf4', 'e6', 'e3', 'Be7', 'Bd3', 'O-O'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd6', 'd4', 'Nf6', 'Bc4', 'Be6'], ['h3', 'e5', 'e4', 'Nf6', 'd3', 'd5', 'Nc3', 'd4', 'Nce2', 'c5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Nd5', 'Nxd5', 'exd5', 'e4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Bb4', 'Nf3', 'Bf5'], ['e4', 'e5', 'Nc3', 'c6', 'd4', 'exd4', 'Qxd4', 'c5', 'Qe5+', 'Ne7'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'Nf6', 'exd5', 'Bd6', 'd4', 'Nxd5'], ['e4', 'e5', 'Bc4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Nc3', 'c6', 'd4', 'exd4', 'Qxd4', 'c5', 'Qe5+', 'Ne7'], ['e4', 'd5', 'exd5', 'e6', 'd4', 'exd5', 'Nc3', 'Nf6', 'Bf4', 'Bd6'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'Nf6', 'exd5', 'Bd6', 'd4', 'c6'], ['d4', 'e6', 'e4', 'c5', 'd5', 'Qh4', 'Nc3', 'Bd6', 'dxe6', 'Bxh2'], ['e4', 'c5', 'Nc3', 'Nc6', 'f4', 'g6', 'Nf3', 'Bg7', 'Bc4', 'd6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'e3', 'b6', 'Ne2', 'Bb7'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'O-O', 'Nf3', 'd6'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bb5', 'd6', 'd4', 'Bd7', 'd5', 'Nce7'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Ne2', 'g6', 'Ng3', 'Be6'], ['e4', 'c5', 'c3', 'Nc6', 'Nf3', 'e5', 'Bb5', 'd6', 'O-O', 'a6'], ['Nc3', 'd5', 'e4', 'd4', 'Nce2', 'e5', 'd3', 'Nf6', 'h3', 'Bd6'], ['d4', 'd5', 'e3', 'Nf6', 'Bd3', 'e6', 'Nd2', 'c5', 'c3', 'c4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'Bc5', 'c3', 'Nxe4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'c5', 'Bc4', 'Nf6', 'Nc3', 'a6', 'a4', 'e6', 'Nf3', 'd5'], ['g3', 'g6', 'Bg2', 'Bg7', 'd4', 'd5', 'c4', 'c6', 'c5', 'Nd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'd6', 'h3', 'a6'], ['Nf3', 'd5', 'g3', 'c6', 'Bg2', 'Bf5', 'O-O', 'h6', 'd4', 'Nd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'd3', 'd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'g6', 'Bxc6', 'bxc6', 'Nc3', 'Bg7'], ['d4', 'd5', 'e3', 'c5', 'c3', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'c5', 'cxd5', 'exd5'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'c5', 'e3', 'Nc6', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'Nc3', 'Ngf6'], ['Nf3', 'f5', 'g3', 'Nf6', 'Bg2', 'g6', 'O-O', 'Bg7', 'd3', 'O-O'], ['Nf3', 'f5', 'g3', 'e6', 'Bg2', 'd5', 'O-O', 'Nf6', 'd3', 'c6'], ['d4', 'Nf6', 'Bg5', 'g6', 'Bxf6', 'exf6', 'c4', 'Bg7', 'e3', 'O-O'], ['Nf3', 'Nf6', 'g3', 'Nc6', 'Bg2', 'd5', 'O-O', 'e5', 'd3', 'h6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['Nf3', 'c5', 'g3', 'Nc6', 'Bg2', 'g6', 'O-O', 'Bg7', 'd3', 'Nf6'], ['Nf3', 'Nf6', 'd4', 'g6', 'c4', 'Bg7', 'Nc3', 'O-O', 'e4', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'O-O', 'Nf6', 'd3', 'Be7'], ['Nf3', 'Nf6', 'g3', 'd5', 'Bg2', 'c5', 'O-O', 'Nc6', 'd3', 'e5'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bf4', 'Bg7', 'e3', 'O-O', 'h3', 'd6'], ['Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'Nf6', 'O-O', 'O-O', 'd3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['Nf3', 'd5', 'g3', 'Bf5', 'Bg2', 'a6', 'h3', 'Qd7', 'd3', 'e6'], ['Nf3', 'e6', 'g3', 'd5', 'Bg2', 'Be7', 'O-O', 'Nf6', 'd3', 'Nc6'], ['e4', 'c5', 'c3', 'Nf6', 'e5', 'Nd5', 'Bc4', 'e6', 'Nf3', 'b6'], ['e4', 'c5', 'Nf3', 'd6', 'h3', 'a6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['Nf3', 'd6', 'g3', 'Nf6', 'Bg2', 'e5', 'd3', 'Be7', 'O-O', 'h6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bd3', 'a6'], ['Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'O-O', 'd3', 'd5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Be2', 'O-O'], ['Nf3', 'c5', 'g3', 'a6', 'Bg2', 'e6', 'O-O', 'Qc7', 'd3', 'Nc6'], ['e4', 'c5', 'c3', 'Nf6', 'e5', 'Nd5', 'd4', 'cxd4', 'cxd4', 'b6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Bg5', 'h6'], ['Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'Nf6', 'O-O', 'e6', 'd3', 'Nc6'], ['Nf3', 'Nf6', 'g3', 'b6', 'Bg2', 'Bb7', 'O-O', 'e6', 'd3', 'd5'], ['e4', 'c5', 'f4', 'd5', 'e5', 'd4', 'Nf3', 'e6', 'd3', 'Ne7'], ['Nf3', 'c5', 'g3', 'd6', 'Bg2', 'Nf6', 'O-O', 'Nc6', 'd3', 'e5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['Nf3', 'Nf6', 'g3', 'd5', 'Bg2', 'e6', 'O-O', 'Bd6', 'd3', 'e5'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['Nf3', 'c5', 'g3', 'Nc6', 'Bg2', 'e5', 'd3', 'h6', 'O-O', 'f5'], ['Nf3', 'Nc6', 'g3', 'e5', 'd3', 'd5', 'Bg2', 'f5', 'O-O', 'Nf6'], ['Nf3', 'Nf6', 'd4', 'g6', 'Nbd2', 'Bg7', 'e4', 'd6', 'Bd3', 'O-O'], ['e4', 'c5', 'g3', 'd6', 'Bg2', 'Nf6', 'Qe2', 'Nc6', 'Nc3', 'Nd4'], ['Nf3', 'Nc6', 'g3', 'd5', 'Bg2', 'e5', 'd3', 'f6', 'O-O', 'Be6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6'], ['Nf3', 'Nf6', 'g3', 'd5', 'Bg2', 'e6', 'O-O', 'Bd6', 'd3', 'O-O'], ['d4', 'Nf6', 'b3', 'g6', 'Bb2', 'Bg7', 'e3', 'O-O', 'Be2', 'd6'], ['Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'c5', 'd3', 'd6'], ['e4', 'c5', 'Bc4', 'd6', 'a3', 'e6', 'Nc3', 'Nf6', 'd3', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'e6', 'O-O', 'Nf6', 'd3', 'Nc6'], ['e4', 'c5', 'Bc4', 'd6', 'f4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'Be7'], ['Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'd6', 'O-O', 'Nf6', 'd3', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nc6', 'g3', 'g6', 'Bg2', 'Bg7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'Ng5', 'e6'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'Nc6', 'Nc3', 'Bc5', 'Nf3', 'O-O'], ['d4', 'Nf6', 'Nc3', 'g6', 'f4', 'Bg7', 'e3', 'd5', 'Bb5+', 'Bd7'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'd6', 'Ne2', 'a6'], ['d4', 'Nf6', 'e3', 'g6', 'c4', 'd5', 'c5', 'Bg7', 'b4', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'f6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Qf3', 'e6', 'Ne2', 'd6', 'Bb5', 'Bd7'], ['e4', 'c5', 'Nc3', 'd6', 'Bc4', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'd4', 'cxd4'], ['e4', 'Nc6', 'd4', 'd5', 'e5', 'Bf5', 'Nc3', 'e6', 'g4', 'Be4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'Nf3', 'Bg7', 'e3', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'c3', 'Nf6', 'd3', 'Be7'], ['d4', 'd5', 'f4', 'Nc6', 'Nf3', 'Bg4', 'e3', 'Qd6', 'Be2', 'O-O-O'], ['h4', 'c5', 'f4', 'Nc6', 'g3', 'd5', 'Bg2', 'e5', 'd3', 'exf4'], ['f4', 'd5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'Nc3', 'Bg4', 'e3', 'e6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd3', 'c6', 'Bd2', 'Nf6'], ['e4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nc6', 'Nf3', 'e5', 'Bb5', 'Bd7'], ['e4', 'e6', 'd4', 'c5', 'Nf3', 'b6', 'Nc3', 'Bb7', 'Bd3', 'Nf6'], ['e4', 'd5', 'd4', 'dxe4', 'Nc3', 'Nf6', 'f3', 'e6', 'fxe4', 'Nc6'], ['d4', 'Nf6', 'e3', 'd5', 'c4', 'e6', 'Nc3', 'Be7', 'Nf3', 'O-O'], ['e4', 'd6', 'd4', 'g6', 'Nf3', 'Bg7', 'c4', 'Nc6', 'd5', 'Ne5'], ['d4', 'Nf6', 'e3', 'd5', 'Bd3', 'c5', 'c3', 'Nc6', 'a3', 'e5'], ['Nf3', 'Nf6', 'c4', 'g6', 'b3', 'Bg7', 'Bb2', 'O-O', 'e3', 'c5'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'e6', 'e3', 'Bb4+', 'Bd2', 'Bxd2+'], ['g3', 'Nf6', 'Bg2', 'Nc6', 'Nf3', 'Ng4', 'O-O', 'Na5', 'Nc3', 'e6'], ['g3', 'g6', 'Bg2', 'Bg7', 'Nf3', 'Nf6', 'Nc3', 'O-O', 'O-O', 'd5'], ['g3', 'e6', 'Bg2', 'c6', 'Nf3', 'f6', 'd4', 'd5', 'Nc3', 'Na6'], ['e3', 'g6', 'd4', 'Bg7', 'c3', 'e6', 'a4', 'Ne7', 'Bc4', 'O-O'], ['g3', 'd5', 'Bg2', 'e6', 'Nf3', 'Be7', 'd3', 'Nc6', 'O-O', 'Nh6'], ['e4', 'g6', 'Nf3', 'Bg7', 'g3', 'c5', 'Bg2', 'Nc6', 'd3', 'e6'], ['g3', 'd5', 'Bg2', 'g6', 'Nf3', 'Bg7', 'd3', 'Nc6', 'O-O', 'Nf6'], ['Nf3', 'g6', 'd4', 'Bg7', 'e3', 'e6', 'Bb5', 'Ne7', 'Nc3', 'O-O'], ['g3', 'Nc6', 'Bg2', 'b6', 'Nf3', 'Bb7', 'O-O', 'e5', 'd3', 'd5'], ['e4', 'g6', 'Nf3', 'Bg7', 'Bc4', 'c5', 'Ng5', 'e6', 'd3', 'Nc6'], ['e4', 'g6', 'Nf3', 'Bg7', 'Bc4', 'c5', 'Ng5', 'e6', 'Qf3', 'Qxg5'], ['g3', 'g6', 'Bg2', 'Bg7', 'Nf3', 'Nc6', 'Nc3', 'd6', 'O-O', 'Nh6'], ['e4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'c5', 'b3', 'Nc6', 'Bb2', 'e6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'e5', 'O-O', 'Nf6', 'Nc3'], ['g3', 'b6', 'Bg2', 'Nc6', 'Nf3', 'Bb7', 'd4', 'g6', 'd5', 'Nb4'], ['e4', 'e5', 'd3', 'Nf6', 'Nf3', 'Nc6', 'a3', 'd5', 'exd5', 'Qxd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nf6', 'Nc3', 'exd4', 'Qxd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'Nc3', 'Nf6', 'Bb5', 'a6'], ['e4', 'c5', 'Bc4', 'd6', 'Bxf7+', 'Kxf7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'd5', 'Nc3', 'Bb4'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'Na3', 'Nd4'], ['d4', 'd5', 'Bg5', 'h6', 'Bh4', 'Nc6', 'Nf3', 'f6', 'Nc3', 'e5'], ['e4', 'd5', 'd3', 'Nf6', 'Nd2', 'dxe4', 'dxe4', 'e5', 'Ngf3', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'Bb5', 'Bd7', 'O-O', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bd6', 'Bg5', 'O-O'], ['e4', 'd6', 'g3', 'Nf6', 'Bg2', 'g6', 'Nc3', 'Bg7', 'Nf3', 'O-O'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Bg5', 'Bg7', 'Bxf6', 'exf6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bf4', 'dxc4', 'a4', 'Bf5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Bg5', 'O-O'], ['e4', 'd6', 'd4', 'Nf6', 'Bd3', 'g6', 'f4', 'Bg7', 'Nf3', 'O-O'], ['d4', 'Nf6', 'c4', 'd5', 'Nc3', 'e6', 'Bf4', 'a6', 'e3', 'Bd6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bf5', 'Bf4', 'Qb6'], ['d4', 'd5', 'c4', 'c5', 'e3', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'e6'], ['b3', 'Nf6', 'Bb2', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O', 'e3', 'c6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'e5', 'dxe5'], ['d4', 'b6', 'c4', 'Bb7', 'Nc3', 'e6', 'Bf4', 'Bb4', 'e3', 'Nf6'], ['e4', 'd6', 'Nf3', 'Nf6', 'Bc4', 'g6', 'd3', 'Bg7', 'Bg5', 'O-O'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'f6', 'e3', 'Nc6', 'Bxc4', 'a6'], ['d4', 'e5', 'dxe5', 'a6', 'Nf3', 'Nc6', 'Bf4', 'h6', 'Nbd2', 'Bb4'], ['e4', 'd6', 'Bc4', 'Nf6', 'Qe2', 'g6', 'Nf3', 'Bg7', 'O-O', 'O-O'], ['d4', 'Nf6', 'c4', 'd5', 'Nc3', 'dxc4', 'Nf3', 'Nc6', 'e3', 'Bg4'], ['e4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'g6', 'Bc4', 'Bg7', 'O-O', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bf4', 'c5', 'e3', 'cxd4'], ['d4', 'Nf6', 'c4', 'Nc6', 'Nc3', 'd5', 'Bf4', 'a6', 'e3', 'g6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Bf5', 'Nc3', 'Nf6', 'Nf3', 'h6'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'Nc6', 'Bf4', 'Bb4+'], ['d4', 'd5', 'Bg5', 'c6', 'e3', 'Bf5', 'Bd3', 'Bg6', 'Bxg6', 'hxg6'], ['d4', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Nc3', 'Nf6', 'Nf3', 'Bf5'], ['d4', 'e6', 'c4', 'Nf6', 'Nc3', 'b6', 'Bf4', 'Bb7', 'Nf3', 'Bb4'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'b5', 'a4', 'c6', 'axb5', 'cxb5'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Bg5', 'Bg7', 'h3', 'O-O'], ['e4', 'd6', 'Nf3', 'Nf6', 'd3', 'g6', 'Be2', 'Bg7', 'O-O', 'O-O'], ['d4', 'd5', 'c4', 'Bf5', 'Nf3', 'e6', 'Bf4', 'c6', 'Nh4', 'Bg6'], ['c4', 'Nf6', 'Nc3', 'g6', 'd4', 'Bg7', 'g3', 'O-O', 'Bg2', 'd6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Nf3', 'd5', 'a3', 'Bxc3+'], ['e4', 'd6', 'd4', 'Nf6', 'Bd3', 'g6', 'Bg5', 'Bg7', 'e5', 'dxe5'], ['e4', 'd6', 'd4', 'Nf6', 'Bd3', 'g6', 'Bg5', 'Bg7', 'c3', 'O-O'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Bc4', 'Bg7', 'Nf3', 'O-O'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'c6', 'e4', 'e5', 'd5', 'Nbd7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Be6', 'Bf4', 'Nf6', 'e3', 'Qa5'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'h3', 'Bg7', 'Nf3', 'O-O'], ['e4', 'd6', 'Bc4', 'Nf6', 'd3', 'g6', 'h3', 'Bg7', 'Nf3', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c5', 'e3', 'Nf6', 'Nf3', 'Be7'], ['d4', 'Nf6', 'e3', 'g6', 'c4', 'Bg7', 'Nf3', 'O-O', 'Bd3', 'c6'], ['d4', 'c6', 'c4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'Bf5', 'e3', 'e6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'd5'], ['d4', 'd5', 'h4', 'c5', 'dxc5', 'e6', 'b4', 'a5', 'c3', 'axb4'], ['d4', 'e6', 'c4', 'a5', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'b6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Nf6', 'Bd3', 'Bg4', 'c4', 'Qxd3'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'g3', 'Nf6', 'Bg2', 'c6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bf5', 'h3', 'e6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'e6', 'd3', 'd5', 'Nd2', 'Nf6', 'g3', 'c5', 'Bg2', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'Bg5', 'Bg4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd3', 'Nf6', 'Nf3', 'Bg4'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'Nc6', 'Bf4', 'Bb4+'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'c6', 'Bf4', 'Bd6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'c6', 'axb5', 'cxb5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'dxc4'], ['d4', 'c5', 'dxc5', 'Nc6', 'Nf3', 'Qa5+', 'Bd2', 'Qxc5', 'e3', 'd5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Bd3', 'Bg4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Bg4', 'd4', 'e6'], ['e3', 'd5', 'b3', 'Nf6', 'Bb2', 'Bf5', 'h4', 'Nbd7', 'Be2', 'h5'], ['d4', 'e6', 'c4', 'c6', 'd5', 'cxd5', 'cxd5', 'exd5', 'Qxd5', 'Nc6'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'Bd7', 'Bf4', 'c5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Bg4', 'Be2', 'Nf6'], ['d4', 'd5', 'c4', 'Nc6', 'Nc3', 'e6', 'Nf3', 'Bb4', 'a3', 'Ba5'], ['e4', 'd5', 'e5', 'c5', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'Nc3', 'Nc6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Bf5', 'Nf3', 'e6', 'a3', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'c6', 'a3', 'g6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'Nf3', 'dxc4', 'a4', 'Bb4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'c5', 'cxd5', 'exd5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c6', 'Nf3', 'Be7', 'Bf4', 'Nd7'], ['d4', 'd5', 'e3', 'Nf6', 'c3', 'Bg4', 'Be2', 'Bxe2', 'Qxe2', 'e6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'c4', 'Bb4+'], ['d4', 'g6', 'c4', 'b6', 'Nc3', 'Ba6', 'e3', 'e6', 'Be2', 'Nf6'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'Nf6', 'd3', 'Bg4', 'Qd2', 'exd3'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'dxc4', 'e3', 'Nc6', 'Bxc4', 'Na5'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'Bb4', 'a3', 'Bxc3+'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'dxc4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'dxc4', 'e3', 'Bb4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Bb5+', 'c6', 'Ba4', 'Nf6'], ['Nf3', 'f6', 'd4', 'd5', 'Qd3', 'g6', 'Qb3', 'c6', 'Bf4', 'Na6'], ['Nf3', 'Nc6', 'g3', 'b6', 'Bh3', 'Bb7', 'Bg4', 'Ne5', 'Nxe5', 'Bxh1'], ['Nf3', 'd5', 'Nc3', 'Nf6', 'Nxd5', 'Nxd5', 'd4', 'Nc6', 'Qd3', 'Ndb4'], ['e3', 'e5', 'Bc4', 'Qf6', 'Qf3', 'Qg6', 'Qd5', 'Nh6'], ['e4', 'd5', 'Nc3', 'd4', 'Nd5', 'c6', 'Nf4', 'e5', 'Nfe2', 'Qf6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'd3', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Nh6', 'd4', 'Qf6', 'dxe5', 'Nxe5'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bb5', 'Bd6', 'Bc4', 'Nh6', 'd4', 'Qf6'], ['e4', 'e5', 'c4', 'Qh4', 'd3', 'Bc5', 'Nf3', 'Qxf2#'], ['e4', 'c5', 'Qf3', 'e6', 'Nh3', 'd5', 'd3', 'Nc6', 'Ng5', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Nf6', 'Nf3', 'Qc5'], ['e4', 'e5', 'Qh5', 'd6', 'Bc4', 'Nh6', 'd4', 'exd4', 'Bxh6', 'Qe7'], ['e3', 'e5', 'd4', 'e4', 'd5', 'Qg5', 'Nc3', 'Nf6', 'Qd4', 'Nc6'], ['d4', 'Nc6', 'c4', 'e5', 'd5', 'Nd4', 'Nc3', 'd6', 'f4', 'Bf5'], ['e4', 'f6', 'd4', 'b6', 'd5', 'a5', 'a4', 'h5', 'h4', 'Nh6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bb5', 'Nf6', 'Qf5', 'g6', 'Qf3', 'Nd4'], ['Nf3', 'd5', 'd4', 'Nf6', 'e3', 'Bg4', 'Bb5+', 'c6', 'Be2', 'Qd6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'd4', 'Nc6', 'Qf4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'Bg4', 'h3', 'Bxf3'], ['e4', 'c5', 'e5', 'Nc6', 'Nf3', 'g6', 'Bc4', 'Bg7', 'Ng5', 'e6'], ['e4', 'a6', 'Qf3', 'e5', 'Bc4', 'f6', 'Ne2', 'Nc6', 'Qe3', 'd6'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'dxe4', 'Bc4', 'Nh6', 'd3', 'Qf6'], ['e4', 'e5', 'Qf3', 'Nf6', 'd3', 'd5', 'exd5', 'Qxd5', 'Qe3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nxe5', 'Qh4', 'g3', 'Qxe4+', 'Qe2', 'Qxh1'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nd4', 'c3', 'Bc5', 'cxd4', 'exd4'], ['e4', 'd5', 'e5', 'Nc6', 'd4', 'f6', 'Nf3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'd5', 'e5', 'Nc6', 'Nf3', 'd4', 'c3', 'Bg4', 'cxd4', 'Nxd4'], ['e4', 'g6', 'Qf3', 'Bg7', 'Bc4', 'Nh6', 'd4', 'O-O', 'Qh3', 'd5'], ['e4', 'e5', 'Qf3', 'Nf6', 'Ne2', 'd5', 'exd5', 'e4', 'Qb3', 'Nxd5'], ['e4', 'e5', 'Qh5', 'Qf6', 'd4', 'exd4', 'Bg5', 'Qe6', 'Nd2', 'Nf6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'd3', 'Bc5'], ['e4', 'e5', 'Qf3', 'Nf6', 'd3', 'd5', 'Bg5', 'h6', 'Bxf6', 'Qxf6'], ['e4', 'e5', 'Qf3', 'Nf6', 'd3', 'Bc5', 'Bg5', 'd6', 'h3', 'O-O'], ['e4', 'Nc6', 'Bc4', 'f5', 'Qf3', 'fxe4', 'Qf7#'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd3', 'Nf6', 'Ng5', 'd5'], ['e4', 'e5', 'Nf3', 'c5', 'Nxe5', 'd6', 'Nf3', 'Nf6', 'd4', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qf3', 'd5', 'Qxf7#'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nd4', 'Nxe5', 'Qf6'], ['e4', 'e6', 'e5', 'c6', 'Nf3', 'Nh6', 'd4', 'Na6', 'Ng5', 'Qa5+'], ['e4', 'e5', 'Bc4', 'Qh4', 'Nf3', 'Qf6', 'd4', 'd5', 'dxe5', 'Qb6'], ['e4', 'e5', 'd4', 'd5', 'Nc3', 'exd4', 'Qxd4', 'Be6', 'exd5', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nc3', 'Nc6', 'Na4', 'Qe7', 'Nxc5', 'Qxc5'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'd6', 'Bc4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Qf3', 'Bc5', 'Bc4', 'Qh4', 'Qxf7+', 'Kd8', 'g3', 'Qf6'], ['e4', 'e5', 'Qf3', 'Bc5', 'Bc4', 'Nh6', 'd3', 'g5', 'h4', 'f6'], ['d4', 'b6', 'e3', 'Ba6', 'f4', 'Bxf1', 'Nf3', 'Ba6', 'Bd2', 'e6'], ['d4', 'Nf6', 'e3', 'g6', 'f4', 'Bg7', 'Bd3', 'e6', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'a5', 'a4', 'c6', 'O-O', 'b5'], ['d4', 'e6', 'c4', 'Qf6', 'Nf3', 'Bb4+', 'Bd2', 'Bd6', 'e4', 'Bf4'], ['e4', 'e5', 'Nf3', 'd5', 'Bd3', 'd4', 'O-O', 'Nc6', 'Bb5', 'Nf6'], ['Nf3', 'd5', 'd4', 'Nf6', 'g3', 'Nc6', 'Bg2', 'e6', 'O-O', 'Qd6'], ['c4', 'e5', 'Nc3', 'Nc6', 'Nf3', 'd6', 'g3', 'f6', 'Bg2', 'Bg4'], ['e4', 'e5', 'Nf3', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nc6'], ['e4', 'e5', 'Bc4', 'Qf6', 'Nf3', 'Nc6', 'b3', 'Qg6', 'Nc3', 'Qxg2'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'e4', 'Qe2', 'f5', 'd3', 'Qxd5'], ['e4', 'e5', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'Bd3', 'Nc5', 'b4', 'Ne6'], ['e4', 'e5', 'Nf3', 'f6', 'Nc3', 'Nh6', 'Bc4', 'Nc6', 'd3', 'd6'], ['e3', 'e6', 'd4', 'd5', 'a3', 'Nf6', 'f3', 'a6', 'b4', 'b5'], ['e3', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Ne7', 'Qxh8', 'Nf5', 'b3', 'Qg5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'f3', 'Qf6', 'fxe4', 'Qxe5'], ['c4', 'b6', 'e3', 'Nc6', 'a3', 'Bb7', 'Qc2', 'e5', 'Nc3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'h3', 'Be6', 'Bxe6', 'fxe6'], ['g3', 'd5', 'Bg2', 'c6', 'Nf3', 'a6', 'd4', 'b5', 'b4', 'f6'], ['d4', 'd5', 'c3', 'Bf5', 'Nd2', 'e6', 'a3', 'Nc6', 'b4', 'a5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Nxe4', 'Nxf7', 'Qf6'], ['e4', 'e5', 'Nc3', 'a6', 'b3', 'Nc6', 'Bb2', 'h6', 'Nf3', 'd6'], ['e4', 'd5', 'exd5', 'c6', 'dxc6', 'Nxc6', 'Nc3', 'Bf5', 'Nf3', 'e6'], ['d4', 'd5', 'Bf4', 'c6', 'e3', 'h6', 'h3', 'g5', 'Bh2', 'Nd7'], ['e4', 'd5', 'Qf3', 'c6', 'exd5', 'cxd5', 'Bd3', 'Nf6', 'c4', 'Bg4'], ['d4', 'd5', 'Bf4', 'c6', 'e3', 'Qb6', 'Nd2', 'Qxb2', 'Bd3', 'Bg4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'g6', 'Be3', 'Bg7'], ['e4', 'd5', 'Nc3', 'd4', 'Nce2', 'c5', 'Nf4', 'e5', 'Nd5', 'Be6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'Nf3', 'g6', 'Qc2', 'b5'], ['e4', 'd5', 'exd5', 'c6', 'dxc6', 'Nxc6', 'Bd3', 'Bf5', 'Bxf5', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Bxd5', 'Qxd5'], ['e4', 'd5', 'exd5', 'c6', 'dxc6', 'Nxc6', 'Nc3', 'Bf5', 'Nf3', 'e6'], ['b3', 'e5', 'e4', 'Nc6', 'f3', 'Bc5', 'c3', 'a6', 'b4', 'Ba7'], ['d4', 'd5', 'f3', 'Nf6', 'Nc3', 'Bf5', 'e4', 'dxe4', 'fxe4', 'Bxe4'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Be3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Bc4', 'f5', 'exf5', 'd5', 'Bb3', 'Bxf5', 'Nc3', 'Nf6'], ['d4', 'd5', 'Nc3', 'Nf6', 'e3', 'Bf5', 'h3', 'e6', 'g4', 'Be4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'Bb4', 'Bd2', 'd6'], ['e4', 'd5', 'exd5', 'c6', 'dxc6', 'Nxc6', 'Nf3', 'Nf6', 'Bb5', 'Bd7'], ['d4', 'e6', 'Nf3', 'd5', 'Bf4', 'f6', 'e3', 'e5', 'dxe5', 'fxe5'], ['e4', 'd5', 'Qf3', 'Nf6', 'd3', 'Bg4', 'Qe3', 'd4', 'Qd2', 'Nc6'], ['d4', 'e5', 'dxe5', 'Qg5', 'Bxg5', 'f6', 'exf6', 'gxf6', 'Bxf6', 'Nxf6'], ['e4', 'd5', 'Qf3', 'Be6', 'b3', 'c6', 'c4', 'Nf6', 'Nc3', 'Bg4'], ['e4', 'e5', 'Bc4', 'Qf6', 'd3', 'Bc5', 'f3', 'h6', 'Nc3', 'g5'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'Nc6'], ['e4', 'd5', 'exd5', 'c6', 'dxc6', 'Nxc6', 'Nc3', 'Bf5', 'Nf3', 'g6'], ['e4', 'e5', 'Bc4', 'Nc6', 'd3', 'd6', 'Nc3', 'Be6', 'Nf3', 'Bxc4'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'h6', 'Nf3', 'g5', 'Be5', 'f6'], ['e4', 'd5', 'exd5', 'c6', 'dxc6', 'Nxc6', 'Bb5', 'e5', 'Nf3', 'Bd6'], ['e4', 'd5', 'exd5', 'c6', 'Nc3', 'cxd5', 'd4', 'Nf6', 'Bg5', 'Nc6'], ['e4', 'd5', 'Nc3', 'd4', 'Nd5', 'Nf6', 'Bd3', 'Nxd5', 'exd5', 'Qxd5'], ['e4', 'd5', 'd3', 'dxe4', 'dxe4', 'e6', 'Qxd8+', 'Kxd8', 'Nc3', 'Bb4'], ['Nf3', 'd5', 'Nc3', 'Bf5', 'd4', 'e6', 'e3', 'Nf6', 'Bd3', 'Bd6'], ['e4', 'e5', 'Bc4', 'Qe7', 'd3', 'Nc6', 'Be3', 'Nf6', 'Nc3', 'Nd4'], ['d4', 'd5', 'Nc3', 'Nc6', 'e3', 'Bf5', 'b4', 'e6', 'a3', 'Nf6'], ['d4', 'd5', 'Bf4', 'c6', 'e3', 'Nd7', 'Bd3', 'f6', 'h3', 'g5'], ['d4', 'd5', 'Nc3', 'Nc6', 'Bf4', 'Nf6', 'Nb5', 'e5', 'dxe5', 'Bc5'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb5+', 'c6', 'Be2', 'Be6'], ['g3', 'd5', 'Bg2', 'Bf5', 'd3', 'e6', 'b3', 'Bd6', 'Bb2', 'c6'], ['e4', 'd5', 'exd5', 'c6', 'dxc6', 'Nxc6', 'Bc4', 'Bf5', 'a3', 'e6'], ['d4', 'd5', 'f4', 'e6', 'b4', 'h6', 'e3', 'a6', 'b5', 'axb5'], ['d4', 'd5', 'f4', 'f5', 'Nf3', 'Nc6', 'b3', 'e6', 'Ne5', 'Bb4+'], ['d4', 'd5', 'e3', 'Nc6', 'Nc3', 'Nf6', 'Nf3', 'e6', 'h3', 'Bd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Qe2', 'Qc6', 'd3', 'Bf5'], ['d4', 'd5', 'e3', 'Nf6', 'Nf3', 'b6', 'Nc3', 'Bb7', 'Bb5+', 'Nc6'], ['d4', 'd5', 'e3', 'a6', 'f3', 'e6', 'a3', 'h6', 'h3', 'Be7'], ['d4', 'd5', 'e3', 'Nf6', 'Bb5+', 'Nc6', 'Bd3', 'e6', 'c3', 'Bd6'], ['d4', 'd5', 'e3', 'Nf6', 'Bb5+', 'Nc6', 'Bxc6+', 'bxc6', 'Nc3', 'Bb7'], ['d4', 'd5', 'e3', 'f6', 'Bb5+', 'c6', 'Bd3', 'e5', 'dxe5', 'fxe5'], ['d4', 'd6', 'e4', 'e6', 'g3', 'b5', 'Bg2', 'c5', 'e5', 'd5'], ['d4', 'd5', 'e3', 'h6', 'Bb5+', 'Bd7', 'Bd3', 'a6', 'Qh5', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Qe2', 'Qxe2+', 'Bxe2', 'Bd7'], ['d4', 'd5', 'g3', 'Bd7', 'Bg2', 'Nf6', 'f4', 'Nc6', 'Nf3', 'e6'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'Nh6', 'Nxe4', 'Qd5', 'd3', 'Qa5+'], ['c3', 'd5', 'd4', 'Nc6', 'e3', 'Nf6', 'Nf3', 'e6', 'Be2', 'Bd6'], ['d4', 'd5', 'Nc3', 'Nc6', 'e4', 'e5', 'dxe5', 'dxe4', 'Nxe4', 'Nxe5'], ['e4', 'e5', 'Nc3', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd3', 'd4'], ['d4', 'd5', 'e3', 'Nf6', 'Nc3', 'Nc6', 'a3', 'e6', 'Nf3', 'Bd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Qe2', 'Qc6', 'd3', 'Bf5'], ['d4', 'd5', 'e3', 'Nf6', 'Bb5+', 'Nc6', 'b3', 'e6', 'Bb2', 'Bd7'], ['d4', 'd5', 'e3', 'Nf6', 'Nf3', 'b6', 'Nc3', 'Bb7', 'Bb5+', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd3', 'e6', 'Be3', 'a6'], ['d4', 'd5', 'e3', 'Nf6', 'Bb5+', 'Nc6', 'Bd3', 'e6', 'c3', 'Bd6'], ['d4', 'f6', 'e4', 'd6', 'Bd3', 'e5', 'dxe5', 'Nc6', 'exd6', 'Bxd6'], ['d4', 'f5', 'c4', 'c6', 'Nc3', 'e6', 'e4', 'd5', 'exf5', 'exf5'], ['d4', 'e6', 'd5', 'exd5', 'Qxd5', 'Nf6', 'Qe5+', 'Be7', 'Nc3', 'd6'], ['e4', 'd5', 'e5', 'Bf5', 'd4', 'e6', 'Bd3', 'c5', 'Bxf5', 'exf5'], ['e4', 'Nc6', 'c3', 'd5', 'Qf3', 'dxe4', 'Qxe4', 'Nf6', 'Qf3', 'Bg4'], ['d4', 'Nf6', 'd5', 'd6', 'c4', 'e5', 'Nc3', 'c5', 'e4', 'a6'], ['d4', 'h5', 'c4', 'Nf6', 'Nc3', 'd6', 'e4', 'Bg4', 'Nge2', 'Bxe2'], ['g3', 'e5', 'Bg2', 'd5', 'd4', 'exd4', 'Qxd4', 'Nf6', 'Nc3', 'Be6'], ['e4', 'e5', 'f4', 'exf4', 'Bc4', 'Qh4+', 'Kf1', 'Bc5', 'd4', 'Bb6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Bb4', 'a3', 'Bxc3+'], ['f4', 'd5', 'Nf3', 'c6', 'g3', 'Bg4', 'Bg2', 'Nf6', 'O-O', 'e6'], ['e4', 'Nc6', 'Nf3', 'd5', 'exd5', 'Nb4', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7'], ['e4', 'c5', 'Bd3', 'Nc6', 'f4', 'a6', 'c3', 'b5', 'Nf3', 'c4'], ['e4', 'Nc6', 'Nc3', 'Nf6', 'd4', 'e5', 'd5', 'Nd4', 'Nf3', 'Nxf3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'c3', 'Nxf3+', 'Qxf3', 'Nf6'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'dxc4', 'Nc3', 'a6', 'e4', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxe5', 'Qg5', 'Nxf7', 'Qxg2'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'e5', 'O-O', 'd6', 'c3', 'Nf6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd6', 'h4', 'Nf6', 'Ng5', 'Be7'], ['d3', 'd5', 'Bf4', 'Nc6', 'Nf3', 'e6', 'e4', 'dxe4', 'dxe4', 'Qxd1+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Ng5', 'd5', 'exd5', 'f6'], ['d4', 'd5', 'e4', 'dxe4', 'f3', 'exf3', 'gxf3', 'Nf6', 'Be3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd5', 'Nc3', 'd4', 'Nb5', 'Nc6', 'Bc4', 'Nh6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'a6', 'Ng5', 'Nf6', 'Nxf7', 'Bg4'], ['e4', 'e6', 'Nf3', 'b6', 'e5', 'Nc6', 'Bd3', 'Nb4', 'Be4', 'Nd5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Bf5', 'Bxc4', 'Nc6', 'Nf3', 'Nb4'], ['e4', 'e6', 'Nf3', 'Bc5', 'Nc3', 'Bxf2+', 'Kxf2', 'Nf6', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Nxd5', 'Qxd5'], ['e4', 'e5', 'Bc4', 'd6', 'Qh5', 'Qe7', 'd3', 'Be6', 'Bb5+', 'Bd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'g6', 'O-O', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'O-O'], ['d4', 'Nf6', 'e3', 'd5', 'Nf3', 'Nc6', 'Be2', 'Bf5', 'Nc3', 'e6'], ['e4', 'c5', 'c4', 'Nc6', 'Nf3', 'g6', 'd4', 'b6', 'd5', 'Nb8'], ['d4', 'e6', 'c4', 'd5', 'Nf3', 'dxc4', 'e4', 'c6', 'Bxc4', 'b5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'Nf3', 'f6', 'Qa4+', 'Qd7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'O-O'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be7', 'Qb5+', 'Nc6'], ['f4', 'd5', 'Nf3', 'c5', 'e3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Qc7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'c3', 'c4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Bd7'], ['Nf3', 'e6', 'd4', 'd5', 'c4', 'Nf6', 'e3', 'c6', 'Bd3', 'b6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd5', 'exd5', 'Nf6', 'Bb5+', 'c6'], ['Nf3', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Nc3', 'Nf6', 'd4', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'bxc6'], ['Nf3', 'g6', 'e4', 'Bg7', 'd4', 'e6', 'c4', 'Nc6', 'Nc3', 'Nf6'], ['e4', 'e6', 'Nc3', 'd5', 'e5', 'c5', 'd4', 'Nc6', 'Be3', 'Qb6'], ['h4', 'e6', 'g3', 'd5', 'Bh3', 'c5', 'd3', 'Nc6', 'c3', 'Qb6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'a3', 'cxd4'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Nf6', 'Bg5', 'Be7'], ['Nf3', 'Nf6', 'd4', 'g6', 'c4', 'Bg7', 'Nc3', 'd5', 'cxd5', 'Nxd5'], ['e4', 'c5', 'Nf3', 'd6', 'Be2', 'Nc6', 'Nc3', 'e6', 'd4', 'b6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd5', 'Nc3', 'e6'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'g6', 'e4', 'e5', 'dxe5', 'dxe5'], ['e4', 'c5', 'e5', 'Nc6', 'f4', 'e6', 'b3', 'd6', 'Bb2', 'g6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'Bg5', 'Bb4', 'Qc2', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'd3', 'Ngf6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Bb4', 'e3', 'Ne4'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'd5', 'Bb5+', 'Nc6', 'Bxc6+', 'bxc6'], ['d4', 'Nc6', 'd5', 'Nb4', 'e4', 'd6', 'c4', 'Bg4', 'Qa4+', 'c6'], ['c4', 'g6', 'g3', 'Bg7', 'Bg2', 'd6', 'Nc3', 'a6', 'd3', 'Bxc3+'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bc4', 'e6', 'Nf3', 'b6', 'd4', 'Bb7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Bf4', 'd6', 'e4', 'O-O'], ['e4', 'c5', 'Bc4', 'e6', 'Bb5', 'a6', 'Ba4', 'b5', 'c3', 'bxa4'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bf4', 'Bg7', 'e3', 'O-O', 'Nc3', 'd6'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'Nf6', 'Bd3', 'd5', 'e5', 'Ne4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'd6', 'Re1', 'Be7'], ['d4', 'Nf6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'Bf4', 'O-O', 'Nb5', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'Bg4', 'Be2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Bxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'h6', 'O-O', 'a6'], ['d4', 'Nf6', 'f3', 'g6', 'e4', 'd6', 'Bb5+', 'c6', 'Bf1', 'Bg7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'O-O', 'e4', 'd6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qc3', 'e5', 'Nf3', 'd6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'c3', 'a6'], ['e4', 'c5', 'c3', 'e6', 'd3', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Nf6'], ['e4', 'c5', 'c3', 'e6', 'f3', 'd5', 'Bb5+', 'Nc6', 'd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'c6', 'dxe5', 'd5', 'exd6', 'Bxd6'], ['e4', 'c5', 'c3', 'e6', 'd4', 'Nc6', 'dxc5', 'Bxc5', 'Nh3', 'Nf6'], ['Nf3', 'Nf6', 'Nc3', 'g6', 'e4', 'd6', 'Bc4', 'Bg7', 'Ng5', 'O-O'], ['e4', 'Nf6', 'e5', 'Ng8', 'd4', 'g6', 'Nf3', 'd6', 'Be2', 'Nc6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Bd3', 'O-O'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Bd3', 'b5'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'g4', 'e6', 'Bg2', 'h6'], ['e4', 'c5', 'd3', 'd6', 'Nf3', 'Nc6', 'Nc3', 'e6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nf6', 'Nc3', 'd5', 'dxe5', 'Nxe4'], ['e4', 'c6', 'Nf3', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'e6', 'Ne5', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c5', 'Nf3', 'dxe4', 'Nxe4', 'Nf6'], ['d4', 'Nf6', 'd5', 'g6', 'c4', 'Bg7', 'f3', 'O-O', 'e4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'O-O', 'Bc5'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'd6', 'Nf3', 'Bf5', 'Bb5', 'Qd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Nc3', 'Nf6', 'd4', 'exd4'], ['e4', 'e6', 'Nf3', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'b6', 'd4', 'Bb7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bf5', 'Bg5', 'e6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Qf3', 'Bc5', 'Bc4', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Qe7', 'Bc4', 'h6', 'd4', 'exd4'], ['e4', 'd5', 'Nc3', 'd4', 'Nd5', 'Nc6', 'Bb5', 'Bd7', 'Nf3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bc5', 'O-O', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'Bg5', 'Bc5', 'Nbd2', 'O-O'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Bf5', 'Nf3', 'Qe6'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'Nf6', 'e3', 'a6', 'c3', 'g6'], ['e3', 'e5', 'd3', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nf6'], ['e4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'b6', 'Bc4', 'd6', 'Nd5', 'Nxe4'], ['e4', 'e5', 'a4', 'd5', 'exd5', 'Nf6', 'Bc4', 'c6', 'dxc6', 'Nxc6'], ['e4', 'e5', 'd4', 'exd4', 'Nf3', 'c5', 'Bc4', 'Nc6', 'O-O', 'h6'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'a6', 'O-O', 'Nf6', 'h3', 'g6'], ['Nf3', 'c5', 'b3', 'g6', 'Bb2', 'Nc6', 'Bxh8', 'Nb4', 'Bb2', 'd6'], ['e4', 'c5', 'c4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'Na6', 'e5', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'a6', 'a4', 'g6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'b6', 'Nf3', 'Bb4', 'Bd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bd6', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nc6', 'Nf3', 'a6', 'Bd3', 'Nf6'], ['d4', 'e5', 'e3', 'Qh4', 'g3', 'Qe7', 'Nf3', 'Nc6', 'c3', 'Nf6'], ['d4', 'd5', 'Nc3', 'Nc6', 'e3', 'e5', 'a3', 'Nf6', 'h3', 'Bd6'], ['e4', 'd5', 'Qh5', 'dxe4', 'Bc4', 'e6', 'Nc3', 'Nf6', 'Qb5+', 'c6'], ['e4', 'e5', 'Nf3', 'Bc5', 'd4', 'exd4', 'Nxd4', 'Bxd4', 'Qxd4', 'Nc6'], ['e4', 'd5', 'Bb5+', 'c6', 'Bf1', 'dxe4', 'Qh5', 'Nf6', 'Qc5', 'e6'], ['e4', 'f5', 'Qh5+', 'g6', 'Qg5', 'fxe4', 'Nc3', 'Nf6', 'f3', 'd5'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'e5', 'dxe5', 'f6', 'exf6', 'gxf6'], ['e4', 'e5', 'Bc4', 'c5', 'Qh5', 'd6', 'Qxf7#'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qh5', 'Qf6', 'Nf3', 'd6', 'd4', 'exd4'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'd4', 'd6', 'exd6', 'cxd6'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'd3', 'Nc6', 'Nc3', 'Qc5'], ['c4', 'Nf6', 'Nc3', 'e6', 'g3', 'g6', 'Bg2', 'Bg7', 'd3', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'd4', 'exd4', 'Nxd4', 'Ne5'], ['e4', 'e5', 'Nf3', 'Nc6', 'g3', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'd5', 'd4', 'dxe4', 'Ng5', 'Bf5', 'dxe5', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Bxd4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Be7', 'O-O', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Ne7', 'Nxe5', 'c6'], ['d3', 'd5', 'Nf3', 'Nf6', 'g3', 'Nc6', 'Bg2', 'e5', 'O-O', 'Be7'], ['e4', 'c6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e5', 'd4', 'exd4', 'Nf3', 'c5', 'Bc4', 'Bd6', 'c3', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'g6', 'd4', 'Bg7', 'c4', 'd6', 'Nc3', 'e5', 'd5', 'Nf6'], ['b3', 'g6'], ['d4', 'e5', 'dxe5', 'Bb4+', 'Nd2', 'Qg5', 'b3', 'Nc6', 'Bb2', 'Nh6'], ['g3', 'd5', 'Bg2', 'e5', 'Nf3', 'e4', 'Nd4', 'Bc5', 'c3', 'Na6'], ['b3', 'g6', 'Bb2', 'Nf6', 'Bxf6', 'exf6', 'Nc3', 'Bg7', 'g3', 'f5'], ['Nf3', 'e6', 'g3', 'Bd6', 'Bg2', 'Nf6', 'O-O', 'O-O', 'd4', 'e5'], ['b3', 'f6', 'Bb2'], ['d4', 'e6', 'e4', 'Qh4', 'Bg5', 'Qxg5'], ['d4', 'c5', 'dxc5', 'f5', 'Bf4', 'e6', 'Bd6', 'Bxd6', 'cxd6', 'Nf6'], ['d4', 'e6', 'Bf4'], ['d4', 'd5', 'c4', 'Bf5', 'Nc3', 'e6', 'e3', 'c5', 'cxd5', 'exd5'], ['e4', 'e5', 'f4', 'd6', 'Nf3', 'Nc6', 'h4', 'Nf6', 'Ng5', 'Nd4'], ['e4', 'e6', 'Qh5', 'Nf6', 'Qf3', 'd5', 'e5', 'Nfd7', 'Bb5', 'c6'], ['e4', 'e6', 'Bc4', 'Nf6', 'd4', 'Nxe4', 'Nf3', 'd6', 'Nc3', 'd5'], ['e4', 'd5', 'd3', 'dxe4', 'dxe4', 'c5', 'Qxd8+', 'Kxd8', 'Bf4', 'b6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Bd6', 'Nd4', 'Qh4+', 'g3', 'fxg3'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'Nf6', 'Ng5', 'Qe7', 'Bc4', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bb5', 'a6'], ['e4', 'e6', 'd3', 'd5', 'f3', 'Bb4+', 'Bd2', 'Nc6', 'c3', 'Ne5'], ['d4', 'Nc6', 'e3', 'e5', 'Bc4', 'exd4', 'e4', 'Qe7', 'Qd2', 'Qg5'], ['e4', 'e6', 'd4', 'd5', 'Bb5+', 'c6', 'Ba4', 'Qf6', 'Nc3', 'dxe4'], ['d4', 'd5', 'Bf4', 'e6', 'Nc3', 'Bd6', 'Qd2', 'Ne7', 'Nf3', 'Ng6'], ['e4', 'e6', 'd4', 'Nf6', 'e5', 'Ne4', 'Nf3', 'd5', 'Nc3', 'f5'], ['e4', 'e6', 'f4', 'd5', 'd3', 'c5', 'Nf3', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nh6', 'd4', 'Nc6', 'Ne2', 'Bf5'], ['e4', 'd5', 'Nc3', 'Nh6', 'd3', 'c6', 'Bf4', 'Nd7', 'Qh5', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'Nc6', 'Be3', 'Bb4+', 'Nbd2', 'Bxd2+'], ['e4', 'e6', 'Nf3', 'd5', 'Bb5+', 'Bd7', 'c4', 'Bxb5', 'cxb5', 'dxe4'], ['e4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'Be2', 'Bd6', 'Bc4', 'O-O'], ['e4', 'e5', 'd4', 'f5', 'Qd3', 'fxe4', 'Qxe4'], ['e4', 'd5', 'd3', 'c5', 'Be3', 'd4', 'Bf4', 'Nc6', 'Qh5', 'Nb4'], ['c4', 'Nc6', 'e3', 'Ne5', 'd4', 'Nc6', 'Nc3', 'e6', 'Nf3', 'Bd6'], ['e4', 'e5', 'Nc3', 'Bb4', 'Nd5', 'c5', 'c3', 'Ba5', 'Qa4', 'b6'], ['Nf3', 'd6', 'Nc3', 'e6', 'd3', 'Nc6', 'e3', 'Nf6', 'Be2', 'Be7'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qh5', 'Qf6', 'd3', 'Qxf2+', 'Kd1', 'd6'], ['e4', 'e5', 'd4', 'Qf6', 'Bc4', 'exd4', 'Ne2', 'Bc5', 'c3', 'dxc3'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'c3', 'Bc5', 'Bg5', 'd6'], ['d4', 'd5', 'Nc3', 'e6', 'Bf4', 'Bb4', 'Qd3', 'Nc6', 'a3', 'Bd6'], ['e4', 'b6', 'Ne2', 'e6', 'Nd4', 'Bb7', 'd3', 'g6', 'e5', 'Bg7'], ['e4', 'g6', 'Ne2', 'e5', 'd4', 'c6', 'dxe5', 'Be7', 'Nd4', 'Bc5'], ['d4', 'd5', 'Nf3', 'Nc6', 'Nc3', 'e6', 'Bg5', 'Qd6', 'Qd2', 'Qb4'], ['d4', 'd5', 'Nf3', 'e6', 'Bf4', 'Bd6', 'e3', 'Bxf4', 'exf4', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bd3', 'g6', 'Bc4', 'Bg7', 'Ng5', 'Qxg5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Qf3', 'c6', 'Bf4', 'b5'], ['e4', 'e5', 'd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Qe7', 'd4', 'Nc6', 'Bg5', 'h6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Qe2', 'Nc6', 'd4', 'exd4', 'Qd2', 'Nxe4'], ['d4', 'e6', 'Nf3', 'c5', 'e3', 'd5', 'dxc5', 'Bxc5', 'Bd2', 'Nc6'], ['d4', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e6', 'e4', 'a6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'a6', 'Bd3', 'Nc6'], ['d4', 'Nf6', 'Bf4', 'd5', 'Nf3', 'Nc6', 'e3', 'Bg4', 'Bd3', 'g6'], ['d4', 'e6', 'Nf3', 'a6', 'Bf4', 'c5', 'e3', 'cxd4', 'Nxd4', 'd6'], ['e4', 'c6', 'Bc4', 'Nf6', 'e5', 'Nd5', 'Qf3', 'd6', 'Bxd5', 'cxd5'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'f5', 'exf5', 'Bxf5', 'Nf3', 'Nf6'], ['e4', 'c6', 'Nf3', 'd5', 'Nc3', 'Nf6', 'e5', 'Ne4', 'Bd3', 'Nxc3'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'e6', 'e5', 'Nc6', 'Qg4', 'Nxe5'], ['e4', 'c6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Ne4', 'Nxe4', 'dxe4'], ['e4', 'e5', 'Nc3', 'd6', 'Bc4', 'Nf6', 'd3', 'Nbd7', 'Nf3', 'c6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'c5', 'c3', 'cxd4', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Ng5', 'd5'], ['e4', 'c5', 'c4', 'e6', 'g3', 'g6', 'Bg2', 'Nc6', 'Nc3', 'Bg7'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nf6', 'Nxf6+', 'exf6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'e3', 'Bb4', 'cxd5', 'Nxd5'], ['e4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'e5', 'Bb5', 'Nd4', 'O-O', 'Nxb5'], ['Nc3', 'Nf6', 'd4', 'd5', 'Bf4', 'e6', 'a3', 'Bd6', 'Bxd6', 'Qxd6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'c5', 'd5', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'e3', 'dxc4', 'Bxc4', 'Bd7'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Bc4', 'Bg7', 'Nf3', 'O-O'], ['e4', 'Nf6', 'd3', 'e6', 'Bg5', 'Be7', 'e5', 'Nd5', 'Bxe7', 'Qxe7'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bc4', 'Nf6', 'd3', 'd5', 'Bb3', 'dxe4'], ['d4', 'c5', 'e4', 'Nc6', 'Nf3', 'cxd4', 'Nxd4', 'e5', 'Nxc6', 'bxc6'], ['e4', 'c5', 'c3', 'd6', 'Nf3', 'Nf6', 'e5', 'Nd5', 'exd6', 'Qxd6'], ['e4', 'c5', 'c4', 'e6', 'g3', 'Nc6', 'Bg2', 'Ne5', 'Nf3', 'Nxc4'], ['e4', 'e5', 'd4', 'f6', 'Nf3', 'Nc6', 'Bc4', 'Bb4+', 'Bd2', 'Nge7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd4', 'd6', 'dxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nf3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'f3', 'O-O', 'Nd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'd5', 'exd5', 'Nxd5', 'Nxe5', 'f6'], ['d4', 'd5', 'c4', 'c5', 'dxc5', 'Nc6', 'cxd5', 'Nb8', 'e4', 'f6'], ['f4', 'd5', 'b3', 'c5', 'a4', 'Nc6', 'c3', 'e5', 'fxe5', 'Nxe5'], ['d4', 'd5', 'c4', 'Nc6', 'cxd5', 'Qxd5', 'Nf3', 'Bg4', 'e3', 'e5'], ['e4', 'c5', 'c4', 'Nc6', 'Qe2', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nd4'], ['e4', 'd5', 'f3', 'dxe4', 'fxe4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['c4', 'e5', 'g3', 'd6', 'Bg2', 'Be6', 'd3', 'Nc6', 'Nc3', 'Qf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'd6', 'O-O', 'a6'], ['Nf3', 'd5', 'Nc3', 'Nf6', 'd4', 'e6', 'e4', 'c5', 'e5', 'Nfd7'], ['c4', 'b6', 'g3', 'Bb7', 'Bg2', 'Bxg2'], ['d4', 'd5', 'h4', 'Nc6', 'g4', 'e5', 'g5', 'Nxd4', 'e3', 'Nf5'], ['c4', 'e5', 'g3', 'Bc5', 'Bg2', 'Nf6', 'Nc3', 'Ng4', 'e3', 'c6'], ['e4', 'e5', 'Nf3', 'Bd6', 'Bb5', 'Nf6', 'd3', 'c6', 'Bc4', 'Qc7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd6', 'd4', 'exd4', 'Nxd4', 'c5'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd4', 'Nh5'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Bf5', 'f3', 'exf3', 'Qxf3', 'Bc8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'a6', 'Ba4', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Bc5', 'Be3', 'Bxe3', 'fxe3', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Nf6', 'd4', 'e6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Bc5', 'd4', 'Bb6', 'f3', 'O-O'], ['c4', 'e5', 'Nc3', 'Nf6', 'e3', 'Bb4', 'Nge2', 'O-O', 'a3', 'Ba5'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nc3', 'a6', 'f3', 'f6', 'e4', 'dxe4'], ['c4', 'e5', 'Nc3', 'Bc5', 'Nf3', 'c6', 'Nxe5', 'Qh4', 'g3', 'Qd4'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nc3', 'a6', 'f3', 'f6', 'e4', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd6', 'd4', 'exd4', 'Nxd4', 'c5'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nc3', 'Bf5', 'g4', 'Bg6'], ['e4', 'e5', 'f3', 'Nc6', 'b4', 'Bxb4', 'c4', 'Bc5', 'd3', 'Bd4'], ['e4', 'd5', 'exd5', 'c5', 'Bc4', 'f5', 'Qh5+', 'Kd7', 'Qxf5+', 'Ke8'], ['d4', 'd5', 'e4', 'dxe4', 'd5', 'Bf5', 'f4', 'Nf6', 'c4', 'c6'], ['e4', 'e5', 'Bc4', 'd5', 'Bxd5', 'c5', 'Qh5', 'Qxd5', 'exd5', 'e4'], ['d3', 'e5', 'c4', 'Nf6', 'Nh3', 'Bc5', 'a4', 'd6', 'e4', 'O-O'], ['e4', 'e5', 'Be2', 'Bc5', 'Nh3', 'd5', 'g4', 'h5', 'd3', 'Qf6'], ['e4', 'g6', 'd4', 'Bg7', 'Nc3', 'd5', 'Nxd5', 'e6', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Nf6', 'Bd3', 'Nc6', 'O-O', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Bc5'], ['e4', 'e5', 'Bc4', 'g6', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'Nxf7', 'Nxe4'], ['Nf3', 'd5', 'd4', 'Nc6', 'g3', 'Bf5', 'Bg2', 'Nb4', 'Na3', 'c6'], ['c4', 'Nf6', 'd4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'd6', 'exd6', 'Bxd6'], ['b3', 'd5', 'Bb2', 'Nc6', 'e3', 'e5', 'Bb5', 'e4', 'f3', 'exf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'd6', 'a3', 'Bd7'], ['c4', 'e5', 'Nc3', 'a6', 'g3', 'h6', 'Bg2', 'Bc5', 'e3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'Nf6', 'd3', 'a6'], ['e4', 'e5', 'Qh5', 'Qf6', 'd3', 'Nc6', 'Bg5', 'Qg6', 'Qg4', 'h6'], ['c4', 'c5', 'Nc3', 'Nf6', 'g3', 'Nc6', 'Bg2', 'Qc7', 'e3', 'a6'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'd5', 'cxd5', 'Nxd5', 'Bg2', 'Nxc3'], ['c4', 'e5', 'Nc3', 'Bc5', 'g3', 'd6', 'Bg2', 'Nc6', 'e3', 'Qf6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nf6'], ['c4', 'e5', 'g3', 'Nf6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'Bg2', 'Nf6'], ['e4', 'e5', 'd3', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'Be3', 'Nd4'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'h6', 'Bc4', 'Nc6', 'd4', 'Nf6'], ['c4', 'e5', 'g3', 'Nf6', 'Nc3', 'Bc5', 'Bg2', 'O-O', 'e3', 'd6'], ['d4', 'd5', 'Nc3', 'g6', 'e4', 'dxe4', 'Nxe4', 'Bg7', 'c3', 'Bf5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'c6', 'f4', 'd5', 'exd5', 'cxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'Bc4', 'h6', 'Nd5', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'h3', 'f5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bd7', 'h3', 'Nf6'], ['e4', 'e5', 'b3', 'Nf6', 'Nc3', 'Nc6', 'Bb2', 'Bc5', 'h3', 'd5'], ['Nc3', 'e5', 'Nf3', 'Nc6', 'e4', 'f5', 'exf5', 'Nf6', 'd3', 'h6'], ['Nf3', 'e6', 'e4', 'd5', 'e5', 'c5', 'c3', 'Ne7', 'd4', 'cxd4'], ['Nf3', 'd5', 'e3', 'Nf6', 'b3', 'Nc6', 'Bb2', 'e5', 'h3', 'e4'], ['Nf3', 'f6', 'Nc3', 'c6', 'd4', 'd5', 'h3', 'h5', 'a3', 'a5'], ['Nf3', 'c5', 'b3', 'Nc6', 'Bb2', 'e6', 'h3', 'Nf6', 'e3', 'g6'], ['Nf3', 'e6', 'e4', 'c6', 'e5', 'h6', 'd4', 'b5', 'a3', 'Ne7'], ['Nf3', 'Nc6', 'Nc3', 'Nf6', 'h3', 'd5', 'd4', 'e5', 'dxe5', 'Nxe5'], ['Nf3', 'Nc6', 'Nc3', 'e5', 'd3', 'd5', 'e3', 'Nf6', 'h3', 'Bb4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nxe4', 'Nxe5', 'Nd6', 'Bb3', 'Qe7'], ['Nf3', 'e6', 'd4', 'd5', 'c4', 'c6', 'c5', 'b6', 'b4', 'bxc5'], ['Nf3', 'd6', 'd4', 'g6', 'e4', 'Bg7', 'b3', 'Nc6', 'Bb2', 'Bg4'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'Nc3', 'c6', 'Nxb5', 'cxb5'], ['e4', 'g6', 'e5', 'Bg7', 'd4', 'Nc6', 'a3', 'd6', 'f4', 'dxe5'], ['Nf3', 'c5', 'b3', 'Nc6', 'Bb2', 'd5', 'h3', 'd4', 'e3', 'e5'], ['Nf3', 'Nc6', 'd4', 'd5', 'g3', 'Bg4', 'Bg2', 'e6', 'Nc3', 'Bb4'], ['e4', 'Nc6', 'Bc4', 'h6', 'Nf3', 'e5', 'd3', 'b6', 'Bd5', 'Bb7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd3', 'Nf6', 'h3', 'd5'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Nc6', 'd4', 'e6', 'Bb5', 'a6'], ['Nf3', 'Nc6', 'Nc3', 'e5', 'e4', 'Nf6', 'b3', 'd6', 'Bc4', 'Be6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'f5', 'exf5', 'Bxf5', 'd3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'd3', 'Qf6', 'Bg5', 'Nxf3+'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'd4', 'd6', 'Nf3', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['d4', 'Nf6', 'c4', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nb6', 'Nc3', 'g6'], ['e4', 'Nc6', 'd4', 'e6', 'Nc3', 'd6', 'd5', 'exd5', 'exd5', 'Nce7'], ['Nf3', 'Nf6', 'Nc3', 'g6', 'd4', 'Bg7', 'e4', 'd6', 'd5', 'O-O'], ['Nf3', 'd6', 'e4', 'e5', 'h3', 'c5', 'Bc4', 'h6', 'Nc3', 'Nf6'], ['c4', 'b6', 'd4', 'Bb7', 'Nc3', 'g6', 'e4', 'Bg7', 'Nf3', 'Nf6'], ['Nf3', 'Nc6', 'Nc3', 'e5', 'd3', 'h6', 'h3', 'd5', 'e3', 'Bb4'], ['e4', 'e5', 'Bc4', 'h6', 'Nf3', 'Nc6', 'O-O', 'Bc5', 'c3', 'd6'], ['Nf3', 'd6', 'e4', 'e5', 'Nc3', 'Nc6', 'h3', 'a6', 'Bc4', 'Bd7'], ['Nf3', 'Nc6', 'd4', 'd5', 'Nc3', 'Bg4', 'h3', 'Bh5', 'b3', 'Nf6'], ['Nf3', 'd5', 'e3', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'e5', 'g3', 'e4'], ['Nf3', 'd5', 'e3', 'Nf6', 'h3', 'Bf5', 'b3', 'e6', 'Bb2', 'Be7'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Nf6'], ['Nf3', 'd5', 'd4', 'Nc6', 'Nc3', 'Nf6', 'h3', 'h6', 'b3', 'e6'], ['Nf3', 'Nc6', 'Nc3', 'e5', 'e4', 'Bc5', 'b3', 'Nf6', 'Bd3', 'Ng4'], ['e4', 'Nc6', 'd4', 'e6', 'a3', 'd6', 'Nc3', 'b6', 'Nf3', 'Bb7'], ['d4', 'e6', 'c4', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Bb4+', 'Bd2', 'Qb6'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nf6', 'Nf3', 'Nc6', 'Nc3', 'Bb4'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Qb3', 'Qxb3', 'axb3', 'Be6', 'Nc3', 'Bxb3'], ['f4', 'f5', 'd4', 'g6', 'e3', 'Nf6', 'Nc3', 'e6', 'g3', 'Bd6'], ['d4', 'c5', 'dxc5', 'e5', 'Bd2', 'Bxc5', 'Na3', 'Qf6', 'Nc4', 'Qxf2#'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'Nc6', 'Nf3', 'e5', 'd5', 'Bb4+'], ['c4', 'e5', 'Nc3', 'Qf6', 'd3', 'Bc5', 'e3', 'Nh6', 'Nd5', 'Qd6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qf3', 'f5', 'Qxf5', 'Nf6', 'Nh3', 'd5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Qf3', 'd6', 'Nh3', 'Bxh3', 'Qxh3', 'Nxe4'], ['e4', 'e5', 'Bc4', 'd6', 'Qf3', 'Nf6', 'Nh3', 'Bxh3', 'Qxh3', 'Nxe4'], ['e4', 'e5', 'Bc4', 'd6', 'Nf3', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e3', 'e5', 'Qh5', 'Bc5', 'Qxe5+', 'Qe7', 'Qxg7', 'Qf6', 'Qg3', 'd5'], ['e4', 'e5', 'd3', 'Qf6', 'Nf3', 'Bc5', 'd4', 'exd4', 'e5', 'Qb6'], ['e4', 'e5', 'Qf3', 'Nc6', 'Bc4', 'Nh6', 'Nh3', 'Nb4', 'Na3', 'Nc6'], ['e4', 'e6', 'Nh3', 'd5', 'Qf3', 'dxe4', 'Qxe4', 'Nf6', 'Qa4+', 'Bd7'], ['e4', 'e5', 'Nf3', 'Bc5', 'd4', 'Bxd4', 'Nxd4', 'exd4', 'Qxd4', 'Qf6'], ['e4', 'e5', 'Qf3', 'Nh6', 'Bc4', 'd6', 'Nh3', 'Bg4', 'Qg3', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Qf3', 'Qxf3', 'Nxf3', 'f5', 'Na3', 'h6'], ['f4', 'e6', 'e4', 'Qf6', 'd4', 'Bd6', 'g3', 'Nh6', 'c4', 'b6'], ['d4', 'e6', 'Bf4', 'Qf6', 'e3', 'Bb4+', 'c3', 'Bd6', 'Nf3', 'Nh6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'exd4', 'Qxd4', 'Bb4+', 'c3', 'Ba5'], ['e4', 'e5', 'Bc4', 'h5', 'd4', 'd6', 'Qf3', 'Nh6', 'Nh3', 'f6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'd5', 'dxe5', 'Nxe4', 'Qxd5', 'Qxd5'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Bc5', 'O-O', 'Nh6', 'h3', 'O-O'], ['e4', 'e6', 'Qf3', 'Nc6', 'Bc4', 'Qe7', 'Nh3', 'h6', 'O-O', 'a6'], ['e4', 'e5', 'Bc4', 'f6', 'Qh5+', 'g6', 'Qg4', 'Nh6', 'Qg3', 'c6'], ['e3', 'e5', 'd4', 'Qf6', 'Nf3', 'd6', 'Nc3', 'Nh6', 'Bb5+', 'Bd7'], ['Nc3', 'd5', 'e4', 'd4', 'Nd5', 'e6', 'Nf4', 'e5', 'Nd5', 'c6'], ['e4', 'Nf6', 'Qf3', 'Nc6', 'Nh3', 'e5', 'Bc4', 'd5', 'exd5', 'Nd4'], ['e4', 'e6', 'Qf3', 'Nc6', 'Bc4', 'Nf6', 'Nh3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Qf3', 'Qf6', 'Nh3', 'Qxf3', 'gxf3', 'Nh6', 'Na3', 'f5'], ['e4', 'e5', 'Qf3', 'f6', 'Bc4', 'Bc5', 'd3', 'h5', 'Be3', 'Bxe3'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Bc5', 'd3', 'Nh6', 'Bxh6', 'Qxh6'], ['e4', 'd5', 'Qf3', 'dxe4', 'Qxe4', 'Nf6', 'Qd3', 'e5', 'Nf3', 'Nc6'], ['e4', 'e5', 'Bc4', 'Qf6', 'Nf3', 'Bc5', 'd3', 'd6', 'O-O', 'Nh6'], ['e4', 'd5', 'Qf3', 'e5', 'exd5', 'Qxd5', 'Qxd5', 'Be6', 'Qxb7', 'Kd7'], ['e4', 'Nf6', 'Qf3', 'Nc6', 'Bc4', 'd6', 'd3', 'a5', 'Bg5', 'Bg4'], ['e4', 'e5', 'd3', 'Qf6', 'Nf3', 'Bc5', 'Nc3', 'd6', 'a3', 'Na6'], ['c4', 'e5', 'a4', 'Qf6', 'a5', 'Bc5', 'e3', 'd6', 'd4', 'exd4'], ['e4', 'd5', 'Qf3', 'e5', 'exd5', 'Bd6', 'Bc4', 'a5', 'd3', 'a4'], ['e4', 'e5', 'd4', 'Qf6', 'f3', 'exd4', 'Bc4', 'Bc5', 'f4', 'Qh4+'], ['e4', 'c6', 'Bc4', 'e5', 'Qf3', 'b5', 'Qxf7#'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'b3', 'Nxe4', 'd4', 'f6'], ['e4', 'e5', 'Nf3', 'Bc5', 'a3', 'd6', 'Nc3', 'Bd7', 'Be2', 'Nf6'], ['e4', 'Nc6', 'd4', 'e6', 'e5', 'd5', 'exd6', 'cxd6', 'Nf3', 'Nb4'], ['e4', 'b6', 'Nf3', 'h5', 'Nc3', 'Rh6', 'd4', 'Rg6', 'Bd3', 'Rxg2'], ['e4', 'b6', 'Nf3', 'h5', 'Bc4', 'Rh6', 'd4', 'Rc6', 'Bd5', 'Rf6'], ['e4', 'd5', 'Qh5', 'dxe4', 'Qxf7+', 'Kxf7', 'Bc4+', 'Be6', 'Bxe6+', 'Kxe6'], ['e4', 'e5', 'd3', 'd5', 'Nh3', 'h6', 'exd5', 'Qxd5', 'Nc3', 'Qd7'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Na5', 'a3', 'Nc4', 'Bxc4', 'Nf6'], ['e4', 'Nc6', 'd4', 'b6', 'd5', 'Nb8', 'Nc3', 'g6', 'Nf3', 'Bg7'], ['e4', 'b6', 'd4', 'Nc6', 'd5', 'Ne5', 'Bf4', 'Ng4', 'h3', 'N4f6'], ['c4', 'd6', 'Nc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Nc3', 'Bd7', 'd3', 'a6'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'b5', 'a4', 'c6', 'axb5', 'cxb5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nxe5', 'Nxe5', 'd4', 'Nxc4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Qd8', 'Nc3', 'Nf6', 'Bb5+', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nc6', 'd3', 'Bb4+', 'c3', 'Ba5'], ['d4', 'd5', 'Nf3', 'Nc6', 'c4', 'dxc4', 'Nc3', 'Nf6', 'Bf4', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bb5', 'Bd7', 'd3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'd3', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'c6', 'Nc3', 'Qd8', 'Bc4', 'Bf5'], ['e4', 'e6', 'd4', 'Bb4+', 'c3', 'Ba5', 'Nf3', 'b5', 'Bf4', 'b4'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Bb4'], ['Nf3', 'Nf6', 'c4', 'Nc6', 'd4', 'Ne4', 'e3', 'e5', 'Bd3', 'Nf6'], ['e4', 'c5', 'Bc4', 'e6', 'Qf3', 'Nc6', 'Qxf7+', 'Kxf7', 'Bxe6+', 'dxe6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nf6', 'dxc6', 'Nxe4'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'e6', 'e3', 'h6', 'Bb5', 'Bd7'], ['c4', 'c5', 'Nf3', 'd6', 'e3', 'Nf6', 'd4', 'cxd4', 'exd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'Bd3', 'Nc5'], ['e4', 'c5', 'Nc3', 'e6', 'd3', 'Nc6', 'Nf3', 'd5', 'exd5', 'exd5'], ['e4', 'c5', 'd3', 'e6', 'Nf3', 'Nc6', 'Be3', 'Nf6', 'Be2', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Bc5'], ['e4', 'a6', 'd4', 'Nc6', 'Nf3', 'f6', 'Bf4', 'g5', 'Bg3', 'd5'], ['d4', 'd5', 'Nf3', 'Bf5', 'Bf4', 'Qd7', 'Ne5', 'Qe6', 'Nd2'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'c6', 'c5', 'Bf5', 'Bd3', 'Bxd3'], ['Nf3', 'd5', 'e3', 'Nf6', 'd4', 'e6', 'c4', 'Na6', 'c5', 'c6'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'Nc6', 'd3', 'Nf6', 'Nf3', 'd5'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'Nc6', 'Nf3', 'g6', 'e3', 'Bg7'], ['e4', 'e5', 'f3', 'Nc6', 'd3', 'Nf6', 'g3', 'd5', 'Bg2', 'dxe4'], ['d4', 'Nf6', 'Nf3', 'Nc6', 'Bf4', 'e5', 'dxe5', 'Nh5', 'Bg5', 'f6'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'Nc6', 'Bc4', 'Nge7', 'O-O', 'd5'], ['d4', 'e5', 'dxe5', 'f6', 'Nf3', 'd5', 'exd6', 'Bxd6', 'Nc3', 'Nc6'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'e6', 'e3', 'Nf6', 'Bd3', 'Bb4+'], ['d4', 'e6', 'Nf3', 'c5', 'dxc5', 'Bxc5', 'e3', 'd5', 'Bb5+', 'Nc6'], ['b3', 'e5', 'c4', 'd5', 'cxd5', 'Qxd5', 'e3', 'Bb4', 'Bc4', 'Qxg2'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qe5', 'Nf3', 'Qa5', 'e3', 'c5'], ['d4', 'd5', 'Nc3', 'Nf6', 'f4', 'Bf5', 'e3', 'Ne4', 'Nxe4', 'dxe4'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Bf5', 'Bxc4', 'Bxb1', 'Rxb1', 'Nf6'], ['e4', 'e5', 'd3', 'd5', 'Nc3', 'd4', 'Nd5', 'c6', 'Nb4', 'Bxb4+'], ['d4', 'd5', 'Nf3', 'Nc6', 'c4', 'Nxd4', 'Nxd4', 'e5', 'Nb3', 'dxc4'], ['e4', 'e5', 'Nc3', 'Bc5', 'Qe2', 'd6', 'Nf3', 'h6', 'd3', 'Ne7'], ['e3', 'e6', 'b3', 'Nf6', 'Bb2', 'Bd6', 'f4', 'O-O', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'd3', 'Nf6', 'Ng5', 'Nxe4'], ['e4', 'g6', 'Nf3', 'Bg7', 'Bc4', 'e6', 'Nc3', 'c6', 'O-O', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Qf6', 'bxc5', 'Nge7'], ['e4', 'e5', 'd4', 'Qf6', 'dxe5', 'Qxe5', 'Nf3', 'Qxe4+', 'Be2', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'h6', 'Nc3', 'Nf6', 'Be2', 'Nd4'], ['Nf3', 'd5', 'e4', 'dxe4', 'Ng5', 'Qd5', 'd3', 'exd3', 'cxd3', 'Qe5+'], ['e4', 'e5', 'Nf3', 'Qe7', 'Nc3', 'Nf6', 'd3', 'Qe6', 'Bg5', 'Bb4'], ['d4', 'Nf6', 'Nf3', 'e5', 'Nxe5', 'Nc6', 'Bf4', 'Bb4+', 'c3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Bxf7+', 'Kxf7', 'Nc3', 'Nf6'], ['c3', 'd5', 'd4', 'e6', 'Bf4', 'g5', 'Be5', 'Nf6', 'Qd2', 'h6'], ['e4', 'c5', 'Nf3', 'g6', 'Bc4', 'Bg7', 'O-O', 'Nc6', 'Nc3', 'e6'], ['a4', 'e5', 'a5', 'd5', 'c3', 'Nf6', 'b4', 'Nc6', 'Nf3', 'Bg4'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e5', 'dxe5', 'Qe7', 'Nf3', 'f5'], ['d4', 'd5', 'c4', 'e6', 'e3', 'dxc4', 'Nf3', 'Bd6', 'Bxc4', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bd3', 'Nd4', 'Nxd4', 'cxd4', 'O-O', 'e5'], ['e4', 'e5', 'Bc4', 'Qe7', 'd4', 'Nf6', 'Nc3', 'exd4', 'Nd5', 'Qxe4+'], ['c3', 'e5', 'e4', 'Nf6', 'Nf3', 'Bc5', 'Nxe5', 'Qe7', 'f4', 'Bb6'], ['c3', 'g6', 'd4', 'Bg7', 'e3', 'Nf6', 'Qd3', 'O-O', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Qe7', 'd4', 'exd4', 'Qxd4', 'Nf6', 'Bg5', 'h6'], ['e4', 'e5', 'f4', 'Qe7', 'Nf3', 'exf4', 'Nc3', 'Nc6', 'Bb5', 'Nf6'], ['c3', 'e5', 'e4', 'Bc5', 'Qe2', 'd5', 'Nf3', 'dxe4', 'Nxe5', 'Nh6'], ['c3', 'e6', 'd4', 'd5', 'e3', 'Nf6', 'Nf3', 'Be7', 'c4', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Qe7', 'Nc3', 'Nd4', 'Nd5', 'Qc5'], ['e4', 'e5', 'f3', 'Nc6', 'b3', 'Nf6', 'Nc3', 'Bb4', 'Nge2', 'O-O'], ['e4', 'e5', 'a3', 'Nf6', 'Nc3', 'Bc5', 'Nf3', 'Ng4', 'd4', 'exd4'], ['c3', 'd5', 'd3', 'e5', 'd4', 'e4', 'e3', 'Be6', 'f3', 'f5'], ['e4', 'e5', 'Nf3', 'd6', 'Bd3', 'Nf6', 'O-O', 'a6', 'b3', 'b5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'Bd6', 'Bg5', 'exd4', 'Qxd4', 'Nc6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'Nxe4', 'dxe5', 'Qe7', 'Nf3', 'f6'], ['e3', 'e5', 'c4', 'Bc5', 'Bd3', 'Qe7', 'Nf3', 'e4', 'Qa4', 'exd3'], ['e4', 'd5', 'Nc3', 'e5', 'exd5', 'Bb4', 'Bc4', 'Qg5', 'Nf3', 'Qg6'], ['e4', 'd6', 'Nf3', 'Nf6', 'Bd3', 'c5', 'O-O', 'c4', 'Bxc4', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Qe2', 'Nd4', 'Nxd4', 'exd4'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'Qe2', 'Nf6'], ['d4', 'd5', 'Nc3', 'Nc6', 'e3', 'Nf6', 'Bb5', 'Bd7', 'a4', 'Ne4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'Bc4', 'Qxe5', 'Nc3', 'Nxe4'], ['d4', 'd5', 'c3', 'Nf6', 'Nf3', 'Nc6', 'Bf4', 'Ne4', 'Nbd2', 'Nxd2'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'd3', 'c6', 'Bg5', 'Be6'], ['e4', 'd5', 'd3', 'dxe4', 'Nc3', 'f5', 'dxe4', 'Qxd1+', 'Nxd1', 'fxe4'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qc3', 'Nf6', 'f3', 'd6'], ['d4', 'd5', 'e3', 'e6', 'Bd3', 'Nf6', 'f4', 'Bd6', 'Nf3', 'O-O'], ['g3', 'd5', 'Nf3', 'Nc6', 'Bg2', 'e5', 'O-O', 'e4', 'Nh4', 'Nf6'], ['f4', 'd6', 'Nf3', 'Nc6', 'e3', 'Nf6', 'Bb5', 'Bd7', 'O-O', 'g6'], ['g3', 'e5', 'Bh3', 'd6', 'Nf3', 'Bxh3', 'Nc3', 'Bg2', 'Rg1', 'Bxf3'], ['Nf3', 'Nf6', 'd4', 'd5', 'Bf4', 'e6', 'c4', 'dxc4', 'a4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bc5', 'Bxc6', 'dxc6'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nf3', 'Be7'], ['d4', 'd5', 'Bf4', 'e6', 'e3', 'Nf6', 'a3', 'c5', 'h3', 'Bd6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['d4', 'e6', 'f4', 'd5', 'Nf3', 'c5', 'c3', 'Nf6', 'e3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qf6', 'O-O', 'a6', 'Ba4', 'b5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'e5', 'O-O', 'Nf6', 'Bxc6', 'bxc6'], ['d4', 'Nf6', 'c4', 'd5', 'e3', 'e6', 'a3', 'c5', 'cxd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bd6'], ['e4', 'g6', 'Nf3', 'Bg7', 'e5', 'd6', 'd4', 'dxe5', 'dxe5', 'Qxd1+'], ['d3', 'd5', 'c4', 'dxc4', 'dxc4', 'Qxd1+', 'Kxd1', 'f5', 'Bf4', 'Nf6'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'e6', 'c5', 'b6', 'b4', 'a5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Bf5', 'Nc3', 'Qc5', 'd4', 'Qd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'exd4', 'e5', 'Ne4', 'Qxd4', 'd5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Nf6', 'e5', 'd5'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'g5', 'Bc4', 'g4', 'O-O', 'gxf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qf6', 'O-O', 'a6', 'Ba4', 'b5'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'a6', 'Bc4', 'Ne7', 'dxe5', 'fxe5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f6', 'Bc4', 'Bg4', 'h3', 'Bh5'], ['e4', 'Nf6', 'e5', 'Ne4', 'd3', 'Ng5', 'Bxg5', 'e6', 'Bxd8'], ['e3', 'e5', 'Be2', 'd5', 'Nf3', 'Nc6', 'O-O', 'Nf6', 'd3', 'Bd6'], ['e4', 'e6', 'Nc3', 'Be7', 'Nf3', 'Nf6', 'Bc4', 'O-O', 'd3', 'Nc6'], ['e3', 'e5', 'Be2', 'Qf6', 'Nf3', 'Qg6', 'd3', 'Qxg2', 'Rf1', 'f5'], ['e4', 'e6', 'Qf3', 'Nf6', 'Nh3', 'Be7', 'Ng5', 'd6', 'd4', 'Bd7'], ['e3', 'e5', 'Be2', 'Qe7', 'Nf3', 'Nc6', 'O-O', 'b6', 'Nc3', 'Bb7'], ['e4', 'e6', 'Nf3', 'Be7', 'Bc4', 'd5', 'Bb5+', 'c6', 'Bd3', 'Nf6'], ['e3', 'c5', 'Be2', 'd5', 'Nf3', 'f5', 'O-O', 'Nc6', 'Nc3', 'e5'], ['d4', 'e6', 'e4', 'Be7', 'Nf3', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb4'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be7', 'Bb3', 'Nf6'], ['e3', 'e5', 'Be2', 'd5', 'Nf3', 'e4', 'Ne5', 'Qg5', 'Rg1', 'Qxe5'], ['d4', 'Nf6', 'h4', 'd5', 'g3', 'e6', 'f3', 'Nh5', 'Bg5', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'd3', 'Bb4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Ng5', 'e6', 'Nc3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Na5', 'Nxe5', 'Nxc4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Bg4', 'd4', 'Bxe2'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'c3', 'Ng4'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'Nf6', 'Bb5', 'Bd6', 'Bxc6', 'dxc6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'g6', 'h3', 'Bg7', 'Nd5', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'c3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'c3', 'd6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bc4', 'e6', 'Nf3', 'a6', 'e5', 'b5'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'd4', 'Nxe4', 'dxc5', 'Nxc5'], ['e4', 'c6', 'd4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'Qb6', 'Bc4', 'e6'], ['e4', 'c5', 'Bc4', 'e6', 'd3', 'Nc6', 'c3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'e6', 'O-O', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'h6', 'd4', 'exd4'], ['e4', 'c5', 'c4', 'Nc6', 'b3', 'Nf6', 'Bd3', 'g6', 'Bb2', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Bd6', 'Nc3', 'Nf6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'd6', 'd4', 'Nf6'], ['e4', 'c5', 'Qf3', 'Nc6', 'Bc4', 'Ne5', 'Qb3', 'Nxc4', 'Qxc4', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'a6'], ['e4', 'c5', 'f4', 'Nc6', 'c3', 'd5', 'e5', 'Bf5', 'Na3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Bc5', 'd3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bg5', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'h6', 'Be3', 'Bxe3'], ['e4', 'c5', 'Qh5', 'd6', 'Bc4', 'e6', 'Qf3', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'h3', 'Nf6', 'c3', 'Nc6', 'd3', 'g6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'Qxf3', 'dxe5'], ['e4', 'c5', 'Bc4', 'e6', 'e5', 'Nc6', 'f4', 'Qh4+', 'g3', 'Qh6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Qh4', 'Nc3', 'a6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Bd3', 'e5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'Na5', 'b4', 'Nc6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e5', 'Nfd7'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Nd7', 'd3', 'Nf6', 'O-O', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'c3', 'Ng4'], ['e4', 'c5', 'Bc4', 'e6', 'e5', 'Nc6', 'c3', 'Nxe5', 'Qe2', 'Nxc4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'dxe5', 'Qxd8+', 'Nxd8'], ['d4', 'Nf6', 'e3', 'g6', 'c4', 'Bg7', 'Nc3', 'O-O', 'Nf3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxd4', 'exd4', 'd3', 'd6'], ['e3', 'e5', 'Bc4', 'Nf6', 'd4', 'Nc6', 'd5', 'Nb4', 'c3', 'Na6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'Bxc3+', 'bxc3', 'Ne7'], ['d3', 'd5', 'e3', 'e5', 'Nf3', 'Nc6', 'e4', 'dxe4', 'dxe4', 'Qxd1+'], ['e4', 'g6', 'e5', 'Bg7', 'Nf3', 'd6', 'exd6', 'cxd6', 'c3', 'Bg4'], ['g3', 'b6', 'Bg2', 'c6', 'b4', 'Nf6', 'b5', 'Bb7', 'bxc6', 'Nxc6'], ['e4', 'g6', 'Qf3', 'Bg7', 'd3', 'd6', 'Be2', 'Nf6', 'h3', 'O-O'], ['e4', 'g6', 'e5', 'Bg7', 'Nf3', 'd6', 'Qe2', 'dxe5', 'Nxe5', 'Bf5'], ['g3', 'e6', 'Bg2', 'g6', 'd3', 'Bg7', 'Nf3', 'd5', 'O-O', 'c6'], ['g3', 'e6', 'Bg2', 'Bc5', 'd3', 'Bxf2+', 'Kxf2', 'Qf6+', 'Bf3', 'd5'], ['g3', 'e6', 'Bg2', 'g5', 'd3', 'f6', 'Nf3', 'Bg7', 'Nc3', 'g4'], ['g3', 'd5', 'Bg2', 'Be6', 'd3', 'Nc6', 'Nc3', 'Nf6', 'Bg5', 'h6'], ['d4', 'd5', 'Bf4', 'c6', 'Nc3', 'Bf5', 'e3', 'e6', 'Nf3', 'Bd6'], ['e4', 'c6', 'Nc3', 'd5', 'e5', 'Bf5', 'd4', 'e6', 'a3', 'c5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c6', 'Qd3', 'Ne7', 'g3', 'Ng6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'd6'], ['Nf3', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'e3', 'Nc6', 'a3', 'Bc5'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Bf5', 'c3', 'Nf6', 'Nd2', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'd3', 'd6'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nb6', 'Nf3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Qg4', 'Nc6', 'Nf3', 'cxd4'], ['b3', 'b6', 'Bb2', 'Bb7', 'f3', 'd6', 'e4', 'e6', 'd4', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Nc6', 'Nxd5'], ['e4', 'd6', 'd4', 'Nd7', 'c4', 'e5', 'd5', 'c6', 'Nc3', 'Ngf6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'e3', 'a6', 'Nf3', 'Be7'], ['e4', 'c5', 'Be2', 'e6', 'f4', 'Qc7', 'd3', 'Nc6', 'Nf3', 'Be7'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nf6', 'Nc3', 'Bb4', 'Bd2', 'O-O'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'Nf3', 'g6', 'e4', 'Nf6'], ['e4', 'e6', 'Qe2', 'c6', 'b3', 'd5', 'Bb2', 'd4', 'Nf3', 'c5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'g6', 'Bb5', 'Na5', 'd4', 'a6'], ['d4', 'd5', 'c4', 'e6', 'c5', 'b6', 'b4', 'a5', 'Ba3', 'axb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Ne7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'Nc3', 'a6', 'd3', 'h6'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'Nf6', 'Bb5', 'Bd6', 'Ne2', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'd6'], ['e4', 'e6', 'b3', 'Nc6', 'Bb2', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Nge7'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nxe5', 'Qe7', 'd4', 'Bd6', 'Nc3', 'c6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'e6', 'Nf3', 'c5', 'c3', 'Nc6'], ['d4', 'e6', 'Bf4', 'd6', 'Nc3', 'c6', 'e4', 'Nd7', 'e5', 'Nb6'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'Bd6', 'Ne5', 'f6', 'Nd3', 'Nc6'], ['d4', 'd5', 'Bf4', 'Bf5', 'c4', 'dxc4', 'Qa4+', 'Bd7', 'Qxc4', 'Nc6'], ['e4', 'c5', 'Bc4', 'Nf6', 'Nf3', 'h6', 'O-O', 'Nxe4', 'Qe2', 'Nd6'], ['d4', 'd5', 'Bf4', 'Bf5', 'c4', 'dxc4', 'Qa4+', 'Nd7', 'Qxc4', 'e6'], ['d4', 'd5', 'Nf3', 'c6', 'Bf4', 'Bf5', 'e3', 'Qb6', 'b3', 'e6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Bf5', 'c4', 'c6', 'cxd5', 'cxd5'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'e5', 'dxe5', 'Nxe5', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Bc4', 'Nf6', 'd3', 'd6', 'h3', 'g6', 'c3', 'Bg7'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qc3', 'Nf6', 'Nf3', 'Nxe4'], ['d4', 'e6', 'Bf4', 'h6', 'e3', 'f5', 'Nf3', 'g5', 'Be5', 'Rh7'], ['Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'O-O', 'c4', 'c5'], ['Nf3', 'd6', 'd4', 'Nd7', 'g3', 'Ngf6', 'Bg2', 'g6', 'O-O', 'Bg7'], ['Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'O-O', 'c4', 'd6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nc6', 'Nf3', 'd6'], ['Nf3', 'e6', 'g3', 'c6', 'Bg2', 'd5', 'O-O', 'Nf6', 'c4', 'Be7'], ['Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'c5', 'c4', 'Nc6'], ['e4', 'c5', 'b4', 'e6', 'bxc5', 'Bxc5', 'd4', 'Bb6', 'c3', 'Ne7'], ['Nf3', 'e6', 'g3', 'b6', 'Bg2', 'Bb7', 'O-O', 'Nf6', 'c4', 'g6'], ['b3', 'e6', 'Bb2', 'd5', 'e3', 'c5', 'Be2', 'Nc6', 'Nf3', 'Qb6'], ['d4', 'e6', 'c4', 'd5', 'cxd5', 'exd5', 'Nc3', 'Nc6', 'e3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nc3', 'a6'], ['e4', 'e6', 'f4', 'd5', 'exd5', 'exd5', 'd4', 'Nc6', 'Nf3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'c5', 'a3', 'Nf6', 'b4', 'b6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nc3', 'Bg7'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'c5', 'Bb5+', 'Nc6', 'O-O', 'Nf6'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'Nf6', 'cxd5', 'exd5', 'Bg5', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bb5', 'Nf6', 'O-O', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'a6', 'Ba4', 'b5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bd3', 'Nc6', 'c4', 'Nxd4'], ['e4', 'e6', 'd4', 'a6', 'Nf3', 'c6', 'Nc3', 'h6', 'Bc4', 'd5'], ['e3', 'd6', 'Nc3', 'e5', 'd4', 'g6', 'Bd3', 'Nd7', 'Nf3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Bd6', 'Nc3', 'Nf6', 'd3', 'O-O', 'Bg5', 'h6'], ['g3', 'e5', 'Bh3', 'd6', 'Bxc8', 'Qxc8', 'Nf3', 'f6', 'e4', 'g6'], ['e4', 'e5', 'c4', 'Nf6', 'Nc3', 'd6', 'f3', 'c5', 'd3', 'Nc6'], ['e4', 'b6', 'd3', 'Nc6', 'Be3', 'g6', 'Nc3', 'Bg7', 'a4', 'Bb7'], ['e3', 'e5', 'd4', 'Nc6', 'f4', 'd6', 'd5', 'Nb4', 'h3', 'c5'], ['e4', 'e5', 'Bc4', 'g6', 'Bxf7+', 'Kxf7', 'Nf3', 'Nf6', 'Nxe5+', 'Kg7'], ['e4', 'Nf6', 'f3', 'e5', 'g4', 'd6', 'Nc3', 'Nfd7', 'b3', 'f6'], ['e4', 'e5', 'Nf3', 'f6', 'd3', 'Ne7', 'c4', 'g5', 'Bxg5', 'fxg5'], ['e4', 'c5', 'c4', 'd6', 'd3', 'Nc6', 'Ne2', 'g6', 'g3', 'Bg7'], ['e3', 'e5', 'Qh5', 'h6', 'Qxe5+', 'Ne7', 'Bc4', 'd6', 'Qf4', 'g5'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'e6', 'Bg5', 'Be7'], ['e4', 'Nf6', 'f3', 'd5', 'Nc3', 'c6', 'd4', 'Qa5', 'Bd2', 'b5'], ['e4', 'e5', 'f4', 'exf4', 'd3', 'g5', 'b3', 'Bg7', 'c3', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'f6', 'dxe5', 'fxe5'], ['e3', 'd5', 'Nc3', 'e6', 'f4', 'Nf6', 'Nf3', 'Nc6', 'g3', 'Bd6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'Nc6', 'd4', 'f5', 'Bg5', 'Be7'], ['e4', 'd5', 'c4', 'dxe4', 'Nc3', 'Nf6', 'g3', 'b6', 'Bg2', 'Bb7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'Nxe5', 'Nc6', 'Bb5', 'Nb4'], ['d4', 'Nf6', 'f3', 'e6', 'e4', 'd5', 'e5', 'Nfd7', 'Nc3', 'c5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Qe4+', 'Qe2', 'Qxc2', 'Na3', 'Qg6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qa4', 'e6', 'Bb5', 'd5'], ['e4', 'e5', 'Nf3', 'Bc5', 'b4', 'Bxb4', 'c3', 'Bc5', 'd4', 'exd4'], ['e4', 'e5', 'f4', 'Qh4+', 'g3', 'Qf6', 'Nf3', 'exf4', 'gxf4', 'Qxf4'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Qe7', 'Qxh8', 'Qxe4+', 'Ne2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'g6', 'Bc4', 'Bc5', 'Ng5', 'O-O'], ['d4', 'd5', 'f4', 'Nc6', 'Nf3', 'Nf6', 'e3', 'e6', 'Bd3', 'Bd6'], ['e4', 'Nf6', 'c4', 'Nxe4', 'f3', 'Nf6', 'Nc3', 'e5', 'd3', 'Nc6'], ['e4', 'c5', 'Nc3', 'Nf6', 'Bc4', 'e6', 'd3', 'b6', 'Nf3', 'Bb7'], ['e4', 'c5', 'Nc3', 'Nf6', 'e5', 'Nh5', 'g4', 'Nf4', 'Qf3', 'g5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'g3', 'Bb4', 'Bg2', 'Bxc3'], ['e4', 'e5', 'Be2', 'Nc6', 'Nf3', 'Nf6', 'Bc4', 'h6', 'h3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'O-O', 'd6'], ['e4', 'c6', 'Nf3', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nf6', 'Nc3', 'Bg4'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'c6', 'd4', 'exd4', 'Nxd4', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Qb6', 'Nc3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'O-O', 'd6'], ['d4', 'd5', 'Nf3', 'Nc6', 'Nc3', 'e6', 'Ne5', 'Bb4', 'Nxc6', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'd6', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'exd4', 'Nxd4', 'Ne5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxe5', 'Nxb5', 'Qf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'd6', 'dxe5', 'dxe5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'd4', 'exd4', 'Na4', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'O-O', 'Bc5'], ['d4', 'd5', 'c4', 'e5', 'e3', 'Bb4+', 'Nc3', 'exd4', 'exd4', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd6', 'Nf3', 'Bf5', 'Nb5', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'h6', 'd4', 'exd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'e6', 'd4', 'Qa5+', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'Nf6', 'Nc3', 'd6', 'd4', 'd5', 'e5', 'Nfd7', 'Nxd5', 'Nb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'c3', 'Nxf3+', 'Qxf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'h3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'Qe2', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd3', 'Ne7', 'Bg5', 'f6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nf6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxe5', 'Qg5', 'Bxf7+', 'Ke7'], ['e4', 'e5', 'd3', 'Nf6', 'c4', 'Bb4+', 'Nc3', 'O-O', 'Ne2', 'd6'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'd4', 'Nf3', 'Nc6', 'Bg5', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nxd4', 'Nxd4', 'exd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd6', 'h3', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'O-O'], ['e4', 'd6', 'd4', 'c5', 'dxc5', 'dxc5', 'Qxd8+', 'Kxd8', 'Nf3', 'Nc6'], ['c3', 'g6', 'Qb3', 'Bg7', 'e3', 'e6', 'd4', 'd5', 'Nf3', 'Nd7'], ['c4', 'g6', 'b3', 'Bg7', 'Bb2', 'Bxb2', 'Qc2', 'Bxa1', 'd4', 'Bxd4'], ['Nc3', 'g6', 'b4', 'Bg7', 'd4', 'd5', 'Be3', 'e6', 'Bf4', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'O-O', 'O-O'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Bf5', 'Bc4', 'h6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'e5', 'd3', 'Nc6', 'Nc3', 'Nf6', 'Nf3', 'Bc5', 'a3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Ne5', 'f4', 'Ng6'], ['Nc3', 'Nf6', 'e4', 'e5', 'f4', 'exf4', 'g4', 'fxg3', 'hxg3', 'Bc5'], ['e4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'e5', 'Bc4', 'd5', 'exd5', 'Bd6'], ['d4', 'd5', 'e3', 'c5', 'c3', 'cxd4', 'cxd4', 'e6', 'a3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'Qh4', 'Nf3', 'Qxe4+', 'Be2', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'Bb4', 'dxe5', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'a6', 'd3', 'b5'], ['d4', 'd5', 'Nc3', 'e6', 'e4', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'dxe4'], ['Nf3', 'd5', 'd4', 'Nc6', 'Nbd2', 'g6', 'e4', 'e6', 'e5', 'Bg7'], ['d3', 'Nf6', 'd4', 'd6', 'e3', 'Nbd7', 'Nf3', 'e5', 'Nc3', 'Be7'], ['d4', 'c6', 'Nf3', 'd6', 'h3', 'e5', 'c3', 'exd4', 'Nxd4', 'c5'], ['d4', 'Nc6', 'Nf3', 'e6', 'e3', 'Bb4+', 'Bd2', 'Na5', 'Bxb4', 'Nc4'], ['d4', 'd6', 'e4', 'e5', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8', 'Nf3', 'f6'], ['d4', 'c6', 'Bg5', 'Qb6', 'Qc1', 'Qb5', 'b3', 'd6', 'a4', 'Qxa4'], ['e4', 'e5', 'Bc4', 'd5', 'exd5', 'c6', 'Nc3', 'b5', 'Bd3', 'b4'], ['e4', 'd6', 'd4', 'g5', 'g4'], ['d4', 'Nc6', 'Nf3', 'd6', 'b4', 'Bg4', 'Ng5', 'd5', 'h3', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nb4', 'Bd2', 'c6'], ['e4', 'h5', 'd4', 'a6', 'Nf3', 'Nc6', 'd5', 'Na5', 'Nc3', 'c6'], ['a3', 'e5', 'Ra2', 'd5', 'Nc3', 'Be6', 'Nxd5', 'Bxd5', 'e3', 'Bxa2'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'b5', 'Bxb5+', 'Bd7', 'Qe2', 'a5'], ['e4', 'd6', 'd4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Bd7'], ['e4', 'e5', 'd3', 'Bc5', 'Qg4', 'g6', 'Bg5', 'f6', 'Bxf6', 'Nxf6'], ['e4', 'Nh6', 'Bc4', 'f6', 'd3', 'e6', 'Bxh6', 'Bb4+', 'c3', 'O-O'], ['e4', 'e5', 'd3', 'Nc6', 'h4', 'Bc5', 'h5', 'Qf6', 'Rh4', 'Qxf2#'], ['e4', 'e5', 'c4', 'Nc6', 'd4', 'Nxd4', 'h4', 'Be7', 'h5', 'h6'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'Nxd5', 'Qxd5', 'd3', 'Bc5'], ['e4', 'c5', 'Nf3', 'e6', 'c4', 'Nc6', 'Nc3', 'a6', 'd3', 'd6'], ['d4', 'd5', 'Nf3', 'Nc6', 'c4', 'e6', 'e3', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Qxd4', 'c5', 'Qc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'Bg4', 'exd6', 'Bxd6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'cxd4'], ['e4', 'g6', 'd4', 'b6', 'Be3', 'Bb7', 'Bd3', 'Bg7', 'Nf3', 'e6'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'd5', 'e5', 'd4', 'cxd4', 'cxd4'], ['Nf3', 'd5', 'e3', 'Nc6', 'd4', 'Bg4', 'Be2', 'Nf6', 'O-O', 'e6'], ['e4', 'c5', 'c3', 'd5', 'e5', 'Nc6', 'd4', 'Bf5', 'Bd3', 'Bxd3'], ['d4', 'd5', 'c4', 'e6', 'g3', 'Nf6', 'Nf3', 'Nc6', 'Bg2', 'dxc4'], ['e4', 'e5', 'Bc4', 'Nc6', 'c3', 'd6', 'h3', 'Be7', 'Nf3', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'e5', 'd4', 'cxd4', 'cxd4', 'exd4'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qh5', 'Qf6', 'Nc3', 'g6', 'Qe2', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bg4'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'd5', 'exd5', 'exd5', 'd4', 'c4'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Be7', 'c3', 'Nf6', 'd3', 'd5'], ['e4', 'c5', 'c3', 'e6', 'd4', 'd5', 'e5', 'Nc6', 'f4', 'Qb6'], ['e4', 'c5', 'c3'], ['e4', 'c5', 'c3', 'e6', 'd4', 'd5', 'e5', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e6', 'Nf3', 'd5', 'Ne5', 'Nf6', 'd3', 'Bd6', 'Bg5', 'Bxe5'], ['d4', 'e6', 'e4', 'd5', 'Nc3', 'Nc6', 'Nf3', 'Bb4', 'a3', 'Bxc3+'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nc6'], ['a4', 'e5', 'Nc3', 'Nf6', 'e4', 'Nc6', 'Bb5', 'a6', 'Bc4', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd4', 'exd4'], ['e4', 'e5', 'f4', 'exf4', 'd4', 'd6', 'Bxf4', 'Nf6', 'e5', 'dxe5'], ['g4', 'e5', 'Nf3', 'Nc6', 'e3', 'e4', 'd3', 'exf3', 'Qxf3', 'd5'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'e6', 'c3', 'Bd6', 'Bxd6', 'Qxd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Qe2', 'Qxe2+', 'Bxe2', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd3', 'c6', 'Bd2', 'Qc7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'Be2', 'exd4', 'Nxd4', 'Bxe2'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'c6', 'Bg5', 'Be7', 'Nf3', 'd5'], ['e4', 'd6', 'd4', 'e6', 'Nf3', 'c6', 'Nc3', 'Nd7', 'Be3', 'Ne7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nc3', 'Be7'], ['c3', 'd5', 'e3', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bg4', 'Bxc6+', 'bxc6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nf6', 'e3', 'e6', 'a3', 'c5'], ['Nf3', 'd5', 'd4', 'c5', 'Be3', 'e6', 'Nc3', 'cxd4', 'Bxd4', 'Nc6'], ['d4', 'd6', 'c4', 'e6', 'Nc3', 'Nf6', 'e4', 'Be7', 'Nf3', 'O-O'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'e6', 'Nc3', 'exd5', 'cxd5', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'h6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'Bxc3+', 'Qxc3', 'Nf6'], ['d4', 'd5', 'Bf4', 'Nf6', 'c4', 'Bf5', 'e3', 'e6', 'Nc3', 'Nbd7'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Bb4+', 'Bd2', 'Bd6', 'Nc3', 'dxc4'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'e5', 'Nc3', 'a6', 'a4', 'Qa5'], ['e4', 'c5', 'Nc3', 'Nc6', 'd3', 'g6', 'Bf4', 'Bg7', 'Rb1', 'a6'], ['d4', 'd5', 'c4', 'Bf5', 'cxd5', 'Qxd5', 'Nc3', 'Qd6', 'e4', 'Bg6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'c6', 'e4', 'e6', 'Bxc4', 'b5'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Bd6', 'Nc3', 'c6', 'e3', 'Nf6'], ['d4', 'd5', 'Nf3', 'c5', 'dxc5', 'e6', 'Be3', 'Nc6', 'a3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'd6', 'Bg5', 'Be7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'Bb5', 'a6', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'h6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'a4', 'Nf6', 'd3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qf6', 'd4', 'exd4', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nf3', 'd6', 'd3', 'Bg4', 'h3', 'Bh5'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'c5', 'c3', 'cxd4', 'cxd4', 'Qa5+'], ['b3', 'd5', 'Bb2', 'c5', 'f3', 'Nc6', 'Nh3', 'Bxh3', 'gxh3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e5', 'Bxc4', 'exd4', 'Qxd4', 'Qxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bd7', 'Re1', 'Nf6'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'Bb4', 'Bg2', 'Bxc3', 'bxc3', 'd6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'c5', 'dxc5', 'Nc6', 'Nf3', 'Bg4'], ['e4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Bb5', 'Qc7', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'e6', 'd4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bg5', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'a3', 'Nf6', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'd6', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'b5'], ['d4', 'd5', 'Nf3', 'c5', 'g3', 'Bg4', 'Bg2', 'Nc6', 'c3', 'e6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'd4', 'd6', 'Nf3', 'Nxe4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Nf6', 'h3', 'Bf5'], ['d4', 'd5', 'Bf4', 'c5', 'c3', 'Bf5', 'e3', 'e6', 'Bd3', 'Bxd3'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd3', 'Nf6', 'Bd2', 'c6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Bb5', 'Qb6'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Bb4', 'Nxe5', 'Qh4', 'Qf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'f5', 'exf5', 'd6', 'd4', 'e4'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nc6', 'Bb5', 'Bg4', 'Bxc6+', 'bxc6'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'b5', 'a4', 'c6', 'axb5', 'cxb5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Qd8', 'd4', 'Nf6', 'Nc3', 'Bg4'], ['e4', 'd5', 'f3', 'dxe4', 'fxe4', 'e5', 'Nf3', 'Bg4', 'Bc4', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'cxd4', 'cxd4', 'Nc6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'Bd7', 'axb5', 'Bxb5'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'Nf6', 'c4', 'Nbd7', 'Nc3', 'e6'], ['d4', 'Nf6', 'Nf3', 'g6', 'c4', 'Bg7', 'Nc3', 'O-O', 'e4', 'd6'], ['Nf3', 'd5', 'g3', 'Nf6', 'Bg2', 'e6', 'O-O', 'Bd6', 'd3', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'Nf3', 'O-O'], ['d4', 'Nf6', 'Nf3', 'e6', 'e3', 'c5', 'Bd3', 'b6', 'c4', 'Bb7'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'Nf3', 'c6'], ['e4', 'c5', 'Nf3', 'a6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf3', 'd6'], ['d4', 'b6', 'e4', 'Bb7', 'Bd3', 'd6', 'Nf3', 'a6', 'O-O', 'Nd7'], ['e4', 'c5', 'f4', 'e5', 'Nf3', 'exf4', 'Bc4', 'Nc6', 'Nc3', 'Nf6'], ['d4', 'd5', 'Bg5', 'f6', 'Bf4', 'Nc6', 'h3', 'e5', 'Be3', 'Bf5'], ['d4', 'Nf6', 'Nf3', 'e6', 'e3', 'd5', 'c4', 'c5', 'Be2', 'cxd4'], ['e3', 'e5', 'd4', 'exd4', 'exd4', 'Nf6', 'c4', 'Bb4+', 'Nc3', 'Ne4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'dxc4'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'dxc4', 'Qxd8+', 'Kxd8', 'e3', 'Bf5'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'e5', 'Bc4', 'Nf6'], ['d4', 'd5', 'c3', 'Bf5', 'c4', 'c6', 'cxd5', 'cxd5', 'Nc3', 'Nf6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'dxc4', 'e3', 'Bf5', 'Bxc4', 'e6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'd6', 'Bc4', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'c3', 'Nxc3', 'Nf6', 'Nf3', 'e6'], ['d4', 'd5', 'c3', 'e6', 'c4', 'Nf6', 'Bg5', 'Be7', 'Nc3', 'h6'], ['d4', 'Nf6', 'Nf3', 'd5', 'e3', 'Nbd7', 'c4', 'e6', 'Bd3', 'c6'], ['e4', 'c5', 'Nf3', 'a6', 'g3', 'd6', 'Bg2', 'e5', 'O-O', 'Nf6'], ['e4', 'c5', 'Nf3', 'a6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf3', 'd6'], ['d4', 'Nf6', 'Nf3', 'c6', 'e3', 'd5', 'c4', 'Bf5', 'cxd5', 'cxd5'], ['d4', 'Nf6', 'Nf3', 'g6', 'e3', 'Bg7', 'Bd3', 'd5', 'h3', 'b6'], ['d4', 'e6', 'e4', 'd5', 'exd5', 'exd5', 'Bf4', 'Nf6', 'Bd3', 'Bd6'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nc6', 'Bb5', 'Bd7', 'a3', 'a6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Bd3', 'e6', 'Nc3', 'Bb4'], ['e4', 'c5', 'Nf3', 'a6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb3', 'Nf6'], ['e4', 'c5', 'f4', 'Nc6', 'Nf3', 'd6', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'Nf3', 'O-O'], ['d4', 'e6', 'e4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Nf3', 'c6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e3', 'h6'], ['Nf3', 'd5', 'b3', 'Nc6', 'Ba3', 'Bg4', 'Nc3', 'g6', 'e3', 'Bg7'], ['e4', 'c5', 'd4', 'cxd4', 'Nf3', 'Nc6', 'Bc4', 'e6', 'c3', 'd5'], ['e4', 'c5', 'b4', 'cxb4', 'd4', 'd6', 'f4', 'Nf6', 'Bd3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Qe2', 'Bc5', 'b4', 'Bxb4'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Be7', 'Bc4', 'Bh4+', 'Kf1', 'Nc6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'h6', 'Nf3', 'Bg4', 'e3', 'Bxf3'], ['d4', 'Nf6', 'c4', 'e6', 'Bg5', 'Be7', 'Nc3', 'd5', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'h3', 'Nf6'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'g6', 'Bg5', 'e6', 'e4', 'Nbd7'], ['e4', 'e5', 'Nc3', 'Bb4', 'Nf3', 'Nc6', 'a3', 'Ba5', 'b4', 'Bb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'd6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'e6', 'Nc3', 'Bb4'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'g6', 'e4', 'Bg7', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'd6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'Nf3', 'h6'], ['d4', 'd5', 'Nf3', 'c5', 'c3', 'e6', 'e3', 'Nf6', 'Nbd2', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Nbd7', 'e3', 'Be7'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'd5', 'exd6', 'Bxd6', 'Nc3', 'Bg4'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'Nc6', 'Nc3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'Bb5', 'Bg4', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Nxd8'], ['e4', 'e6', 'd3', 'd5', 'Nd2', 'd4', 'e5', 'c5', 'c3', 'Nc6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f3', 'O-O'], ['e4', 'Nc6', 'Nf3', 'e5', 'd4', 'g6', 'd5', 'Nd4', 'c4', 'Nxf3+'], ['Nf3', 'Nf6', 'd4', 'g6', 'Bg5', 'Bg7', 'Qd2', 'O-O', 'Bh6', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'f5', 'exf5', 'e4', 'Qe2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'd6', 'Bc4', 'Nf6', 'Nc3', 'g6', 'd3', 'Bg7', 'Nf3', 'c6'], ['e4', 'd6', 'd4', 'Nf6', 'f3', 'g6', 'd5', 'Bg7', 'Bc4', 'c5'], ['d4', 'd5', 'Nc3', 'Bf5', 'e3', 'e6', 'g4', 'Bg6', 'Nf3', 'Nf6'], ['d4', 'f5', 'f4', 'e6', 'e3', 'Nf6', 'Nf3', 'Bb4+', 'Bd2', 'Bxd2+'], ['b3', 'Nf6', 'Bb2', 'e5', 'Bxe5'], ['e4', 'b6', 'd4', 'Bb7', 'Bd3', 'e6', 'Nf3', 'c5'], ['e4', 'e5', 'f4', 'exf4', 'Bc4', 'Qe7', 'Qf3', 'g5', 'd4', 'Bg7'], ['e4', 'g6', 'd4', 'Bg7', 'c4', 'd6', 'Nc3', 'Nf6', 'f4', 'O-O'], ['g3', 'd5', 'Nf3', 'Nf6', 'Bg2', 'Bf5', 'O-O', 'e6', 'd3', 'Bd6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'Nf3', 'Nf6', 'Bg5', 'Bb4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'e3', 'Nbd7', 'Nf3', 'c5'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Na5', 'c4', 'Nf6', 'Bd3', 'c6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'd6', 'Nf3', 'Bxc3+'], ['c4', 'c6', 'Nc3', 'Nf6', 'd4', 'd5', 'e3', 'e6', 'Nf3', 'Bd6'], ['f4', 'f5', 'd4', 'd5', 'e3', 'Nf6', 'Nf3', 'e6', 'c3', 'c5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nf6', 'Be2', 'e6'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'g6', 'Bc4', 'Bg7', 'O-O', 'Bxc3'], ['e4', 'd5', 'Nc3', 'd4', 'Bb5+', 'c6', 'Bxc6+', 'Nxc6', 'Nb5', 'e5'], ['e4', 'e5', 'Nc3', 'Bb4', 'Rb1', 'b6', 'a3', 'Bxc3', 'bxc3', 'Nf6'], ['d3', 'd5', 'f3', 'e6', 'e4', 'c6', 'Nc3', 'Qh4+', 'g3', 'Qd8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'd4', 'd5', 'exd5', 'exd4', 'd6', 'Qxd6', 'Nf3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'Nc6', 'Nc3', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nxe4', 'Nxe5', 'Nd6', 'Bd3', 'g6'], ['d4', 'Nf6', 'Nc3', 'g6', 'Bf4', 'Bg7', 'Nb5', 'Nc6', 'Nxc7+', 'Kf8'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nd7', 'exd5', 'Ndf6', 'dxe6', 'fxe6'], ['d4', 'd5', 'c4', 'g6', 'Nf3', 'Nc6', 'a4', 'dxc4', 'e3', 'e5'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'Bf5', 'Bd3', 'Bg4', 'Be2', 'Bf5'], ['e4', 'd5', 'Nc3', 'Be6', 'Qf3', 'dxe4', 'Nxe4', 'g6', 'a4', 'Nc6'], ['d4', 'd5', 'f4', 'e6', 'e4', 'Qh4+', 'g3', 'Qd8', 'exd5', 'exd5'], ['e4', 'd5', 'Nc3', 'd4', 'Nd5', 'e6', 'Nf4', 'e5', 'Bc4', 'exf4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Bb4', 'a3', 'Bd6'], ['e4', 'e5', 'Bc4', 'd6', 'Qh5', 'Nh6', 'Qxf7+', 'Nxf7', 'Bxf7+', 'Kxf7'], ['e4', 'e5', 'Bc4', 'd6', 'Qh5', 'Nh6'], ['e4', 'e5', 'Bc4', 'd6', 'Qh5', 'Nc6', 'Qxf7#'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bd6', 'O-O', 'a6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nf6', 'e4', 'Nc6', 'e5', 'Qxd4'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'Bb4', 'Bf4', 'Nf6', 'e3', 'O-O'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'e5', 'Nh3', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nc6', 'd5', 'Ne5', 'e4', 'Bg4'], ['e4', 'c5', 'd4', 'Na6', 'c3', 'e6', 'Nf3', 'Bd6', 'Be2', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'd4', 'cxd4'], ['Nf3', 'Nc6', 'b3', 'e5', 'Bb2', 'd6', 'e3', 'Bg4', 'Bb5', 'e4'], ['e4', 'b6', 'd4', 'Bb7', 'd5', 'e6', 'Nc3', 'Bb4', 'Bd2', 'Nf6'], ['Nf3', 'Nc6', 'b3', 'e5', 'Bb2', 'Bd6', 'e3', 'h6', 'd4', 'e4'], ['c4', 'b6', 'Nc3', 'Bb7', 'e4', 'Nf6', 'd3', 'e6', 'Nf3', 'Bb4'], ['e4', 'b6', 'd4', 'Bb7', 'f3', 'Nf6', 'Bd3', 'e6', 'Bg5', 'c5'], ['d4', 'g6', 'e4', 'b6', 'c4', 'Bb7', 'd5', 'Bg7', 'Qc2', 'e6'], ['Nf3', 'd5', 'b3', 'Nc6', 'Bb2', 'e5', 'Nxe5', 'Qf6', 'e3', 'Nxe5'], ['d4', 'b6', 'g3', 'Bb7', 'f3', 'Nf6', 'Bg5', 'e6', 'Bxf6', 'Qxf6'], ['Nf3', 'd5', 'b3', 'Bg4', 'Bb2', 'Bxf3', 'exf3', 'Nc6', 'Bb5', 'Qd7'], ['Nf3', 'Nc6', 'b3', 'Nf6', 'Bb2', 'd5', 'e3', 'Bg4', 'd4', 'g6'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Nf6', 'Bc4', 'e6', 'd3', 'Bb4'], ['Nf3', 'e6', 'b3', 'b6', 'Bb2', 'd5', 'e3', 'Nf6', 'Ne5', 'Qd6'], ['e4', 'b6', 'd4', 'Bb7', 'f3', 'Nf6', 'Bd3', 'e6', 'Be3', 'c5'], ['d4', 'b6', 'c3', 'Bb7', 'e3', 'Nf6', 'Nh3', 'e6', 'Nd2', 'c5'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'Nf6', 'f3', 'e6', 'a3', 'c5'], ['e4', 'b6', 'Nf3', 'Bb7', 'd4', 'Bxe4', 'Bf4', 'Nf6', 'Bd3', 'Bb7'], ['d4', 'b6', 'c4', 'Bb7', 'f3', 'Nf6', 'Bg5', 'e6', 'Nc3', 'Bb4'], ['Nf3', 'c5', 'b3', 'd6', 'Bb2', 'Nc6', 'e3', 'Nf6', 'Bb5', 'e6'], ['Nf3', 'd5', 'b3', 'e5', 'Nxe5', 'Bd6', 'Nf3', 'Nf6', 'Bb2'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'Nf6', 'Bd3', 'd5', 'e5', 'Nfd7'], ['e4', 'b6', 'Bd3', 'Bb7', 'Nc3', 'Nf6', 'Nf3', 'e6', 'O-O', 'Bb4'], ['Nf3', 'g6', 'b3', 'Nf6', 'Bb2', 'Bg7', 'e3', 'O-O', 'd4', 'd6'], ['Nf3', 'd5', 'b3', 'Nc6', 'Bb2', 'f6', 'e3', 'e5', 'Bb5', 'Bd6'], ['e4', 'b6', 'Nf3', 'Bb7', 'Qe2', 'Nf6', 'd4', 'Bxe4', 'Nc3', 'Bb7'], ['Nf3', 'd5', 'b3', 'Nc6', 'Bb2', 'Bf5', 'a3', 'e5', 'Nxe5', 'Nxe5'], ['e4', 'b6', 'd4', 'Bb7', 'd5', 'Nf6', 'Nc3', 'e6', 'Nf3', 'exd5'], ['e4', 'b6', 'd4', 'Bb7', 'd5', 'Nf6', 'Nc3', 'e6', 'dxe6', 'fxe6'], ['Nf3', 'e6', 'b3', 'g5', 'd3', 'd5', 'Bxg5', 'f6', 'Bh4', 'Nc6'], ['e4', 'b6', 'f4', 'Bb7', 'd3', 'Nf6', 'Be3', 'e6', 'Nd2', 'g6'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Nf6', 'e5', 'Nd5', 'Nxd5', 'Bxd5'], ['Nf3', 'd5', 'b3', 'Bf5', 'Bb2', 'h6', 'e3', 'Qd6', 'Bb5+', 'c6'], ['Nf3', 'e6', 'b3', 'd5', 'Bb2', 'Nh6', 'e3', 'f6', 'c4', 'e5'], ['e3', 'b6', 'g3', 'Bb7', 'Nf3', 'Nf6', 'Bg2', 'e6', 'O-O', 'd5'], ['e4', 'b6', 'd4', 'Bb7', 'd5', 'Nf6', 'Nc3', 'e6', 'e5', 'Nxd5'], ['Nf3', 'd6', 'b3', 'Bg4', 'Bb2', 'c5', 'e3', 'Bh5', 'd3', 'Nc6'], ['e4', 'b6', 'd4', 'e6', 'Bd3', 'Bb7', 'Nf3', 'Nf6', 'Nc3', 'Bb4'], ['Nf3', 'e5', 'b3', 'Nc6', 'Bb2', 'd6', 'e3', 'e4', 'Nd4', 'Nxd4'], ['Nf3', 'e6', 'b3', 'Nc6', 'Bb2', 'Nf6', 'e3', 'Be7', 'd4', 'd5'], ['Nc3', 'b6', 'b4', 'Bb7', 'Ba3', 'e6', 'Qb1', 'Nf6', 'Nf3', 'Be7'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'Bf5', 'e3', 'e6', 'Bd3', 'Bg6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nf3', 'Nc6', 'd3', 'd6', 'Nbd2', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd4', 'exd4', 'Nxd4', 'Nxe4'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'O-O', 'f5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'h3', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Qe2', 'Qf5', 'd4', 'b6'], ['e4', 'e6', 'Nf3', 'Qf6', 'Nc3', 'b6', 'Bc4', 'Bb7', 'd3', 'e5'], ['e4', 'e6', 'Nf3', 'c5', 'Nc3', 'Nf6', 'Bc4', 'Nc6', 'd3', 'a6'], ['e4', 'e5', 'f4', 'f6', 'Bc4', 'Bc5', 'Ne2', 'Nc6', 'c3', 'd6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'h3', 'Bg7'], ['e4', 'e5', 'Nc3', 'Nc6', 'Nf3', 'Bc5', 'Bc4', 'd6', 'O-O', 'f5'], ['c4', 'e5', 'a3', 'Nc6', 'Nc3', 'Nf6', 'e4', 'Bc5', 'h3', 'd6'], ['e4', 'e5', 'Nf3', 'f5', 'Nc3', 'c6', 'Nxe5', 'Bc5', 'd4', 'Bb6'], ['e4', 'e6', 'Nf3', 'a6', 'd4', 'c5', 'Nc3', 'cxd4', 'Qxd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'd3', 'Bg4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'd6', 'd3', 'b6', 'Be3', 'c5'], ['d3', 'd5', 'e4', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'e5', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'h6', 'Nxe5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'd5', 'Nd4', 'Nxd4', 'exd4'], ['e4', 'e5', 'a3', 'Nc6', 'Nc3', 'Nf6', 'h3', 'Bc5', 'Bc4', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'dxc6', 'O-O', 'Nf6'], ['g3', 'e5', 'Nf3', 'Nc6', 'd3', 'd5', 'h4', 'Nf6', 'Ng5', 'h6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Qe2', 'Qc5', 'Nf3', 'Bf5'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'd3', 'Nf6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nc3', 'c5'], ['d4', 'Nf6', 'Nf3', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'e3', 'O-O'], ['d4', 'd5', 'c4', 'Nc6', 'Nc3', 'Nf6', 'Nf3', 'Bg4', 'cxd5', 'Nxd5'], ['Nf3', 'Nf6', 'c4', 'c5', 'Nc3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'dxc4', 'e4', 'b5', 'a4', 'c6'], ['f4', 'd5', 'Nf3', 'Nf6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Bb4+'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'e3', 'Bg4', 'Nc3', 'e6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Bd3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Be7', 'O-O', 'd6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'd4', 'cxd4', 'Nxd4', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'g6', 'c3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bd6'], ['d4', 'd5', 'Nf3', 'Bf5', 'c4', 'e6', 'Nc3', 'Nc6', 'cxd5', 'exd5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Bd3', 'Bd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'Bg5', 'Ne4', 'h4', 'Nxg5'], ['c4', 'e5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'g3', 'd5', 'cxd5', 'Nxd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'e5'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'g3', 'Bc5', 'Bg2', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Ng4', 'h3', 'h5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'g3', 'c5', 'e3', 'dxc4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'd4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'd4', 'a6'], ['e3', 'e5', 'Ba6', 'Nxa6', 'Qe2', 'd5', 'Nf3', 'e4', 'Ne5', 'Qg5'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'f6', 'e4', 'fxe5', 'Bc4', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'd6', 'O-O', 'Bd7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'Bf5', 'e3', 'h6'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'e6', 'c4', 'Bb4+', 'Nc3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'bxc6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nc3', 'd6', 'a3', 'Nf6', 'h3', 'g6'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Nf6', 'Bd3', 'a6', 'Nd2', 'e6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Bf5', 'Nf3', 'h6', 'c3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bxb4', 'c3', 'Ba5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'Nxe5', 'Qe7'], ['a3', 'e5', 'Ra2', 'd5', 'b3', 'Nc6', 'Bb2', 'Be6', 'c3', 'Nf6'], ['e4', 'e5', 'Nf3'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'd6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nxe5', 'Qf6', 'Nd3', 'b6', 'Nxc5', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bc5', 'Ng5', 'Nh6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'd6', 'Re1', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'c3', 'd6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'Bc5', 'c3', 'Nxe4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd6', 'd4', 'Nf6', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Nf6', 'e5', 'Ng4'], ['d4', 'd5', 'c4', 'e6', 'Bf4', 'Nf6', 'e3', 'Nc6', 'a3', 'dxc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'Qf6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'e3', 'c5', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c5', 'exd5', 'exd5', 'Nf3', 'c4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f6', 'Nc3', 'Be6', 'd5', 'Bg4'], ['e4', 'd6', 'h3', 'Qd7', 'a3', 'Na6', 'd3', 'Nf6', 'Be3', 'Nc5'], ['e4', 'c6', 'Qh5', 'Qc7', 'Bc4', 'Na6', 'Qxf7+', 'Kd8', 'Qxf8#'], ['e3', 'e6', 'Qe2', 'Nf6', 'Qc4', 'd5', 'Qb5+', 'c6', 'Qd3', 'b5'], ['Nf3', 'd6', 'e4', 'Qd7', 'd4', 'Qe6', 'd5', 'Qxe4+', 'Be3', 'Qb4+'], ['e3', 'e5', 'Bb5', 'a6', 'Bc4', 'd6', 'Qe2', 'Nc6', 'Qh5', 'g6'], ['e4', 'd6', 'Nc3', 'Be6', 'Bb5+', 'c6', 'Ba4', 'Nd7', 'd3', 'Nb6'], ['e4', 'g6', 'Bc4', 'Nc6', 'Qf3', 'Ne5', 'Qb3', 'Bg7', 'Bd5', 'c6'], ['e4', 'b6', 'd4', 'Ba6', 'Bxa6', 'Nxa6', 'Nf3', 'c6', 'Qe2', 'Qc7'], ['d4', 'b6', 'Nc3', 'Ba6', 'g3', 'Bb7', 'f3', 'Nc6', 'Be3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'Nf6', 'h3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'a6', 'Bxc6+', 'bxc6'], ['c3', 'g6', 'Qa4', 'Bg7', 'g4', 'e6', 'd3', 'c6', 'g5', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qe7', 'Bxc6', 'bxc6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'Bc5', 'Nxe5', 'Nxe5', 'd4', 'Bxd4'], ['c3', 'e5', 'Qa4', 'c6', 'g4', 'Nf6', 'g5', 'Nd5', 'd3', 'f6'], ['c3', 'e6', 'Qa4', 'g6', 'g4', 'Bg7', 'd3', 'c6', 'g5', 'b5'], ['c3', 'e5', 'Qa4', 'Bc5', 'g4', 'Nh6', 'd3', 'Nxg4', 'Qxg4', 'O-O'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'h6', 'Bxf7+', 'Kxf7', 'Nxe5+', 'Kg8'], ['c3', 'e5', 'Qa4', 'Nf6', 'g4', 'Bc5', 'g5', 'Bxf2+', 'Kxf2', 'Nh5'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'Nc6', 'd5', 'Ne5', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'h6', 'Nc3', 'a6', 'd3', 'Bc5'], ['c3', 'Nf6', 'Qa4', 'Nc6', 'g4', 'd5', 'g5', 'Ne4', 'd3', 'Nc5'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Nf6', 'Nc3', 'g6', 'Bc4', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'd6', 'h3', 'Be7', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'a6', 'Bc4', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bd7', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'h6', 'Nc3', 'Nf6', 'a3', 'd6'], ['c3', 'd6', 'Qa4+', 'Nc6', 'g4', 'Bd7', 'g5', 'h6', 'd3', 'Ne5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Qe7', 'Bg5', 'Nf6', 'dxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'c3', 'Nxe4', 'd4', 'd6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'e5', 'Qa5+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'a6', 'Ba4', 'Bc5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'd6', 'c3', 'Be6', 'Bxe6', 'fxe6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'd6', 'Nf3', 'Nc6', 'O-O', 'Nd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'b6', 'Nf3', 'Bb7', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'c5', 'Bc4', 'e6', 'e5', 'Nc6', 'Nf3', 'f6', 'd4', 'cxd4'], ['e4', 'e5', 'd4', 'd6', 'd5', 'c6', 'Nc3', 'Nf6', 'Nf3', 'cxd5'], ['e4', 'c5', 'Bc4', 'e6', 'e5', 'd5', 'Bb5+', 'Nc6', 'd4', 'cxd4'], ['e4', 'e5', 'd3', 'd5', 'exd5', 'Qxd5', 'a3', 'Bf5', 'Nc3', 'Qa5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nf6', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'c3', 'Nxe4', 'd4', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'dxc6', 'Nc3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Qe7', 'd4', 'Bb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e6', 'Nf3', 'd5', 'Nc3', 'd4', 'Nxd4', 'Qxd4', 'Bb5+', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'd5', 'Nxe5', 'Nxe4'], ['c4', 'e5', 'g3', 'f5', 'Bg2', 'Nf6', 'Nf3', 'd6', 'd4', 'e4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'Nf6', 'd4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8'], ['c3', 'e5', 'Nf3', 'Nc6', 'g4', 'd6', 'Bg2', 'Bxg4', 'O-O', 'e4'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'e6', 'Nc3', 'Bb4', 'a3', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'g3', 'Nf6', 'Bg2', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'f5', 'exf5', 'e4', 'Nd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'h6'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'a6', 'Bd3', 'e6', 'O-O', 'h6'], ['e4', 'd5', 'e5', 'e6', 'd4', 'Nc6', 'Nf3', 'Nge7', 'c3', 'Nf5'], ['d4', 'd5', 'e3', 'Nc6', 'a3', 'f5', 'g3', 'Nf6', 'Bg2', 'e5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e6', 'Bxc4', 'Nf6', 'Nf3', 'Bb4+'], ['e4', 'c5', 'c3', 'd5', 'f3', 'e5', 'd4', 'cxd4', 'cxd4', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'd6', 'Be3', 'Be7'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'a6', 'Nf3', 'd6'], ['e3', 'd5', 'd3', 'e5', 'Nf3', 'Nc6', 'a3', 'Be6', 'Be2', 'Bd6'], ['e4', 'e5', 'd4', 'exd4', 'Nf3', 'c5', 'Bc4', 'Nc6', 'Bf4', 'Qf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'f4', 'Nc6', 'Nf3', 'f5'], ['c3', 'd5', 'd4', 'Nc6', 'e3', 'Nf6', 'Nf3', 'e6', 'Bb5', 'Bd7'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'g6', 'd4', 'Bg7', 'Bd3', 'e6'], ['e4', 'd5', 'e5', 'Nc6', 'd4', 'e6', 'Nf3', 'Nxd4', 'Nxd4', 'Qh4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'g6', 'Be3', 'Bg7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nf6', 'Bc4', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'a6', 'Bxc6', 'bxc6'], ['e4', 'd5', 'exd5', 'c6', 'dxc6', 'Nxc6', 'Nc3', 'g6', 'Bb5', 'Bg7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'c5', 'Nf6', 'Nf3', 'Nbd7'], ['d4', 'Nf6', 'c4', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nf6', 'Nc3', 'Nc6'], ['d4', 'Nf6', 'Bf4', 'd5', 'h3', 'Nc6', 'e3', 'Bf5', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bc4', 'Nf6', 'Na4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'Nc3', 'Bg4', 'Bc4', 'h6'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Nc6', 'a3', 'Nf6', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Be7', 'Nxc6', 'dxc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nxc6', 'bxc6'], ['e4', 'e5', 'c3', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Be2', 'Nc6'], ['d4', 'd5', 'c4', 'Nf6', 'c5', 'Nc6', 'e3', 'a6', 'a3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Nc3', 'd6'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'e6', 'Nc3', 'Ne7', 'Bc4', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Qh4', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Ng5', 'Bc5', 'Qf3', 'h6', 'Nxf7', 'Kxf7'], ['e4', 'e6', 'Nf3', 'a6', 'Nc3', 'b5', 'd4', 'Bb7', 'Bf4', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'c4', 'Nc6', 'Nc3', 'Bc5', 'g3', 'Qe7', 'Bg2', 'b6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nxf7', 'Kxf7', 'Bc4+', 'Be6'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'Bg4', 'Nf3', 'Nbd7', 'h3', 'Bxf3'], ['d4', 'Nf6', 'Nf3', 'd5', 'c4', 'Nc6', 'Nc3', 'Be6', 'cxd5', 'Nxd5'], ['d4', 'Nf6', 'Nf3', 'd5', 'Nc3', 'Nc6', 'Bf4', 'a6', 'Qd2', 'Ne4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nxc6', 'bxc6'], ['d4', 'Nf6', 'c4', 'd5', 'Nc3', 'e6', 'Nf3', 'Nc6', 'Bf4', 'Bd6'], ['c3', 'e5', 'Na3', 'Nf6', 'e3', 'd5', 'c4', 'd4', 'exd4', 'Qxd4'], ['e4', 'b6', 'Bc4', 'Bb7', 'Nc3', 'Nf6', 'e5', 'Bxg2', 'exf6', 'exf6'], ['e4', 'e6', 'Nf3', 'b6', 'd4', 'Bb7', 'Nc3', 'Bb4', 'Bd2', 'Bxc3'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'Bc5', 'Nxe5', 'Nc6', 'Nxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Qf6', 'Nc3', 'Bb4', 'Qd3', 'exd4'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bb5', 'Nd4', 'Qxe5+', 'Ne6', 'd3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'Bc4', 'h6', 'Nxe5', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'Qe7', 'Nc3', 'Nf6'], ['g3', 'e5', 'Bg2', 'd5', 'Nf3', 'Nc6', 'O-O', 'Bc5', 'd3', 'Nf6'], ['d4', 'g6', 'e4', 'Bg7', 'a3', 'Nc6', 'e5', 'd6', 'Nf3', 'dxe5'], ['e4', 'f6', 'Nf3', 'g5', 'Bc4', 'e6', 'Nd4', 'Bc5', 'Qh5+', 'Ke7'], ['e4', 'e5', 'Bb5', 'a6', 'Bc4', 'Nc6', 'Qf3', 'Nf6', 'Qb3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nc6', 'Nxc6', 'dxc6', 'e5', 'Ne4'], ['e4', 'e6', 'Nf3', 'h6', 'Nc3', 'a6', 'd4', 'Bb4', 'Bd2', 'Bxc3'], ['e4', 'e6', 'e5', 'c5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Qe2', 'g6'], ['b4', 'e5', 'b5', 'Nf6', 'Nf3', 'Bc5', 'Nxe5', 'O-O', 'e3', 'Re8'], ['e4', 'e6', 'Nf3', 'd6', 'd4', 'Nf6', 'Nc3', 'b6', 'Bb5+', 'Nfd7'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Nc3', 'd4', 'Nb5', 'Nc6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'g6', 'Bc4', 'Bg7', 'O-O', 'e6'], ['c4', 'e5', 'g3', 'Nf6', 'b3', 'Nc6', 'Bb2', 'd5', 'Bg2', 'Be6'], ['b3', 'd5', 'Nf3', 'e6', 'c4', 'Nc6', 'e3', 'Nf6', 'Bb2', 'Ne4'], ['e4', 'c6', 'Nc3', 'd5', 'd4', 'dxe4', 'Nxe4', 'Bf5', 'Bd3', 'Qc7'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nc3', 'e5', 'dxe5', 'Nxe5', 'Bxe5', 'f6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'e5', 'Bxe5', 'Ne4', 'Bb5+', 'c6'], ['d4', 'Nf6', 'Nc3', 'd5', 'Bf4', 'c6', 'Nf3', 'Bf5', 'Nh4', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Nf6', 'Nf3', 'Qd6'], ['g4', 'd5', 'Bg2', 'Bxg4', 'b3', 'e6', 'Bb2', 'Nc6', 'Nh3', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Qxd4', 'c5', 'Qa4+', 'Bd7'], ['c4', 'd5', 'd4', 'dxc4', 'Qa4+', 'Nc6', 'Qxc4', 'Qxd4', 'Qxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Qh4', 'Qd3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd3', 'Nh6', 'h3', 'Na5'], ['e4', 'h5', 'Nf3', 'Rh6', 'd4', 'a5', 'Nc3', 'Raa6', 'Bxh6', 'gxh6'], ['e4', 'e6', 'Nf3', 'Nc6', 'd4', 'd5', 'e5', 'Bb4+', 'Nc3', 'Bxc3+'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Qe7', 'Qxh8', 'Nf6', 'e5', 'Qxe5+'], ['e4', 'e5', 'd3', 'Nc6', 'Nf3', 'd5', 'Nc3', 'd4', 'Nb5', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'g6', 'd5', 'Nb4', 'c3', 'Na6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'Bxd5', 'Nxd5'], ['e4', 'e5', 'd4', 'Nc6', 'dxe5', 'Nxe5', 'Nf3', 'd6', 'Nc3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'd5', 'Bg5', 'dxe4'], ['e4', 'd5', 'd3', 'e5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Qh5', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'd3', 'g6'], ['d4', 'd5', 'c4', 'e6', 'cxd5', 'exd5', 'Nc3', 'Nf6', 'e4', 'Be6'], ['e4', 'e5', 'Qh5', 'd6', 'd4', 'exd4', 'Qd5', 'Qf6', 'Nf3', 'Ne7'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'e6', 'Nf3', 'Bb4', 'g3', 'Nf6'], ['e4', 'c6', 'e5', 'e6', 'd4', 'd5', 'c3', 'c5', 'Bb5+', 'Bd7'], ['e4', 'd5', 'e5', 'e6', 'd4', 'Bb4+', 'Bd2', 'Be7', 'Bb5+', 'Bd7'], ['e4', 'c5', 'd4', 'Qa5+', 'Bd2', 'Qa4', 'Nf3', 'cxd4', 'Bd3', 'd6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qh5', 'g6', 'Qf3', 'Qf6', 'Bxf7+', 'Kxf7'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'a6', 'e3', 'b5', 'b4', 'Qd6'], ['e3', 'c5', 'f3', 'Nc6', 'g3', 'g6', 'Nh3', 'Nf6', 'c3', 'b6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qh5', 'g6', 'Qg5', 'Qxg5'], ['e4', 'Nf6', 'Nc3', 'e5', 'b3', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'g6', 'Bxc6', 'bxc6', 'Nxe5', 'Nf6'], ['e4', 'e5', 'Qh5', 'Qe7', 'd4', 'Nf6', 'dxe5', 'Nxh5', 'Bg5', 'Qxe5'], ['e4', 'Nf6', 'e5', 'Ne4', 'Qe2', 'd5', 'd3', 'g6', 'dxe4', 'Bg7'], ['e4', 'Nf6', 'e5', 'Ne4', 'Qe2', 'd5', 'c4', 'e6', 'd4', 'Nc6'], ['e4', 'Nf6', 'e5', 'Ne4', 'Qe2', 'd5', 'd3', 'Nc5', 'd4', 'Ne4'], ['d4', 'e6', 'c3', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Bc5', 'Nb3', 'b6'], ['d4', 'Nc6', 'Nf3', 'b6', 'e4', 'Nf6', 'Nc3', 'g6', 'e5', 'Ng4'], ['e4', 'b6', 'd4', 'Bb7', 'd5', 'g6', 'Nf3', 'Nf6', 'Nc3', 'e5'], ['d4', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Bf4', 'Nc6', 'Qa4', 'Bd7'], ['d4', 'g6', 'g3', 'Bg7', 'Bg2', 'Nc6', 'Nf3', 'd5', 'e3', 'e5'], ['d4', 'd5', 'c4', 'e6', 'a3', 'Nf6', 'Bg5', 'c5', 'e3', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'd6', 'O-O', 'Bd7'], ['Nc3', 'Nf6', 'Nf3', 'Nc6', 'e4', 'e5', 'Bb5', 'd6', 'd4', 'Bd7'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'exd4', 'Nf3', 'Nc6', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bg4'], ['d4', 'Nf6', 'Nf3', 'd5', 'e3', 'Bf5', 'a3', 'e5', 'Nxe5', 'Bd6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qa5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Bg5', 'Be7'], ['e3', 'e5', 'Nc3', 'd5', 'Qf3', 'Nf6', 'Bb5+', 'c6', 'Ba4', 'b5'], ['e4', 'e6', 'd4', 'Nf6', 'e5', 'Ne4', 'Nh3', 'd6', 'Qe2', 'f5'], ['e3', 'd5', 'Qh5', 'Nf6', 'Qf3', 'e5', 'Bb5+', 'c6', 'Ba4', 'Bd6'], ['e4', 'e6', 'd4', 'Qh4', 'Nc3', 'Bb4', 'Bd3', 'Bxc3+', 'bxc3', 'Qf6'], ['e3', 'Nf6', 'Qf3', 'e5', 'Bc4', 'd5', 'Bb3', 'a5', 'Qg3', 'a4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd4', 'Nxd4', 'Nxd4', 'exd4'], ['e4', 'd5', 'exd5', 'Qd6', 'd4', 'Qxd5', 'Nf3', 'Bf5', 'c4', 'Qe4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'd5', 'Ne7', 'Bd3', 'c6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'd5', 'f3', 'Nf6'], ['e4', 'Nc6', 'Nc3', 'e5', 'Nf3', 'd6', 'b4', 'Nxb4', 'a3', 'Nc6'], ['d4', 'e6', 'c4', 'Nf6', 'Nf3', 'd6', 'Bg5', 'h6', 'Bxf6', 'Qxf6'], ['e4', 'e5', 'Qh5', 'Qe7', 'Nc3', 'Nf6', 'Qh3', 'Qc5', 'b3', 'Bd6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'Qe2', 'Nd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nc6', 'Ng5', 'Rg8', 'Bxf7+', 'Ke7'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nd4', 'Qxf7#'], ['e4', 'e5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'Bd3', 'Bd6', 'O-O', 'O-O'], ['e4', 'e5', 'Bc4', 'Qh4', 'Qf3', 'c6', 'Qxf7+', 'Kd8', 'Qxf8+', 'Kc7'], ['e4', 'e5', 'Bc4', 'Bd6', 'Qf3', 'Qe7', 'Nh3', 'c6', 'Ng5', 'b5'], ['e4', 'Nh6', 'Bd3', 'e6', 'b3', 'Be7', 'Bb2', 'O-O', 'Nf3', 'e5'], ['Nh3', 'e5', 'e4', 'Nc6', 'd3', 'Bd6', 'Nc3', 'f6', 'Nd5', 'Nge7'], ['e4', 'c6', 'Qh5', 'Nf6', 'Qf3', 'e5', 'c4', 'd6', 'b3', 'Bg4'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'Bc5', 'Nc3', 'Nge7', 'Bg5', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'g4', 'Nxg4', 'Bh3', 'h5'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'Ne2', 'd6', 'Qb5+', 'c6'], ['e4', 'e5', 'Ne2', 'Nf6', 'g3', 'Bc5', 'Bh3', 'd6', 'O-O', 'Bxh3'], ['e4', 'e5', 'Nf3', 'Bd6', 'Bc4', 'Ne7', 'Ng5', 'O-O', 'd3', 'c5'], ['e4', 'e5', 'Qh5', 'Qe7', 'd3', 'Nf6', 'Qh3', 'Nc6', 'Bg5', 'd6'], ['e3', 'e6', 'c3', 'c6', 'h4', 'b5', 'Nh3', 'd5', 'a4', 'bxa4'], ['e4', 'e6', 'Qh5', 'g6', 'Qe5', 'Nf6', 'd4', 'Bd6', 'Qg5', 'h6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'd3', 'Bg7'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'Qe7', 'Bf4', 'f6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'h6', 'O-O', 'd6', 'd4', 'Bd7'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'e6', 'c4', 'Ne7', 'Nc3', 'c6'], ['d3', 'd5', 'g3', 'Nf6', 'Bg2', 'g6', 'Nf3', 'Bg7', 'O-O', 'O-O'], ['b3', 'g6', 'Bb2', 'Nf6', 'g4', 'h6', 'f4', 'd6', 'g5', 'hxg5'], ['b3', 'e5', 'Bb2', 'd6', 'e3', 'Nc6', 'Bb5', 'Bd7', 'd4', 'a6'], ['e4', 'c5', 'd3', 'Nc6', 'Nf3', 'd6', 'Be2', 'g6', 'Nbd2', 'Bg7'], ['d4', 'Nf6', 'Bg5', 'e6', 'Bxf6', 'Qxf6', 'e3', 'c5', 'c3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'c3', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Bb5', 'Bd7'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'c6', 'axb5', 'cxb5'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nc3', 'Nbd7', 'Nf3', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'd3', 'Nf6', 'Nc3', 'e6'], ['d4', 'Nf6', 'c4', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nb6', 'Nf3', 'Bg4'], ['e4', 'c5', 'c3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'g6', 'Nf3', 'Bg7'], ['e4', 'c5', 'c3', 'Nc6', 'Nf3', 'e5', 'Bc4', 'Nf6', 'd3', 'd6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nd7', 'Nf3', 'f6', 'Qc2', 'e5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Ne4', 'Qc2', 'Nxc3'], ['b3', 'Nf6', 'Bb2', 'e6', 'e3', 'b6', 'Nf3', 'Bb7', 'Be2', 'Be7'], ['d4', 'e5', 'dxe5', 'd6', 'exd6', 'Bxd6', 'Nf3', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'c5', 'Bc4', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6'], ['d4', 'Nf6', 'e3', 'd5', 'Nf3', 'c5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nbxd7'], ['d4', 'Nf6', 'Nf3', 'd5', 'g3', 'c5', 'b3', 'cxd4', 'Qxd4', 'Nc6'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nf6', 'Nc3', 'g6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'b6', 'e4', 'Bb4', 'Ne2', 'Nxe4'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Qxd5', 'Nc3', 'Qc6', 'e3', 'Bf5'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nc6', 'Bb5', 'Bd7', 'd3', 'g6'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nf6', 'Nc3', 'e6'], ['e4', 'c5', 'Nc3', 'd6', 'Nf3', 'Nc6', 'Bb5', 'Bd7', 'O-O', 'Nf6'], ['c4', 'e5', 'Nc3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'Bc5', 'd3', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'g6'], ['e4', 'c5', 'Bc4', 'd6', 'h3', 'Nf6', 'd3', 'Nc6', 'c3', 'e6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'c5', 'a3', 'Ba5'], ['e4', 'c5', 'c3', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Bb5+', 'Nbd7'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'Nc3', 'Bb7', 'e3', 'Bb4'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'Bb4', 'Bg2', 'O-O', 'Nf3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nf6', 'dxc5', 'Qa5+', 'Bd2', 'Qxc5'], ['Nf3', 'Nc6', 'd4', 'e6', 'c4', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'd3', 'Bc5'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'Bg4', 'h3', 'Bh5'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Nf6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'a6'], ['Nf3', 'd5', 'd4', 'c5', 'dxc5', 'Qa5+', 'Bd2', 'Qxc5', 'Nc3', 'Nf6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Nc3', 'Bf5', 'd4', 'h6'], ['e4', 'c5', 'Bc4', 'd6', 'a3', 'Nf6', 'd3', 'g6', 'h3', 'Bg7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'Be2', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'c5', 'Bc4', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Bg4', 'd4', 'e6'], ['e4', 'e6', 'd4', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Qa5+', 'Bd2', 'Qb6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Nxd5', 'Qxd5', 'Nf3', 'Bg4'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'f4', 'Bb4+', 'Nc3', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nd7', 'Nf3', 'Ngf6'], ['Nf3', 'Nc6', 'd4', 'e6', 'e4', 'd5', 'e5', 'f6', 'exf6', 'Nxf6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Nxd5', 'Qxd5', 'Nf3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Bc4', 'd6', 'd3', 'Nc6', 'h3', 'Nf6', 'Nf3', 'h6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c6', 'Nf3', 'f6', 'Qe2', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Bc5', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Nc3', 'Bg4', 'h3', 'Bh5'], ['d4', 'Nf6', 'c4', 'e5', 'e3', 'Bb4+', 'Nc3', 'Qe7', 'dxe5', 'Ng4'], ['d4', 'Nf6', 'Nc3', 'd5', 'Bg5', 'Nc6', 'e3', 'Bf5', 'Bb5', 'Qd7'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Be7', 'Bc4', 'Nf6', 'd3', 'a5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Qb6'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'Bg4', 'h3', 'Bh5', 'g4', 'Bxg4'], ['e4', 'c5', 'Bc4', 'd6', 'Nc3', 'Nf6', 'd4', 'cxd4', 'Qxd4', 'Nc6'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'e6', 'd4', 'Bb4', 'Bd2', 'Bxc3'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'Nc6', 'Bf4', 'Bb4+'], ['d4', 'Nf6', 'c4', 'e5', 'd5', 'Bb4+', 'Bd2', 'Qe7', 'a3', 'Bxd2+'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Nc6'], ['e3', 'e6', 'e4', 'd5', 'e5', 'c5', 'd4', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Bc5', 'Nc3', 'e5'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Nxd5', 'Qxd5', 'Nf3', 'Nc6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nf3', 'Nxd5', 'Bc4', 'Nc6', 'Bxd5', 'Qxd5'], ['e4', 'd5', 'exd5', 'Nf6', 'Bc4', 'Nxd5', 'Qf3', 'Nf6', 'Nc3', 'Qd4'], ['d4', 'Nf6', 'c4', 'e6', 'a3', 'd5', 'Nc3', 'Nc6', 'e3', 'e5'], ['d4', 'Nf6', 'Bf4', 'd5', 'e3', 'Nc6', 'Nd2', 'Bf5', 'Bd3', 'Bg6'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng1', 'e5', 'f3', 'exf3', 'Nxf3', 'Bg4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Nxd5', 'Qxd5', 'd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'd6', 'd3', 'h6', 'Nc3', 'Bg4'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'd3', 'g6', 'Bg5', 'Bg7'], ['e4', 'e5', 'd3', 'Bc5', 'Nc3', 'c6', 'Nf3', 'd6', 'g3', 'Bg4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'd6', 'h3', 'Be6', 'Bb5', 'Bd7'], ['e4', 'e6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nc6', 'Nf3', 'Bf5', 'e4', 'Bg4'], ['c4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'e4', 'Bxc3', 'bxc3', 'd6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'g6', 'Bb5', 'Bg7', 'Bxc6', 'bxc6'], ['e4', 'Nf6', 'e5', 'Ne4', 'd3', 'Nc5', 'b3', 'd6', 'd4', 'Ne4'], ['Nf3', 'd5', 'e3', 'h6', 'b3', 'f6', 'Bb2', 'Bd7', 'h3', 'b5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd6', 'Nc3', 'Ng4', 'h3', 'Nf6'], ['c4', 'Nf6', 'Nf3', 'g6', 'g4', 'Bg7', 'b4', 'Nxg4', 'Bh3', 'Bxa1'], ['h4', 'e5', 'e4', 'h5', 'f3', 'g6', 'g4', 'g5', 'hxg5', 'hxg4'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Qe7', 'Qxh8', 'a5', 'Qxg8', 'Ra6'], ['e4', 'e5', 'Nc3', 'c6', 'Nf3'], ['b4', 'e5', 'c4', 'Bxb4', 'Qb3', 'c5', 'e4', 'Nf6', 'Bd3', 'O-O'], ['e4', 'c6', 'Nf3', 'd5', 'Ne5', 'Nh6', 'd4', 'dxe4', 'Bxh6', 'gxh6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'Bc5', 'Nxe5', 'd6', 'Nc4', 'Bxf2+'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'e6', 'Bg5', 'Bb4+'], ['e4', 'g5', 'Nf3', 'b5', 'Nxg5', 'f6', 'f3', 'fxg5'], ['e4', 'Nc6', 'Nf3', 'd6', 'Bc4', 'e6', 'Nc3', 'Bd7', 'Bb5', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'c6', 'b3', 'Be7', 'Bb2', 'Qc7'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'dxe4', 'Nc4', 'Bc5', 'd3', 'exd3'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'Bc5', 'Nd5', 'Qd8', 'Ne3', 'Bxe3'], ['e4', 'd5', 'Nc3', 'Nf6', 'e5', 'd4', 'exf6', 'dxc3', 'bxc3', 'exf6'], ['e4', 'c6', 'Nc3', 'd5', 'Nf3', 'd4', 'Ne2', 'c5', 'd3', 'Nf6'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bxd5', 'Qxd5', 'Nc3', 'Qe5+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'f6'], ['e4', 'c6', 'Bc4', 'd5', 'Bb3', 'dxe4', 'Nc3', 'Nf6', 'f3', 'exf3'], ['e4', 'd5', 'Nf3', 'dxe4', 'Nd4', 'Qxd4', 'c3', 'Qb6', 'd4', 'c5'], ['e4', 'c5', 'Nf3', 'Nf6', 'e5', 'Ng8', 'Nc3', 'd6', 'Bc4', 'dxe5'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4'], ['e4', 'c5', 'b3', 'Nf6', 'Nc3', 'Nc6', 'Nge2', 'd5', 'exd5', 'Nxd5'], ['e4', 'b6', 'Nc3', 'Ba6', 'a3', 'Bxf1', 'Kxf1', 'g6', 'h3', 'Bh6'], ['Na3', 'e5', 'e3', 'Bxa3', 'Qh5', 'Bxb2', 'Bxb2', 'Qe7', 'Qf5', 'g6'], ['e4', 'e6', 'Nf3', 'Be7', 'Nc3', 'd6', 'Bc4', 'Nf6', 'd3', 'Nc6'], ['e4', 'Nf6', 'e5', 'Nd5', 'Nf3', 'Nc6', 'Ng5', 'f6', 'exf6', 'exf6'], ['e4', 'd6'], ['d4', 'e6', 'Bf4', 'Qf6', 'e3', 'Bb4+', 'c3', 'Bd6', 'Bxd6', 'cxd6'], ['e4', 'e5', 'Qf3', 'Nc6', 'Bc4', 'Nf6', 'g4', 'h6', 'Nh3', 'Bc5'], ['Nf3', 'd5', 'e3', 'c5', 'd4', 'Nf6', 'c4', 'e6', 'Nc3', 'cxd4'], ['d4', 'e6', 'Nf3', 'Nf6', 'c3', 'Be7', 'Bf4', 'O-O', 'e3', 'b6'], ['g4', 'd5', 'Bg2', 'Bxg4', 'c4', 'c6', 'cxd5', 'cxd5', 'Qb3', 'Qc7'], ['d4', 'Nf6', 'Nf3', 'c5', 'c3', 'b6', 'Bf4', 'd6', 'e3', 'Bb7'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'c5', 'e3', 'Nc6', 'c3', 'Qb6'], ['d4', 'Nf6', 'Nf3', 'Ne4', 'Bf4', 'f5', 'e3', 'd6', 'Bd3', 'g6'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'cxb5', 'a6', 'bxa6', 'Bxa6'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'e6', 'e3', 'c5', 'Nbd2', 'Nc6'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bg5', 'Bg7', 'Nbd2', 'd5', 'e3', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['d4', 'Nf6', 'Nf3', 'd5', 'Bf4', 'c6', 'e3', 'Nbd7', 'Nbd2', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nd7', 'd4', 'b6', 'Bc4', 'Bb7'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Bf5', 'c4', 'c6', 'Qb3', 'Nbd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['d4', 'e6', 'Nf3', 'd5', 'Bf4', 'Nf6', 'e3', 'c5', 'c3', 'Nc6'], ['d4', 'Nf6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Bc4', 'Nbd7'], ['d4', 'Nf6', 'Nf3', 'c5', 'dxc5', 'e6', 'g3', 'Bxc5', 'Bg2', 'O-O'], ['d4', 'Nf6', 'Nf3', 'd5', 'Bf4', 'Nc6', 'e3', 'Nh5', 'Bg5', 'h6'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Bf5', 'c4', 'e6', 'Qb3', 'b6'], ['d4', 'e6', 'Nf3', 'f5', 'Nc3', 'Nf6', 'Bf4', 'a6', 'e3', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nd7', 'd4', 'b6', 'Bd3', 'Bb7'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Bf5', 'e3', 'e6', 'c4', 'c6'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Bf5', 'c4', 'e6', 'Nc3', 'c6'], ['d4', 'Nf6', 'c4', 'c5', 'dxc5', 'Nc6', 'Nf3', 'e6', 'Nc3', 'Bxc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'h6', 'Bxc6', 'dxc6', 'Nxe5', 'f6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'c6', 'Bg5', 'Nbd7', 'Bxf6', 'Nxf6'], ['e4', 'e6', 'Nf3', 'Nf6', 'd3', 'd5', 'Bg5', 'h6', 'Bxf6', 'Qxf6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'h3', 'Bxf3', 'gxf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'c5', 'dxe5', 'c4', 'Bxc4', 'Bg4'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'd3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'd4', 'a6', 'Bxc6', 'bxc6'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'a6', 'O-O', 'e6'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bc4', 'h6', 'd3', 'Nf6'], ['e4', 'd6', 'd4', 'Nf6', 'Bb5+', 'c6', 'Ba4', 'Bg4', 'f3', 'Bh5'], ['d4', 'd5', 'e3', 'e6', 'Nf3', 'e5', 'dxe5', 'h5', 'Bb5+', 'c6'], ['d4', 'd5', 'Bg5', 'h6', 'Bf4', 'Nf6', 'e3', 'Bf5', 'Bb5+', 'c6'], ['d4', 'Nf6', 'Nf3', 'd5', 'e3', 'Bf5', 'Bb5+', 'c6', 'Ba4', 'e6'], ['e4', 'e5', 'f4', 'Nf6', 'fxe5', 'Nxe4', 'Nf3', 'f6', 'Bc4', 'fxe5'], ['d4', 'e6', 'Nf3', 'b6', 'Bg5', 'f6', 'Bh4', 'h5', 'Bg3', 'Bb7'], ['d4', 'd5', 'Nf3', 'Bg4', 'Nc3', 'Bxf3', 'exf3', 'Nf6', 'Be2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Be2', 'd5', 'O-O', 'dxe4'], ['e4', 'e5', 'Qh5', 'Bb4', 'Qxe5+', 'Kf8', 'Bc4', 'd5', 'Qxd5', 'Be6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'Bc4', 'd6', 'Qg3', 'O-O'], ['e4', 'e5', 'Nf3', 'Bb4', 'Nxe5', 'Nf6', 'Nd3', 'O-O', 'Nxb4', 'Nxe4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd6', 'Ne4', 'Qe5', 'f3', 'f5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Qh4', 'Nc3', 'Bb4'], ['e4', 'e6', 'd4', 'Qh4', 'Nf3', 'Qxe4+', 'Qe2', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'Be2', 'Nd7', 'dxe5', 'Nxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'e5', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxe5', 'Nxb5', 'Qh5', 'Nd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'b6', 'Bc4', 'Bb7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'd4', 'exd4', 'Nxd4', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'Bg4', 'O-O', 'Nge7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Nge2', 'Nf6', 'd4', 'Qf5'], ['d4', 'd5', 'Qd3', 'Nf6', 'Nc3', 'c5', 'dxc5', 'e6', 'Bf4', 'Bxc5'], ['e4', 'c5', 'Bc4', 'Nf6', 'Nc3', 'b6', 'Nf3', 'Bb7', 'Qe2', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'b6'], ['e4', 'd6', 'd4', 'c6', 'Nf3', 'Bg4', 'Be2', 'Nd7', 'O-O', 'Ngf6'], ['d4', 'd5', 'e3', 'Nf6', 'Bd3', 'Nc6', 'Qe2', 'e5', 'dxe5', 'Nxe5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'c6', 'd4', 'exd4', 'Nxd4', 'Be7'], ['e4', 'c5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Nc3', 'b6', 'Bxf7+', 'Kxf7'], ['e4', 'c5', 'b3', 'Nc6', 'Bb2', 'b6', 'Nf3', 'Bb7', 'd3', 'd5'], ['e4', 'c6', 'Nf3', 'e6', 'd4', 'Qa5+', 'Bd2', 'Qd8', 'Nc3', 'Qb6'], ['d4', 'b6', 'a4', 'c5', 'c3', 'Nf6', 'a5', 'b5', 'Bg5', 'h6'], ['d4', 'e6', 'c4', 'Nf6', 'Nf3', 'c5', 'dxc5', 'Bxc5', 'e3', 'Nc6'], ['d4', 'a6', 'e4', 'b5', 'Nc3', 'Bb7', 'Bd3', 'Nf6', 'e5', 'Bxg2'], ['e4', 'e5', 'Nf3', 'f6', 'd3', 'Nc6', 'c3', 'd6', 'd4', 'Bg4'], ['d4', 'e6', 'e4', 'd5', 'e5', 'c5', 'dxc5', 'Bxc5', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd6', 'h3', 'c6', 'a3', 'd5'], ['d4', 'e6', 'Nc3', 'd5', 'Nf3', 'b5', 'Qd3', 'a6', 'e4', 'Bb4'], ['d4', 'd5', 'Qd3', 'Nf6', 'e4', 'dxe4', 'Qa3', 'Nc6', 'd5', 'Nxd5'], ['e4', 'Nf6', 'Qf3', 'd6', 'Bc4', 'Be6', 'd3', 'd5', 'exd5', 'Bxd5'], ['c4', 'e5', 'Nc3', 'Bc5', 'Na4', 'd6', 'h3', 'Qf6', 'b3', 'Qxf2#'], ['d4', 'd5', 'Bf4', 'f6', 'e3', 'Nh6', 'c3', 'Bf5', 'Bxh6', 'gxh6'], ['d4', 'd5', 'Nf3', 'Bf5', 'Bf4', 'e6', 'c3', 'c6', 'e3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nxe5', 'f6', 'Nf3', 'Ne7', 'Bc4', 'Kf8'], ['e4', 'f6', 'Bc4', 'c6', 'Bxg8', 'Rxg8', 'Qh5+', 'g6', 'Qxh7', 'Bg7'], ['h3', 'e5', 'f3', 'Qh4+', 'g3', 'Qxg3#'], ['e4', 'f6', 'f4', 'e6', 'Nf3', 'd6', 'c3', 'c6', 'd4', 'b6'], ['e4', 'c5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Nf3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bd3', 'g6'], ['e4', 'c5', 'c4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd4', 'cxd4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'dxc4', 'e4', 'c5', 'dxc5', 'Qxd1+'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e3', 'Nbd7'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c5', 'cxd5', 'exd5', 'Nf3', 'cxd4'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'b6', 'Nf3', 'Bb7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'd4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'd6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'c5', 'Qf3', 'Nc6', 'c3', 'Ne5', 'Qe3', 'e6', 'f4', 'Ng4'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b6', 'Bxc4', 'Bb7', 'Nf3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'd4', 'exd4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Bd6', 'Nc3', 'c6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b6', 'Bxc4', 'Bb7', 'Nc3', 'Bxg2'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'h3', 'Bd7', 'Nc3', 'a6'], ['Nf3', 'c5', 'e4', 'Nc6', 'Bb5', 'Qc7', 'Bxc6', 'Qxc6', 'Nc3', 'g6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'h3', 'O-O', 'c3', 'd6'], ['Nf3', 'd5', 'd4', 'Nf6', 'Bg5', 'Bg4', 'Bxf6', 'exf6', 'Nbd2', 'c5'], ['e4', 'e5', 'c4', 'Nf6', 'Nc3', 'Bb4', 'Nge2', 'd6', 'h3', 'Be6'], ['f4', 'd5', 'd4', 'e6', 'Nf3', 'c5', 'e3', 'Nf6', 'c3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'h6', 'b4', 'Bb6'], ['Nf3', 'd5', 'd4', 'e6', 'Bf4', 'c5', 'e3', 'Bd7', 'c4', 'Nf6'], ['Nf3', 'd5', 'd4', 'Nc6', 'Bf4', 'e6', 'e3', 'Nf6', 'Bb5', 'Bd7'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Bc5', 'd4', 'Bb6', 'Bxf4', 'Nf6'], ['Nf3', 'c5', 'e4', 'Nc6', 'Bb5', 'g6', 'Bxc6', 'bxc6', 'd3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'h3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'h6', 'c3', 'Nf6'], ['Nf3', 'c5', 'e4', 'Nc6', 'Bb5', 'e5', 'Bxc6', 'dxc6', 'Nxe5', 'Bd6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd4', 'Bb4+'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nxe4', 'Nxe5', 'd5', 'Qf3', 'Ng5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7', 'O-O', 'exd4'], ['d4', 'd5', 'e3', 'Nc6', 'c4', 'dxc4', 'Bxc4', 'e6', 'Nc3', 'Bb4'], ['Nf3', 'd6', 'd4', 'Bg4', 'e3', 'Nf6', 'Be2', 'e6', 'c4', 'Be7'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Bb4+'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Nxd5', 'Qxd5', 'Nf3', 'Bg4'], ['c3', 'e5', 'd3', 'd5', 'Qa4+', 'Bd7', 'Qb3', 'Bc6', 'Nd2', 'b6'], ['Nf3', 'c6', 'e4', 'h6', 'd4', 'd6', 'Nc3', 'Nd7', 'Bf4', 'g5'], ['d4', 'd5', 'Bf4', 'Nf6', 'Nc3', 'Bf5', 'Nf3', 'e6', 'e3', 'Bb4'], ['Nf3', 'Nc6', 'g3', 'e5', 'd3', 'd5', 'Bg2', 'Nf6', 'O-O', 'h6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Bd6', 'Bg5', 'Ne7'], ['e4', 'e6', 'Nc3', 'Bb4', 'a3', 'Bxc3', 'dxc3', 'd5', 'exd5', 'exd5'], ['g4', 'd5', 'd4', 'Nc6', 'Nc3', 'Nf6', 'Bg2', 'e6', 'Bg5', 'h6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'g4', 'd6', 'Qc3', 'O-O'], ['e4', 'e5', 'Nf3', 'h6', 'Nc3', 'g5', 'Nxe5', 'g4', 'Nxg4', 'd5'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Be7', 'Qxh8', 'c6', 'Qxg8+', 'Bf8'], ['g3', 'Nf6', 'd3', 'e5', 'e4', 'd6', 'Nc3', 'g6', 'Bg2', 'Bg7'], ['d4', 'g6', 'c4', 'Nf6', 'Nc3', 'Bg7', 'e4', 'O-O', 'f4', 'Nc6'], ['g3', 'c6', 'Nf3', 'e6', 'Bg2', 'd5', 'O-O', 'h5', 'd4', 'a5'], ['g3', 'e5', 'Bg2', 'd5', 'Bf3', 'e4', 'Bg2', 'Nf6', 'd3', 'Bf5'], ['e4', 'g6', 'Nc3', 'Bg7', 'Bc4', 'Nh6', 'Nf3', 'O-O', 'Qe2', 'e6'], ['e4', 'g6', 'Qf3', 'Bg7', 'Bc4', 'f6', 'e5', 'Nh6', 'exf6', 'exf6'], ['d4', 'g6', 'c3', 'd5', 'c4', 'dxc4', 'e3', 'Bg7', 'Bxc4', 'Nf6'], ['g3', 'e5', 'Bg2', 'Nf6', 'Nf3', 'Nc6', 'O-O', 'Bc5', 'd4', 'Bxd4'], ['d4', 'g6', 'e4', 'd5', 'e5', 'Nh6', 'Bxh6', 'Bxh6', 'Qf3', 'O-O'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'Nf6', 'Bd3', 'O-O', 'h3', 'd5'], ['e4', 'g6', 'd4', 'Bg7', 'c3', 'Nf6', 'f3', 'O-O', 'Ne2', 'd5'], ['g3', 'g6', 'Bg2', 'Nf6', 'Nf3', 'Bg7', 'e4', 'O-O', 'e5', 'Ng4'], ['Nf3', 'e5', 'g3', 'Qf6', 'Bg2', 'Qh6', 'O-O', 'Nf6', 'Nxe5', 'Ng4'], ['g3', 'g6', 'Nf3', 'Nf6', 'Bg2', 'Bg7', 'O-O', 'O-O', 'd3', 'd5'], ['e3', 'e6', 'Qf3', 'Qf6', 'Qxf6', 'Nxf6', 'd4', 'd5', 'Nc3', 'Nc6'], ['e3', 'd5', 'd4', 'e6', 'Qd3', 'c5', 'e4', 'Nf6', 'exd5', 'Nxd5'], ['e3', 'e6', 'd4', 'd5', 'Nf3', 'Nf6', 'c4', 'dxc4', 'Bxc4', 'c5'], ['e4', 'e6', 'd4', 'Nf6', 'Bd3', 'c5', 'Be3', 'cxd4', 'Bxd4', 'Nc6'], ['e4', 'Nf6', 'f3', 'd5', 'd4', 'dxe4', 'fxe4', 'Nxe4', 'Bb5+', 'Nd7'], ['e4', 'e5', 'd3', 'f6', 'f3', 'c6', 'g3', 'd5', 'f4', 'exf4'], ['b3', 'c5', 'Bb2', 'Nc6', 'g3', 'e6', 'Bg2', 'Nge7', 'Nf3', 'd5'], ['c4', 'c5', 'g3', 'd5', 'cxd5', 'Qxd5', 'Nf3', 'Nc6', 'Bg2', 'Ne5'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'g6', 'Nc3', 'b6', 'Ng5', 'e6'], ['c4', 'c5', 'g3', 'b6', 'Bg2', 'Nc6', 'Bxc6', 'dxc6', 'Nc3', 'Bb7'], ['c4', 'e6', 'Nc3', 'd6', 'g3', 'e5', 'Bg2', 'c6', 'e3', 'd5'], ['d4', 'd5', 'Nf3', 'Nc6', 'b3', 'Bg4', 'e3', 'g6', 'Be2', 'Bg7'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'Bc5', 'Bg2', 'O-O', 'a3', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'g6', 'Bc4', 'Bg7', 'Ng5', 'e6'], ['c4', 'Nf6', 'Nc3', 'e6', 'g3', 'd6', 'Bg2', 'Nc6', 'e3', 'Qd7'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'g6', 'Bd3', 'Bg7', 'e4', 'e5'], ['c4', 'f5', 'g3', 'Nf6', 'Bg2', 'g6', 'e3', 'Bg7', 'Ne2', 'Kf8'], ['e4', 'c5', 'f4', 'Nc6', 'Bc4', 'e6', 'Nc3', 'd5', 'Qe2', 'dxc4'], ['e4', 'c5', 'Bc4', 'Nc6', 'Qh5', 'e6', 'c3', 'Nf6', 'Qf3', 'd5'], ['c4', 'e5', 'Nc3', 'c6', 'g3', 'Bc5', 'Bg2', 'Qb6', 'e3', 'Nf6'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qd6', 'Qa4+', 'Bd7', 'Qb3', 'b6'], ['e4', 'c5', 'c3', 'Nc6', 'Bc4', 'b6', 'Qb3', 'Bb7', 'Bxf7#'], ['c4', 'e6', 'Nc3', 'Bb4', 'g3', 'Bxc3', 'bxc3', 'd6', 'Ba3', 'Nf6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'e6', 'a3', 'Nf6', 'Nc3', 'd5'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nc3', 'b6', 'Bd5', 'Bb7', 'Qf3', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'g6', 'Bxc6', 'bxc6', 'c4', 'Ba6'], ['c4', 'e5', 'g3', 'd6', 'Bg2', 'Nc6', 'Nc3', 'Qd7', 'e3', 'b6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nc3', 'e6', 'Nf3', 'g6', 'O-O', 'Bg7'], ['g4', 'c5', 'g5', 'e6', 'd3', 'Be7', 'Nf3', 'b6', 'Ne5', 'Bxg5'], ['c4', 'c5', 'Nc3', 'Nc6', 'g3', 'Nd4', 'e3', 'Ne6', 'Bg2', 'Nf6'], ['e4', 'c5', 'Nc3', 'g6', 'f4', 'Bg7', 'd3', 'e6', 'Nf3', 'Ne7'], ['c4', 'e5', 'g3', 'Nf6', 'e3', 'Bc5', 'Ne2', 'Bb6', 'Bg2', 'O-O'], ['c4', 'e6', 'Nc3', 'd6', 'g3', 'b6', 'Bg2', 'c6', 'Qa4', 'Qc7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nxc6', 'bxc6'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'd6', 'Nc3', 'c6', 'e3', 'Be7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nc3', 'Bg7'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'Bc5', 'e3', 'O-O', 'Ne2', 'Re8'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qc5', 'd4', 'Qa5', 'Bd2', 'Nc6'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'd5', 'cxd5', 'Nxd5', 'Bg2', 'Nb4'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'Nd5', 'e6'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'Bb4', 'Bg2', 'Bxc3', 'bxc3', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nc3', 'Bg7'], ['c4', 'g6', 'g3', 'd6', 'Bg2', 'Nc6', 'e3', 'Ne5', 'Ne2', 'Nxc4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'g6', 'd3', 'a6', 'Nc3', 'e6'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qe6', 'g3', 'b6', 'Bg2', 'Nc6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'd3', 'e6'], ['c4', 'd5', 'Nc3', 'd4', 'Nb1', 'Bf5', 'g3', 'e5', 'Bg2', 'e4'], ['e4', 'c5', 'e5', 'Nc6', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['c4', 'e5', 'Nc3', 'd6', 'g3', 'Nf6', 'Bg2', 'g6', 'e3', 'Bg7'], ['d4', 'c5', 'dxc5', 'e6', 'b4', 'a5', 'Bd2', 'axb4', 'Bxb4', 'Qc7'], ['e4', 'h6', 'd4', 'a6', 'Bc4', 'g6', 'Nc3', 'b6', 'Nf3', 'Ra7'], ['h3', 'e5', 'Nc3', 'd5', 'Nf3', 'Nc6', 'Rh2', 'Bc5', 'Nh4', 'Nf6'], ['e4', 'h6', 'Nf3', 'f6', 'd4', 'Na6', 'Bc4', 'Nb8', 'Nc3', 'Nc6'], ['d4', 'h6', 'e4', 'f6', 'Qh5+'], ['e4', 'd6', 'f4', 'b6', 'd4', 'f6', 'Nf3', 'Na6', 'e5', 'Rb8'], ['d3', 'e5', 'b4', 'Bxb4+', 'Bd2', 'Bc5', 'f3', 'Qh4+', 'g3', 'Qd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Qe7', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'Bc5', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bb4', 'O-O', 'Bxc3'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Bb5+', 'Bd7', 'O-O', 'Bxb5'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Be7', 'Qxh8'], ['e4', 'e5', 'Nf3', 'Nc6'], ['f4', 'd5', 'd3', 'Bf5', 'Be3', 'e6', 'Nc3', 'Bc5', 'Bxc5', 'b6'], ['e4', 'e5', 'Nf3', 'Bd6', 'Bb5', 'a6', 'Bc4', 'b5', 'Bd3', 'Bb7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'O-O', 'Nf6', 'Nc3', 'O-O'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Nc6', 'Nbd2', 'Bg4', 'h3', 'Bf5'], ['e4', 'e5', 'Nf3', 'Qe7', 'Nc3', 'Nc6', 'Bc4', 'd6', 'O-O', 'Be6'], ['e4', 'Nc6', 'd4', 'Nb4', 'c3', 'Na6', 'Bb5', 'Nb8', 'Bf1', 'Nc6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'd6', 'e5', 'dxe5', 'Qxe5+', 'Be6'], ['e4'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'e6', 'd4', 'Bb4', 'Bd2', 'Nf6'], ['e4', 'd5', 'd4', 'dxe4', 'f3', 'exf3', 'Bf4', 'fxg2', 'Bxg2', 'Nc6'], ['e4', 'e5', 'Bb5', 'c6', 'Nf3', 'cxb5', 'Nxe5', 'Qf6', 'Nxf7', 'Qxf7'], ['e4', 'c5', 'Qg4', 'd6', 'Qxc8', 'Qxc8', 'Bb5+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Qh5', 'Bxd4'], ['e4', 'e5', 'Qh5', 'd6', 'Bc4', 'g6', 'Qd1', 'Bg7', 'Nf3', 'Nf6'], ['d4', 'e5'], ['e4', 'd5', 'Qh5'], ['e4', 'e5', 'Nf3'], ['e4', 'e5', 'Qh5', 'd6', 'Bc4', 'g6', 'Qf3', 'f6', 'Nh3', 'Bxh3'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Nf6', 'Qxf7#'], ['e3', 'e5', 'Nc3', 'd5', 'Nf3', 'Nc6', 'Bd3', 'Nf6', 'O-O', 'Bf5'], ['d4', 'd6', 'e4', 'Be6', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bxc4'], ['d4', 'g6', 'e4', 'd6', 'Nf3', 'Bg7', 'Nc3', 'Nf6', 'Bc4', 'O-O'], ['d4', 'd5', 'Bf4', 'e5', 'Bxe5', 'f6', 'Bf4', 'g5', 'Bd2', 'f5'], ['b4', 'e5', 'Bb2', 'Nc6', 'e4', 'Nf6', 'd3', 'Bxb4+', 'c3', 'Bc5'], ['e3', 'g5', 'f4', 'Bg7', 'fxg5', 'Bxb2', 'Bxb2', 'b5', 'h4', 'Bb7'], ['e4', 'g5', 'd4', 'Bg7', 'Nf3', 'b6', 'Bxg5', 'Bb7', 'Nc3', 'Bxd4'], ['e4', 'c5', 'f4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Bb5+', 'Bd7'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'Nc6', 'd3', 'Nf6', 'Bg5', 'Ne5'], ['e4', 'c5', 'Bc4', 'Nc6', 'Qh5', 'e6', 'd3', 'Nf6', 'Qd1', 'd5'], ['e4', 'e6', 'd4', 'Bb4+', 'Bd2', 'Bxd2+', 'Nxd2', 'Ne7', 'Ngf3', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bb5', 'a6', 'Bxc6', 'dxc6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'e5', 'Nf3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'c6', 'Qe2+', 'Be7'], ['Nf3', 'd5', 'd4', 'Nc6', 'e3', 'Bg4', 'c4', 'dxc4', 'Bxc4', 'e6'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'a6', 'Nf3', 'd6', 'Be2', 'Nd7'], ['c4', 'e5', 'd3', 'Nf6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'Nf3', 'Nxc3'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'exd4', 'Nxd4', 'd6'], ['e4', 'c5', 'Nc3', 'e5', 'd3', 'Nf6', 'Bg5', 'Nc6', 'Nd5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nce7', 'Bb5+', 'Bd7'], ['e4', 'Nc6', 'Nf3', 'd6', 'd4', 'Bg4', 'h3', 'Bxf3', 'gxf3', 'd5'], ['e4', 'c5', 'f4', 'Nc6', 'c4', 'e5', 'd3', 'd6', 'g3', 'h5'], ['d4', 'c6', 'Bf4', 'Na6', 'h3', 'd5', 'e3', 'Bf5', 'Nf3', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bc4', 'Nh6', 'Ng5', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nge7', 'Nc3', 'g6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Qe7', 'Qxe7+', 'Bxe7', 'e5', 'Ng4'], ['d4', 'c6', 'Bf4', 'd5', 'Nf3', 'Bg4', 'e3', 'Nf6', 'h3', 'Bxf3'], ['d4', 'c6', 'e3', 'd5', 'c4', 'Bf5', 'Nc3', 'e6', 'cxd5', 'exd5'], ['d4', 'c6', 'c4', 'd5', 'Nc3', 'Bf5', 'cxd5', 'cxd5', 'Qb3', 'e6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nc4', 'Nxe4', 'Qe2', 'Qe7'], ['d4', 'd5', 'c4', 'Bf5', 'cxd5', 'Qxd5', 'Nc3', 'Qa5', 'Bd2', 'e6'], ['d4', 'c6', 'Nc3', 'd5', 'Nf3', 'Bf5', 'e3', 'e6', 'h3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'Bc5', 'Bxc6', 'dxc6'], ['e4', 'c6', 'Nf3', 'd5', 'Nc3', 'Bg4', 'd4', 'e6', 'Be2', 'Bb4'], ['e4', 'c5', 'd3', 'd6', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'Bd3', 'Bxd3'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'd4', 'Be6', 'd5', 'Nd4'], ['d4', 'c6', 'c4', 'd5', 'Nf3', 'Bf5', 'e3', 'e6', 'Nc3', 'Nf6'], ['c4', 'c6', 'Nc3', 'd5', 'cxd5', 'cxd5', 'Nf3', 'Bg4', 'd4', 'e6'], ['d4', 'c6', 'e3', 'd5', 'b3', 'Bf5', 'Bb2', 'e6', 'Nc3', 'Bb4'], ['e4', 'c6', 'Nf3', 'd5', 'Nc3', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bd6', 'Bc4', 'h6', 'O-O', 'Qf6'], ['e4', 'e5', 'Nf3', 'Qf6', 'd3', 'Bc5', 'Bg5', 'Qg6', 'Be2', 'Nf6'], ['e3', 'e5', 'g3', 'Qf6', 'Bg2', 'c6', 'b3', 'e4', 'c3', 'Bd6'], ['e4', 'e5', 'Qh5', 'Qf6', 'Be2', 'Bc5', 'Nf3', 'g6', 'Qh4', 'g5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nxe4', 'Nxe5', 'Bc5', 'Nxf7', 'Bxf2+'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'Bc4', 'O-O', 'O-O', 'Qe7'], ['e4', 'c5', 'Bc4', 'e6', 'Qf3', 'Nc6', 'e5', 'Nxe5'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qf3', 'Nf6', 'd3', 'Bc5', 'Bg5', 'O-O'], ['d4', 'e6', 'c4', 'Bb4+', 'Bd2', 'a5', 'e4', 'd5', 'e5', 'dxc4'], ['d4', 'e6', 'Nf3', 'Bd6', 'e4', 'Nf6', 'e5', 'Bb4+', 'c3', 'Ne4'], ['e4', 'e5', 'Bc4', 'd6', 'Qf3', 'Be6', 'Bb3', 'Nf6', 'Nh3', 'Nc6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qf3', 'Nf6', 'd3', 'Nc6', 'Be3', 'Bxe3'], ['d4', 'e6', 'c4', 'Bb4+', 'Bd2', 'a5', 'Nc3', 'Qf6', 'e3', 'Nh6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qf3', 'f6', 'Qh5+', 'g6', 'Qf3', 'Nge7'], ['d3', 'Nf6', 'e4', 'g6', 'c4', 'd6', 'f3', 'Bg7', 'b3', 'Nc6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd3', 'Qe7+', 'Be3', 'c5'], ['d3', 'Nf6', 'e4', 'g6', 'f3', 'Bg7', 'g4', 'd6', 'c4', 'O-O'], ['e4', 'e6', 'Nf3', 'd5', 'b3', 'f5', 'd3', 'c6', 'Bf4', 'g6'], ['d3', 'Nc6', 'e4', 'b6', 'c4', 'e5', 'b3', 'f6', 'f3', 'Nge7'], ['d3', 'e5', 'e4', 'Bc5', 'c4', 'Nf6', 'f3', 'O-O', 'g4', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Qe7+', 'Be3', 'f5'], ['e4', 'e6', 'd4', 'd5', 'f3', 'f5', 'c3', 'c6', 'Nd2'], ['e4', 'e6', 'd4', 'd5', 'e5', 'f5', 'Nf3', 'c6', 'Bg5', 'Be7'], ['d3', 'd5', 'e4', 'd4', 'c4', 'e5', 'f3', 'Bb4+', 'Nd2', 'Nf6'], ['e4', 'e6', 'e5', 'd5', 'exd6', 'cxd6', 'Nf3', 'd5', 'Bb5+', 'Bd7'], ['e4', 'e6', 'Qh5', 'd5', 'Qe5', 'f6', 'Qd4', 'b6', 'Bb5+', 'c6'], ['d3', 'd5', 'e4', 'e5', 'c4', 'dxc4', 'dxc4', 'Bb4+', 'Bd2', 'Bxd2+'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'c5', 'Ne5', 'Nc6', 'Nf3', 'Bf5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'b6', 'Bb5+', 'Bd7'], ['d4', 'g6', 'e4', 'Bg7', 'Bc4', 'Nf6', 'e5', 'Ne4', 'Qf3', 'd5'], ['d4', 'e6', 'Nf3', 'd5', 'Ne5', 'Qe7', 'Bf4', 'Qb4+', 'Nc3', 'Qe7'], ['d4', 'h5', 'e4', 'b6', 'Bc4', 'Bb7', 'Qf3', 'e6', 'd5', 'Qf6'], ['e4', 'd5', 'Qf3', 'Nf6', 'exd5', 'Nxd5', 'Bc4', 'c6', 'd4', 'Qd6'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nc3', 'Nxd4', 'Qxd4', 'e6', 'Nb5', 'Rb8'], ['d4', 'd5'], ['d4', 'Nf6', 'Bg5', 'd5', 'Nc3', 'Nc6', 'Nf3', 'e6', 'Qd2', 'Ne4'], ['e4', 'd5', 'f3', 'c6', 'd4', 'e6', 'Be3', 'Bb4+', 'Nd2', 'Qh4+'], ['d4', 'c5', 'dxc5', 'Nc6', 'e4', 'e5', 'Bb5', 'Nf6', 'Nf3', 'Bxc5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Qe2', 'f6', 'Nb5', 'c6'], ['d4', 'd5', 'e4', 'dxe4', 'f3', 'Nf6', 'Bb5+', 'c6', 'Bc4', 'b6'], ['d4', 'd5', 'Qd3', 'Nf6', 'Qb5+', 'c6', 'Qc5', 'Ne4', 'Qb4', 'Bf5'], ['d4', 'c6', 'e4', 'd5', 'f3', 'g6', 'Nc3', 'h5', 'Bf4', 'Nd7'], ['e4', 'e6', 'd4', 'd6', 'Nc3', 'c6', 'Bf4', 'f6', 'Nf3', 'g5'], ['e4', 'd5', 'd3', 'e5', 'Nf3', 'Bd6', 'd4', 'dxe4', 'Ng5', 'f6'], ['e4', 'e5', 'd4', 'Bb4+', 'c3', 'Bd6', 'Nf3', 'Nf6', 'Bd3', 'Nc6'], ['e4', 'd5'], ['e4', 'e5', 'd3', 'Bc5', 'd4', 'Bb4+', 'c3', 'Ba5', 'dxe5', 'd6'], ['e4', 'd5', 'Bb5+', 'c6', 'Ba4', 'b5', 'Bb3', 'h5', 'Nf3', 'Bg4'], ['d3', 'd5', 'b3', 'e5', 'Nd2', 'Bc5', 'Bb2', 'Bd4', 'c3', 'Bc5'], ['e4', 'd5', 'Qf3', 'Be6', 'c4', 'c6', 'cxd5', 'cxd5', 'exd5', 'Bxd5'], ['e4', 'Nf6', 'e5', 'Nd5', 'Bc4', 'e6', 'Bxd5', 'exd5', 'd4', 'c6'], ['e4', 'c5', 'd4', 'e6', 'dxc5', 'Bxc5', 'b4', 'Bxb4+', 'c3', 'Ba5'], ['e4', 'd5', 'Bc4', 'dxc4'], ['e4', 'd5', 'd3', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Ne7', 'Qxh8', 'Ng8'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'f3', 'g6'], ['e4', 'e5', 'Nf3', 'f5', 'd3', 'fxe4', 'dxe4', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'd5', 'd4', 'dxe4', 'f3', 'exf3', 'gxf3', 'c5', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Bc4', 'd5', 'Be2', 'dxe4', 'Bh5', 'g6', 'Bg4', 'f5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bb5+', 'c6', 'Qe2+', 'Qe7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'Nc6', 'c3', 'Nge7', 'Nf3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Nxe4'], ['e4', 'd5', 'exd5', 'Nf6', 'Nf3', 'Nxd5', 'Be2', 'Nc6', 'O-O', 'e5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'dxc5', 'Bxc5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Nf3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Bf4', 'Be7'], ['Nf3', 'Nc6', 'c4', 'e5', 'Nc3', 'Nf6', 'd3', 'Be7', 'g3', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Nf3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'c3', 'dxe4', 'f3', 'exf3', 'gxf3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c6', 'Nf3', 'c5', 'c3', 'Qb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'd4', 'Nc6', 'Nf3', 'Nf6'], ['Nf3', 'Nc6', 'c4', 'e5', 'Nc3', 'Nf6', 'd3', 'Be7', 'g3', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Nf3', 'Nc6'], ['d4', 'Nc6', 'e4', 'Nf6', 'e5', 'Nd5', 'Ne2', 'e6', 'c4', 'Nb6'], ['e4', 'Nc6', 'Nf3', 'Nf6', 'd4', 'Nxe4', 'd5', 'Nb8', 'Bd3', 'Nf6'], ['e4', 'e5', 'Qf3', 'Nc6', 'c3', 'Nf6', 'Bc4', 'd6', 'h3', 'Qe7'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'c6', 'Ba4', 'b5', 'Bb3', 'a5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nf6', 'Nc3', 'exd4', 'Nxd4', 'd5'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nb4', 'Qh5', 'Bd6', 'Bg5', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'Bxc6', 'Nxc6', 'O-O', 'g5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'Nxe5', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'f6', 'dxe5', 'fxe5', 'Bb5', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'b3', 'Bb4+', 'c3', 'Bc5'], ['d4', 'd5', 'Bf4', 'Nc6', 'c3', 'Nf6', 'e3', 'e5', 'Bg3', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd5', 'exd5', 'Nb4', 'Bb5+', 'c6'], ['e4', 'Nc6', 'd4', 'Nb4', 'Na3', 'c6', 'd5', 'd6', 'dxc6', 'Nxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'O-O', 'Nf6', 'Ng5', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'O-O', 'Bd6'], ['c4', 'e5', 'g3', 'd5', 'Bg2', 'dxc4', 'Qa4+', 'c6', 'Qxc4', 'Be6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Be2', 'c5', 'c3', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'a6', 'Ba4', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'f6', 'O-O', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'f3', 'b6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Be7', 'Re1', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'c3', 'dxe4', 'Nd2', 'Be7', 'Nxe4', 'f5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['d4', 'Nc6', 'e3', 'e5', 'c4', 'exd4', 'exd4', 'd5', 'c5', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Ng5', 'Nh6', 'Nf3', 'Be6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'f3', 'b6', 'exd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Nc3', 'Nf6', 'd3', 'Bd7'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'e6', 'Qf3', 'Be7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Bc4', 'e6', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Qe2', 'd6', 'd4', 'exd4', 'Nxd4', 'Be7'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'e4', 'Ne5', 'Qe7', 'd4', 'c5'], ['e4', 'g6', 'Bc4', 'Nf6', 'f3', 'Bg7', 'Na3', 'O-O', 'e5', 'Nh5'], ['c4', 'e5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'e3', 'd5', 'd4', 'Ne4'], ['c4', 'e5', 'Nc3', 'Qf6', 'Nf3', 'd6', 'e3', 'Nc6', 'd4', 'exd4'], ['c4', 'e5', 'Nc3', 'Nc6', 'Nf3', 'd6', 'e3', 'Bg4', 'h3', 'Bxf3'], ['c4', 'e5', 'Nc3', 'Nc6', 'Nf3', 'f6', 'e3', 'Bb4', 'Nd5', 'Bc5'], ['c4', 'c5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'e3', 'dxc4', 'd4', 'cxd4'], ['c4', 'e5', 'Nf3', 'e4', 'Ne5', 'f5', 'Nc3', 'a5', 'e3', 'a4'], ['b3', 'e5', 'Bb2', 'Nf6', 'Bxe5', 'Ng4', 'Bb2', 'Bc5', 'e3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Qf6', 'd3', 'h5', 'Nc3', 'c6', 'd4', 'c5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'e6', 'Nf3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'h6', 'c3', 'd6'], ['e4', 'd5', 'e5', 'Bf5', 'd4', 'e6', 'Nf3', 'c5', 'c3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bb4', 'c3', 'Bc5', 'd4', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'c3', 'd5'], ['Nf3', 'd5', 'd4', 'c5', 'dxc5', 'e6', 'Bg5', 'Be7', 'Bxe7', 'Nxe7'], ['Nc3', 'Nc6', 'Nf3', 'f5', 'e4', 'e6', 'd3', 'fxe4', 'Bg5', 'Nf6'], ['d4', 'Nf6', 'e3', 'c5', 'dxc5', 'Nc6', 'Bb5', 'Qc7', 'Nc3', 'a6'], ['d4', 'Nf6', 'e3', 'c5', 'c3', 'Nc6', 'Bb5', 'Qc7', 'Nd2', 'd5'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'd4', 'd5', 'Nd2', 'dxc4'], ['d3', 'e5', 'e4', 'd5', 'Nc3', 'd4', 'Nb5', 'a6', 'Na3', 'c5'], ['d4', 'd5', 'c4', 'Nc6', 'Nc3', 'dxc4', 'Qa4', 'Qxd4', 'Nb5', 'Qd7'], ['e4', 'e6', 'Bc4', 'd5', 'Bb3', 'dxe4', 'Nc3', 'Nf6', 'd3', 'Bb4'], ['d4', 'Nf6', 'c4', 'Nc6', 'd5', 'Ne5', 'f4', 'Neg4', 'e4', 'Nxe4'], ['e4', 'e5', 'Bc4', 'Nf6', 'b3', 'Nxe4', 'Bb2', 'Qf6', 'Qe2', 'Bc5'], ['Nf3', 'd5', 'd3', 'c5', 'e4', 'Nf6', 'e5', 'Nfd7', 'Qe2', 'Nc6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd6', 'd4', 'Bg4', 'Bxf4', 'Bxf3'], ['Nc3', 'e5', 'Nf3', 'Nc6', 'd4', 'e4', 'Nxe4', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'd6', 'd4', 'e5', 'c3', 'c5', 'Be3', 'cxd4', 'cxd4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bb4+', 'c3', 'Be7', 'Bc4'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qh5', 'g6', 'Qxe5+', 'Kf8', 'Qxh8', 'f6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'Bc5', 'Nd5', 'Qd6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'Qe2', 'O-O'], ['e4', 'd5', 'c3', 'dxe4', 'Bb5+', 'Bd7', 'Bc4', 'Nf6', 'h3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nh6', 'O-O', 'Bc5'], ['e4', 'Nf6', 'e5', 'Nh5', 'Qxh5', 'g6', 'Qd1', 'd5', 'd4', 'e6'], ['e4', 'Nc6', 'f4', 'e6', 'c4', 'd5', 'Qc2', 'f5', 'exf5', 'Qh4+'], ['d4', 'd5', 'c4', 'c6', 'e3', 'a6', 'a4', 'Nf6', 'Nf3', 'Bg4'], ['d4', 'c5', 'dxc5', 'Qa5+', 'Qd2', 'Qxc5', 'Nf3', 'Nf6', 'Nc3', 'Ng4'], ['d4', 'e5', 'e4', 'exd4', 'Nf3', 'Nc6', 'Nxd4', 'Ne5', 'f3', 'Bc5'], ['d4', 'Nf6', 'Nf3', 'd5', 'Nc3', 'c6', 'a3', 'Bf5', 'Bf4', 'e6'], ['d4', 'e6', 'Bf4', 'd5', 'Nf3', 'Bd6', 'Bxd6', 'Qxd6', 'e3', 'Nf6'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'd5', 'Bg5', 'Be7', 'Bxf6', 'Bxf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'e5', 'Nc3', 'd6', 'e4', 'Bd7'], ['e4', 'e5', 'd3', 'Nf6', 'f4', 'Nc6', 'Nf3', 'd5', 'Nc3', 'Bg4'], ['d4', 'Nf6', 'Nf3', 'g6', 'c4', 'Bg7', 'Nc3', 'd6', 'e4', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bg5', 'd5', 'Qa4+', 'Nc6'], ['d4', 'b6', 'c4', 'Bb7', 'd5', 'Nf6', 'Nc3', 'e6', 'Bg5', 'Bb4'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'a6', 'c3', 'Bf5', 'Nf3', 'e6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'c5', 'Bg7', 'Nf3', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'c5', 'a5', 'Nc3', 'Nf6', 'Bg5', 'Bd7'], ['e4', 'e6', 'Be2', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'dxc5', 'Bxc5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'Bg4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bg4', 'Be2', 'Qe7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bg4', 'Qd3', 'Qe7+'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'Bg5', 'Bb4', 'Bxf6', 'Qxf6'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e6', 'Bxc4', 'a6', 'a3', 'h6'], ['e4', 'e6', 'e5', 'd5', 'exd6', 'Qxd6', 'Nc3', 'a6', 'a3', 'Nf6'], ['d4', 'c6', 'e4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'dxc5', 'Bg4'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'a6', 'e3', 'Bg4', 'c4', 'e6'], ['d4', 'e6', 'e4', 'd5', 'exd5', 'exd5', 'g3', 'Nf6', 'Bg2', 'h6'], ['d4', 'e6', 'Nf3', 'd5', 'c4', 'Nc6', 'Nc3', 'Bb4', 'Bg5', 'Nge7'], ['d4', 'd5', 'Nf3', 'c6', 'Nc3', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg4'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'e4', 'O-O'], ['f4', 'd5', 'Nf3', 'c5', 'e3', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'e6'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'Bb4', 'Bg5', 'O-O'], ['f4', 'e6', 'Nf3', 'c5', 'e3', 'd5', 'd3', 'Nc6', 'Be2', 'Nf6'], ['d4', 'd5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bf4', 'a6', 'e3', 'Bg4'], ['b4', 'd5', 'Bb2', 'Nf6', 'e3', 'Bf5', 'Nf3', 'e6', 'b5', 'c6'], ['c4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe4+', 'Be7', 'Nf3', 'Nf6'], ['d4', 'd5', 'Nf3', 'Nf6', 'Nc3', 'Bf5', 'a3', 'e6', 'Bg5', 'Be7'], ['d4', 'd5', 'Nf3', 'Bf5', 'Nc3', 'e6', 'e4', 'dxe4', 'Nd2', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'Nc3', 'Bc5'], ['b3', 'e5', 'Bb2', 'Nc6', 'd3', 'd6', 'Nf3', 'Nf6', 'Qd2', 'h6'], ['Nf3', 'b6', 'e4', 'Bb7', 'Nc3', 'Nf6', 'd3', 'Na6', 'a3', 'e6'], ['b3', 'e6', 'Bb2', 'Nf6', 'e4', 'Nxe4', 'Bd3', 'f5', 'Qh5+', 'g6'], ['e4', 'e6', 'Nf3', 'd5', 'Bd3', 'c5', 'e5', 'Nc6', 'Be2', 'g6'], ['e4', 'e6', 'd4', 'Nc6', 'Nf3', 'f6', 'Bd3', 'Bb4+', 'c3', 'Be7'], ['b4', 'd5', 'Bb2', 'Nf6', 'e3', 'Nc6', 'a3', 'e5', 'Bb5', 'a6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'e6', 'Na3', 'Bb4+', 'Bd2', 'Na6'], ['e4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd4', 'd5', 'exd5', 'exd5'], ['d4', 'd5', 'Nf3', 'Nc6', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'h6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nf3', 'Bg4', 'h3', 'Bh5'], ['e4', 'e5', 'Nc3', 'Nf6', 'f4', 'd5', 'fxe5', 'Nfd7', 'exd5', 'Nxe5'], ['e3', 'd5', 'h3', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Ne7', 'Qxh8'], ['e4', 'e6', 'Nf3', 'Nc6', 'd4', 'd5', 'e5', 'a6', 'c3', 'Nh6'], ['d4', 'b6', 'e3', 'h6', 'Qf3', 'd5', 'c4', 'e6', 'Nc3', 'Bb7'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qe2', 'Nf6', 'Nc3', 'Bc5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'Nc6', 'Nf3', 'g6', 'Be3', 'Nge7'], ['e4', 'e6', 'Nf3', 'Nc6', 'd4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nde7'], ['e4', 'e5', 'Qh5', 'Nc6', 'Nf3', 'd6', 'g3', 'g6', 'Qh3', 'Bxh3'], ['e4', 'e5', 'Qh5', 'Bd6', 'Qe2', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'Bb4'], ['e4', 'e6', 'Nc3', 'b6', 'Nf3', 'Bb7', 'd3', 'Bb4', 'a3', 'Bxc3+'], ['e4', 'e6', 'Nf3', 'Nf6', 'e5', 'Nd5', 'c4', 'Ne7', 'd4', 'd6'], ['e3', 'e6', 'f3', 'Nc6', 'c3', 'f5', 'Bd3', 'a6', 'Na3', 'g6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Qe7+', 'Qe2', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Qe7+', 'Be2', 'c6'], ['e4', 'e6', 'f4', 'Nc6', 'd4', 'f5', 'e5', 'Nce7', 'Be3', 'd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'g6', 'O-O', 'Bg7', 'c3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Bc5', 'c3', 'Nxe4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'e6', 'O-O', 'Nge7', 'Nc3', 'a6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c5', 'cxd5', 'exd5', 'Nf3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Bd6', 'Bd3', 'Bg4'], ['Nf3', 'Nf6', 'g3', 'c6', 'Bg2', 'd6', 'd4', 'Bg4', 'O-O', 'Nbd7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'e3', 'e6', 'Nf3', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6'], ['c4', 'e5', 'g3', 'd5', 'cxd5', 'Qxd5', 'Nf3', 'Nc6', 'Nc3', 'Qd8'], ['d4', 'e6', 'c4', 'Nf6', 'Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'Bb4+'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'Ndf3', 'c5'], ['d4', 'c5', 'd5', 'e5', 'e4', 'd6', 'Bd3', 'c4', 'Bxc4', 'a5'], ['h4', 'd5', 'a4', 'e5', 'e4', 'dxe4', 'Qe2', 'Nc6', 'c4', 'Nf6'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'Bc4', 'Nb6', 'Bb3', 'dxe5'], ['e4', 'e6', 'e5', 'd6', 'exd6', 'Bxd6', 'Nh3', 'Nc6', 'c3', 'e5'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e3', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c6', 'Nf3', 'dxe4', 'Nxe4', 'Nf6'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'c6', 'dxc6', 'Nxc6', 'Nf3', 'e5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'Nf6', 'Bd3', 'Bg4'], ['Nf3', 'c6', 'e4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bg4', 'h3', 'Bh5'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Be7', 'Nf3', 'Nf6'], ['c4', 'Nf6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'd4', 'g6', 'e4', 'Nxc3'], ['e4', 'c6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Nf6', 'Nxf6+', 'exf6'], ['c4', 'Nf6', 'd4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'Bc5', 'Nc3', 'Bxf2+'], ['e4', 'e6', 'Nf3', 'Nc6', 'Bc4', 'Bd6', 'd4', 'e5', 'Ng5', 'Nh6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'd4', 'Nf6', 'e5', 'Nd5'], ['d4', 'd6', 'e4', 'Nf6', 'Nc3', 'Nbd7', 'e5', 'dxe5', 'dxe5', 'Nxe5'], ['d4', 'd6', 'Bg5', 'Nd7', 'e3', 'Ngf6', 'h3', 'g6', 'Nd2', 'Bg7'], ['e4', 'g6', 'Nf3', 'Bg7', 'Bc4', 'd6', 'd4', 'Nc6', 'c3', 'e5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'a6', 'Bc4', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bd6', 'Bxc6', 'dxc6', 'O-O', 'Be6'], ['e4', 'd6', 'd4', 'Nd7', 'Nf3', 'Ngf6', 'Nc3', 'g6', 'Bc4', 'Bg7'], ['d4', 'd6', 'Bg5', 'Nd7', 'e3', 'Ngf6', 'Nd2', 'g6', 'c3', 'Bg7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'Nc6', 'Nf3', 'Nf6'], ['d4', 'd6', 'c4', 'Nd7', 'e4', 'Ngf6', 'Nc3', 'g6', 'h3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'b5'], ['d4', 'd6', 'Nf3', 'Nd7', 'e3', 'Ngf6', 'c4', 'g6', 'Nc3', 'Bg7'], ['e4', 'd6', 'Nf3', 'Nd7', 'Bb5', 'Nf6', 'Bxd7+', 'Bxd7', 'e5', 'dxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'Nc3', 'Nf6', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'f5', 'd3', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Nxe4'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'cxb5', 'a6', 'bxa6', 'g6'], ['e4', 'd6', 'Bc4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'd5', 'exd5', 'exd5'], ['e4', 'g6', 'd4', 'Bg7', 'Nc3', 'd6', 'Nf3', 'c6', 'a4', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c4', 'e6', 'Nf3', 'Nf6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Bb4', 'e3', 'O-O'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bc4', 'Nf6', 'f4', 'e6', 'd3', 'd5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'Ne7', 'Qg4', 'c5'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'Nd2', 'Bb7', 'Qb3', 'Qb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'd4', 'Nd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Be2', 'O-O'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nc3', 'Nxe5', 'a3', 'Nf6', 'f4', 'Nc6'], ['Nf3', 'Nf6', 'c4', 'd5', 'cxd5', 'Nxd5', 'Nc3', 'Nc6', 'e4', 'Ndb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Be7', 'd3', 'Na5'], ['e4', 'c5', 'Nf3', 'Nc6', 'a3', 'e6', 'Nc3', 'd5', 'Bb5', 'a6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'a3', 'd5', 'exd5', 'exd5'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7', 'Nc3', 'a6'], ['e4', 'e6', 'Nf3', 'h6', 'Nc3', 'd5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd3', 'Nf6', 'Bg5', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'dxc6', 'Nc3', 'h5'], ['e4', 'e5', 'f4', 'Nf6', 'fxe5', 'Nxe4', 'Qe2', 'Qh4+', 'g3', 'Qg5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bd6'], ['e4', 'e5', 'Nf3'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'Nf6', 'a3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Nc3', 'Bd7', 'd3', 'h6'], ['e4', 'd5', 'Nc3', 'e6', 'e5', 'Bc5', 'd4', 'Bb4', 'Nf3', 'Nc6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'd6', 'Qe5+', 'Ne7', 'Qd4', 'g6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Nc6', 'Nf3', 'Qd6'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Bb4+', 'Bd2', 'Nc6', 'Bxb4', 'Nxb4'], ['e4', 'd5', 'd3', 'e6', 'f4', 'Bb4+', 'Bd2', 'a5', 'Nh3', 'd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nh4', 'Nf6', 'Bc4', 'Nxe4', 'Nf5', 'd5'], ['e4', 'e5', 'Bb5', 'c6', 'Qh5', 'Bd6', 'd4', 'Nf6', 'Qxe5+', 'Bxe5'], ['e4', 'e5', 'd3', 'Bb4+', 'Bd2', 'Bc5', 'b4', 'Bd6', 'c4', 'Qf6'], ['e4', 'e5', 'f4', 'Qh4+', 'g3', 'Qf6', 'f5', 'Bc5', 'Nf3', 'g6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'd6'], ['c4', 'e5', 'g3', 'Nc6', 'Bg2', 'f5', 'Nc3', 'Nf6', 'd3', 'Bc5'], ['c4', 'e5', 'g3', 'Bc5', 'Bg2', 'Nc6', 'Nc3', 'd6', 'Nf3', 'Bf5'], ['e4', 'c5', 'b4', 'cxb4', 'a3', 'bxa3', 'Nxa3', 'Nc6', 'd4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'h6', 'd3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bb4', 'a3', 'Bxc3'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'Be6', 'Bxe6', 'fxe6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nc3', 'O-O'], ['e4', 'c5', 'Nc3', 'e6', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['c4', 'Nf6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'g3', 'g6', 'Bg2', 'Nxc3'], ['c4', 'e5', 'Nc3', 'Nf6', 'd3', 'Bb4', 'Qc2', 'd5', 'cxd5', 'Nxd5'], ['c4', 'e5', 'd3', 'Bc5', 'Nc3', 'Qf6', 'e3', 'b5', 'Nxb5', 'a6'], ['e4'], ['c4', 'Nf6', 'Nf3', 'g6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['c4', 'e5', 'Nc3', 'c6', 'd4', 'd6', 'Nf3', 'exd4', 'Nxd4', 'c5'], ['c4', 'c5', 'g3', 'Na6', 'Bg2', 'Qa5', 'Nc3', 'd6', 'Nf3', 'e6'], ['c4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'e4', 'd6', 'Be2', 'O-O'], ['c4', 'e5', 'd3', 'Nc6', 'Nf3', 'Nge7', 'g3', 'g6', 'Bg2', 'Bg7'], ['c4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['c4', 'Nf6', 'Nc3', 'e5', 'd3', 'b6', 'Nf3', 'Nc6', 'a3', 'a5'], ['c4', 'g6', 'Nc3', 'Bg7', 'g3', 'd6', 'Bg2', 'e5', 'd3', 'c6'], ['c4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'e4', 'd6', 'd4', 'O-O'], ['c4', 'Nf6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nf6', 'd4', 'e5'], ['c4', 'Nf6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nxc3', 'bxc3', 'g6'], ['c4', 'e6', 'Nc3', 'Nf6', 'g3', 'd5', 'cxd5', 'exd5', 'Bg2', 'Bd6'], ['c4', 'Nf6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'd4', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nxc3'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'g3', 'g6', 'Bg2', 'Bg7', 'd3', 'Nc6'], ['c4', 'f5', 'Nc3', 'c6', 'b3', 'e6', 'Bb2', 'Nf6', 'g3', 'Be7'], ['c4', 'e5', 'd3', 'Nc6', 'Nf3', 'd6', 'g3', 'Bg4', 'Bg2', 'Qd7'], ['c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'Nf6', 'a3', 'Bxc3', 'bxc3', 'd5'], ['c4', 'd5', 'e3', 'dxc4', 'Bxc4', 'Nc6', 'Nc3', 'Na5', 'Qa4+', 'c6'], ['c4', 'e5', 'd3', 'h6', 'Nf3', 'Nc6', 'a3', 'a5', 'Nc3', 'Nf6'], ['c4', 'e5', 'd3', 'f5', 'Nc3', 'Nf6', 'Nf3', 'c6', 'g3', 'd6'], ['c4', 'f5', 'g3', 'Nf6', 'Bg2', 'e6', 'Nc3', 'Bb4', 'Qc2', 'Bxc3'], ['c4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'g3', 'Nd4', 'Bg2', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'f3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'e6'], ['e4', 'Nc6', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'Bg4'], ['d4', 'e6', 'e4', 'Bb4+', 'c3', 'Ba5', 'Nf3', 'Ne7', 'Bc4', 'a6'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nce7', 'Nf3', 'd6', 'Bc4', 'f5'], ['d4', 'd5', 'Bg5', 'f6', 'Bh4', 'g5', 'Bg3', 'Nc6', 'e3', 'h5'], ['e4', 'b6', 'd4', 'Bb7', 'Bd3', 'e6', 'Nc3', 'h6', 'Nf3', 'Nf6'], ['d4', 'd5', 'Bg5', 'h6', 'Bh4', 'Bf5', 'e3', 'c6', 'Bd3', 'Bxd3'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd3', 'Nf6', 'O-O', 'e6'], ['d4', 'd5', 'Bf4', 'c5', 'e3', 'Nc6', 'Nf3', 'Nf6', 'Nbd2', 'e6'], ['e4', 'c5', 'Bc4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'd5', 'exd5', 'exd5'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Qe7', 'd3', 'Qxe4+', 'dxe4'], ['e4', 'c6', 'e5', 'd5', 'exd6', 'exd6', 'Qe2+', 'Ne7', 'd3', 'Qa5+'], ['e4', 'e6', 'Nf3', 'Nc6', 'd4', 'd5', 'Nc3', 'Bb4', 'exd5', 'Bxc3+'], ['e4', 'c6', 'c3', 'd5', 'f3', 'Nf6', 'Bd3', 'e5', 'Qb3', 'Be6'], ['e4', 'e5', 'Nc3', 'Nf6', 'g4', 'd6', 'g5', 'Bg4', 'f3', 'Be6'], ['e4', 'e5', 'd4', 'Nc6', 'Nf3', 'd6', 'Bb5', 'Bd7', 'Bxc6', 'bxc6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bc4', 'd6', 'a3', 'g6', 'd3', 'Nf6'], ['e4', 'd5', 'd3', 'dxe4', 'd4', 'Nf6', 'Bc4', 'e6', 'Nc3', 'Nc6'], ['d4', 'd5', 'e3', 'Nf6', 'Nc3', 'c6', 'Nf3', 'g6', 'Ne5', 'Bg7'], ['e4', 'd5', 'f3', 'e5', 'd3', 'Nc6', 'g4', 'Nd4', 'Nh3', 'Qh4+'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'e6', 'Nc3', 'Nc6'], ['e4', 'c6', 'Nf3', 'd5', 'd3', 'Nf6', 'Bf4', 'Nbd7', 'e5', 'Ng4'], ['e4', 'e5', 'f4', 'Qh4+', 'g3', 'Qf6', 'd3', 'exf4', 'gxf4', 'd5'], ['e4', 'c5', 'Nc3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qa4', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng5', 'Qd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'Nc3', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'f4', 'Qh4+', 'g3', 'Qh6', 'd3', 'Nf6', 'fxe5', 'Nh5'], ['e4', 'Nf6', 'Nc3', 'e5', 'f4', 'exf4', 'Nf3', 'Bb4', 'd3', 'c5'], ['e4', 'e5', 'Bb5', 'c6', 'Ba4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Qe4+'], ['e4', 'd5', 'Qe2', 'e5', 'Qb5+', 'Nc6', 'Qxd5', 'Qf6', 'Bb5', 'Ne7'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'dxc4', 'Bxc4', 'e6', 'Nc3', 'Qe7'], ['e4', 'e5', 'f4', 'd6', 'fxe5', 'Nc6', 'exd6', 'Qxd6', 'Bb5', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'Bg5', 'h6', 'Bxf6', 'gxf6'], ['e4', 'h5', 'd4', 'c6', 'Bc4', 'b5', 'Bb3', 'd6', 'Nc3', 'a5'], ['d4', 'c6', 'c4', 'Nf6', 'Nc3', 'c5', 'd5', 'd6', 'e4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd5', 'Nc3', 'd4', 'Nd5', 'a6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'Bd3', 'Nh6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qc5', 'e5', 'Nf3', 'Bxc5'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'd3', 'd5', 'e5', 'Nfd7'], ['d4', 'c6', 'c4', 'd5', 'c5', 'e6', 'Nc3', 'Nf6', 'Nf3', 'g6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nd2', 'e6', 'f3', 'Qg5'], ['d4', 'c6', 'c4', 'd5', 'Nc3', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'b5'], ['e4', 'd5', 'f3', 'c5', 'd3', 'Nc6', 'Nc3', 'Qa5', 'Bd2', 'e6'], ['e4', 'c6', 'Qh5', 'Nf6', 'Qf3', 'd5', 'e5', 'Ne4', 'd3', 'Ng5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxc5', 'dxc5', 'Qxd8+', 'Nxd8'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'e3', 'Bb4', 'Nf3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Ne5', 'f4', 'Ng6'], ['g3', 'c6', 'Bg2', 'd5', 'e4', 'dxe4', 'Bxe4', 'Nf6', 'Bg2', 'Bf5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qa5'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'f6', 'd4', 'c5', 'c3', 'Ne7'], ['d4', 'e6', 'c4', 'Nf6', 'Nc3', 'Bb4', 'Bd2', 'c5', 'dxc5', 'O-O'], ['e4', 'c6', 'd4', 'd5', 'e5', 'e6', 'Nf3', 'Ne7', 'g4', 'Ng6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'c4', 'Nc6', 'Nf3', 'd6', 'a3', 'Nf6', 'd3', 'g6'], ['g3', 'e5', 'Bg2', 'Nc6', 'e4', 'Bc5', 'Nf3', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Qf3', 'Nf6', 'Bc4', 'Bc5', 'd3', 'd6', 'Nc3', 'Be6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'Nxe4', 'dxe5', 'Nc6', 'Qe2', 'd5'], ['e4', 'Nf6', 'Qf3', 'h5', 'Bc4', 'd6', 'd3', 'Bg4', 'Qe3', 'a6'], ['e4', 'e6', 'e5', 'd6', 'exd6', 'Qxd6', 'd4', 'g6', 'c3', 'Bg7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Bd2', 'Qd8'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qa4', 'd6', 'c3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Bc5', 'O-O', 'd6', 'd3', 'h5'], ['e4', 'e5', 'Qf3', 'd5', 'exd5', 'c6', 'dxc6', 'Nxc6', 'Bc4', 'f6'], ['e4', 'c5', 'Qf3', 'd6', 'Bc4', 'b6', 'Qxf7+', 'Kd7', 'Bb5+', 'Kc7'], ['e4', 'e5', 'Qf3', 'Nc6', 'c3', 'd5', 'exd5', 'Na5', 'Nh3', 'Nf6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Qf6', 'Nf3', 'd6'], ['c4', 'e5', 'e4', 'Qf6', 'f3', 'Bc5', 'Ne2', 'd6', 'Nec3', 'c6'], ['e4', 'Nf6', 'Qf3', 'e5', 'Bc4', 'c6', 'Nh3', 'd5', 'exd5', 'cxd5'], ['e4', 'e5', 'Bc4', 'Qh4', 'Qe2', 'Bc5', 'g3', 'Qf6', 'Nf3', 'Nc6'], ['e4', 'e5', 'Qf3', 'Nh6', 'Bc4', 'Qe7', 'd3', 'd6', 'Bxh6', 'gxh6'], ['e4', 'e5', 'Qf3', 'Nf6', 'Bc4', 'd6', 'Qb3', 'Qe7', 'd3', 'b6'], ['e4', 'e5', 'Qf3', 'c6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Qa5+'], ['e4', 'e5', 'Qf3', 'Nf6', 'Bc4', 'd5', 'exd5', 'Bg4', 'Qg3', 'Bh5'], ['d4', 'a5', 'Nf3', 'h5', 'c4', 'Rh6', 'Bxh6', 'gxh6', 'Nc3', 'Ra6'], ['Nf3', 'd5', 'Nd4', 'e5', 'Nf5', 'Bxf5', 'Na3', 'Bxa3', 'bxa3', 'Nc6'], ['a4', 'd5', 'h4', 'e5', 'd4', 'e4', 'e3', 'a6', 'Nh3', 'Be7'], ['Nf3', 'd5', 'Nd4', 'e5', 'Nb5', 'Bd7', 'Nxc7+', 'Qxc7', 'Na3', 'd4'], ['e4', 'Nc6', 'd4', 'Nxd4', 'Qxd4', 'Nf6', 'e5', 'd6', 'exf6', 'exf6'], ['e4', 'Nf6', 'd3', 'Nh5', 'Qxh5', 'g6', 'Qe5', 'h6', 'Qxh8', 'c5'], ['Nc3', 'd5', 'Nxd5', 'Qxd5', 'd3', 'Nc6', 'e4', 'Qd4', 'c3', 'Qf6'], ['Nf3', 'e5', 'Nxe5', 'Nf6', 'Nd3', 'd5', 'Nb4', 'Bxb4', 'a3', 'Bf8'], ['e4', 'Nc6', 'Nf3', 'f6', 'e5', 'Nxe5', 'Nxe5', 'fxe5', 'Qh5+', 'g6'], ['Nf3', 'e5', 'Nd4', 'exd4', 'e3', 'Nf6', 'exd4', 'd5', 'Qe2+', 'Ne4'], ['e4', 'Nf6', 'e5', 'Ng4', 'Qxg4', 'g6', 'Bc4', 'h5', 'Qf3', 'c6'], ['Nf3', 'g6', 'Ne5', 'Bg7', 'Nf3', 'h5', 'h3', 'd6', 'Ng5', 'e5'], ['Nf3', 'Nf6', 'Ne5', 'd6', 'Nxf7', 'Kxf7', 'Nc3', 'Nc6', 'Nd5', 'Nxd5'], ['e4', 'e5', 'd3', 'd6', 'Nf3', 'Nf6', 'Be3', 'Be7', 'Nc3', 'Nc6'], ['Nc3', 'd5', 'Nxd5', 'Qxd5', 'Nf3', 'Nf6'], ['d4', 'd5', 'c4', 'c5', 'Nc3', 'cxd4', 'Qxd4', 'Nd7', 'e4', 'dxe4'], ['Nf3', 'd5', 'Nd4', 'Bd7', 'Nf5', 'Bxf5', 'g3', 'Bc8', 'd4', 'Nf6'], ['e4', 'e5', 'Qh5', 'a5', 'Qxe5+', 'Be7', 'Qxg7', 'Bf8', 'Qxh8', 'd5'], ['a4', 'e5', 'h4', 'Nf6', 'b4', 'd5', 'g3', 'Nc6', 'e3'], ['e4', 'e5', 'Qf3', 'd6'], ['b4', 'e5', 'Nh3', 'Bxb4', 'Ng5', 'Nf6', 'Nxh7', 'Rxh7', 'Nc3', 'd5'], ['e4', 'e5', 'd3', 'd6', 'Ne2', 'c5'], ['d4', 'd5', 'c3', 'c6', 'e3', 'e6', 'Nf3', 'Nf6', 'Bd3', 'Bd6'], ['Nc3', 'd5', 'Nf3', 'e6', 'd3', 'Nf6', 'e3', 'Nc6', 'a4', 'Bd6'], ['d4', 'd5', 'h3', 'Nc6', 'Nf3', 'Bf5', 'c3', 'Nf6', 'Bf4', 'e6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nc3', 'Nf6', 'h3', 'Nc6', 'a3', 'Be7', 'Bb5', 'Nd4'], ['e4', 'a6', 'Bc4', 'b5', 'Bb3', 'c5', 'Qf3', 'c4', 'd4', 'cxb3'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Qe7', 'Qxh8', 'Nf6', 'd3', 'd5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'h6', 'd4', 'exd4'], ['e4', 'e5', 'a3', 'Bc5', 'Nf3', 'Nc6', 'h3', 'Nf6', 'Nc3', 'O-O'], ['e4', 'e5', 'Qh5', 'Bc5', 'Qxe5+', 'Qe7', 'Nf3', 'Qxe5', 'Nxe5', 'f6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'b6', 'Qxf7#'], ['e4', 'c5', 'Nc3', 'g6', 'Bc4', 'Bg7', 'Qf3', 'e6', 'Qxf7+', 'Kxf7'], ['e4', 'e5', 'c3', 'Nc6', 'd4', 'Nf6', 'Bd3', 'Bd6', 'd5', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'd3', 'h6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nf3', 'Bxf2+', 'Kxf2', 'Nc6', 'Re1', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'O-O', 'd6'], ['Nf3', 'd5', 'd4', 'Nc6', 'h3', 'Nf6', 'e3', 'g6', 'Bb5', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Qe7', 'b3', 'Nf6'], ['Nf3', 'd5', 'c4', 'dxc4', 'e4', 'Bg4', 'd4', 'cxd3', 'Bxd3', 'Nc6'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'd6', 'exd6', 'Bxd6', 'c3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd4', 'd6', 'Bc4', 'Nxe4'], ['e3', 'd5', 'b3', 'g6', 'Bb2', 'f6', 'Qf3', 'c6', 'c4', 'Bg7'], ['g3', 'c5', 'Bg2', 'e6', 'c4', 'Qf6', 'e3', 'Na6', 'd3', 'g6'], ['c4', 'e5', 'Nc3', 'Nf6', 'e4', 'c6', 'd3', 'd5', 'exd5', 'cxd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'e6', 'e5', 'Ng8'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'c6', 'Nf3', 'h6'], ['e4', 'e5'], ['e4', 'c5', 'Nf3'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'g6', 'Bxc6', 'bxc6', 'c3', 'Bg7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'd5', 'Nce7', 'Bg5', 'Nf6'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'e6', 'c5', 'c6', 'b4', 'Ne4'], ['d3', 'd5', 'e3', 'e5', 'a3', 'Nc6', 'h3', 'Nf6', 'g3', 'Bf5'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'Be2', 'Nxe4', 'Qa4+'], ['e4', 'c5', 'Na3', 'Nc6', 'Nb5', 'Nf6', 'e5', 'Nxe5', 'f4', 'Nc6'], ['e4', 'e5', 'Nf3', 'f6', 'Nh4', 'Nh6', 'Bc4', 'Nc6', 'd3', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'd4', 'Nxe4'], ['d4', 'd5', 'f3', 'Bf5', 'g4', 'Bg6', 'Bg2', 'h6', 'e4', 'e6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'd4', 'Nxe4', 'Bd3', 'f5'], ['e4', 'c5', 'Nf3', 'd6', 'Ng5', 'Nf6', 'Bc4', 'e6', 'f4', 'h6'], ['Nf3', 'Nf6', 'g3', 'd5', 'd4', 'e6', 'Bg5', 'h6', 'Bxf6', 'Qxf6'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'Nf6', 'e5', 'Nd5', 'd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'd3', 'a6', 'a3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Bc5', 'Nxf7', 'Bxf2+'], ['Nf3', 'd5', 'c4', 'e6', 'b3', 'Nf6', 'Bb2', 'Be7', 'g3', 'Nc6'], ['d4', 'Nf6', 'Nf3', 'd5', 'Nc3', 'g6', 'Bf4', 'Bg7', 'e3', 'O-O'], ['d4', 'b6', 'Nf3', 'Bb7', 'e3', 'e6', 'Ne5', 'c5', 'dxc5', 'Bxc5'], ['Nf3', 'd5', 'd4', 'Nf6', 'c3', 'h6', 'Nbd2', 'Ne4', 'e3', 'Bg4'], ['d4', 'd6', 'Nf3', 'e6', 'e4', 'd5', 'exd5', 'exd5', 'Ne5', 'f6'], ['e4', 'd6', 'f3', 'e5', 'Na3', 'Nf6', 'c3', 'Nc6', 'Qe2', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Qe7', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'Qxf3', 'dxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Nc3', 'Bg4', 'h3', 'Bh5'], ['d4', 'b6', 'e4', 'Bb7', 'Nc3', 'e6', 'Nf3', 'Bb4', 'Ne5', 'Bxe4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Nf6', 'd4', 'Qd6'], ['d4', 'Nf6', 'Nc3', 'd5', 'e3', 'c6', 'Nf3', 'Bg4', 'Be2', 'Nbd7'], ['d4', 'd5', 'e3', 'e6', 'Nc3', 'Bb4', 'Bd2', 'Bxc3', 'Bxc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'Bc4', 'Nf6', 'Ng5', 'Be6'], ['d4', 'd5', 'Nf3', 'c6', 'e3', 'Bg4', 'h3', 'Bh5', 'g4', 'Bg6'], ['d4', 'Nf6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'd5', 'e5'], ['e4', 'e5', 'f4', 'exf4', 'Bc4', 'Qh4+', 'Kf1', 'Bc5', 'd4', 'Be7'], ['d4', 'd5', 'Nf3', 'Bg4', 'Ne5', 'Bf5', 'e3', 'Be4', 'Nc3', 'Nf6'], ['d4', 'd5', 'Nf3', 'a5', 'e3', 'e6', 'Ne5', 'Nh6', 'e4', 'f6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'd6', 'd3', 'a6', 'Ng5', 'Be6'], ['d4', 'e6', 'Nf3', 'd5', 'e3', 'Nf6', 'Ne5', 'Bd6', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'd5'], ['d4', 'd5', 'e3', 'Bf5', 'Nf3', 'Nf6', 'Ne5', 'e6', 'Bd3', 'Bxd3'], ['d4', 'Nf6', 'e3', 'g6', 'Nf3', 'Bg7', 'Nc3', 'O-O', 'Bc4', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'Nc3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'c3', 'Nc6', 'b4', 'a6'], ['d4', 'c6', 'e4', 'b6', 'Nf3', 'Na6', 'Ne5', 'Nc7', 'Qf3', 'Nf6'], ['d4', 'c6', 'e4', 'd5', 'exd5', 'cxd5', 'Nf3', 'a6', 'Ne5', 'Nf6'], ['c3', 'd5', 'a3', 'Nf6', 'd4', 'Nc6', 'Bf4', 'e6', 'e3', 'Ne4'], ['e4', 'e5', 'Nf3', 'd6', 'c3', 'Bg4', 'Bc4', 'Nf6', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'c3', 'Nc6', 'h3', 'Bxf3'], ['d4', 'd5', 'e3', 'Nf6', 'Nf3', 'Bg4', 'Nc3', 'e6', 'h3', 'Bxf3'], ['d4', 'Nf6', 'Nc3', 'd5', 'e3', 'Bf5', 'Nf3', 'c6', 'Ne5', 'Nbd7'], ['d4', 'd5', 'e3', 'Bf5', 'Nf3', 'c6', 'Ne5', 'Nd7', 'Qf3', 'Nxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd4', 'Bg4', 'dxe5', 'Nxe5'], ['d4', 'Nf6', 'e3', 'c5', 'Nf3', 'cxd4', 'exd4', 'd5', 'Ne5', 'Nbd7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'O-O', 'Nc6', 'd3', 'Nd4'], ['e4', 'd5', 'Bc4', 'dxc4', 'Nf3', 'Bg4', 'O-O', 'Bxf3', 'gxf3', 'e5'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'Nf6', 'd3', 'O-O', 'O-O', 'd6'], ['e4', 'b6', 'Bc4', 'Bb7', 'Nf3', 'Bxe4', 'O-O', 'Bb7', 'd4', 'g6'], ['e4', 'c5', 'Bc4', 'e6', 'e5', 'a6', 'Nf3', 'b5', 'Bd3', 'Bb7'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nc6', 'O-O', 'Nxe4', 'd3', 'Nf6'], ['b3', 'd5', 'Bb2', 'Nf6', 'f4', 'Bg4', 'Nf3', 'Bxf3', 'exf3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'Nc3', 'b4', 'Na4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nd4', 'Nxd4', 'exd4'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'a6', 'Bd3', 'c5', 'Ngf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Bc5', 'c3', 'd6'], ['c4', 'c5', 'Nc3', 'Nc6', 'g3', 'd6', 'Bg2', 'g6', 'Nf3', 'Bg7'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'f4', 'Bg7', 'Bc4', 'O-O'], ['Nf3', 'c5', 'c4', 'g6', 'Nc3', 'Bg7', 'e3', 'Nc6', 'd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Qb6', 'Nb3', 'Nf6'], ['a4', 'e5', 'e4', 'Nf6', 'Nf3', 'Nxe4', 'd3', 'Nf6', 'Nxe5', 'd5'], ['e4', 'd6', 'Nf3', 'Nc6', 'Nc3', 'g6', 'Bd3', 'a6', 'b3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Bd6', 'd4', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bd6'], ['d4', 'd5', 'c3', 'Nc6', 'e3', 'e5', 'Bb5', 'exd4', 'cxd4'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'g5', 'h4', 'g4', 'Ng5', 'Nf6'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'e6', 'e3', 'Bd6', 'Bg5', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'd4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Be7', 'Ng5', 'O-O'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'd4', 'exd4', 'Bg5', 'h6'], ['e4', 'e6', 'd4', 'd6', 'Nf3', 'h6', 'Bd3', 'Be7', 'O-O', 'a6'], ['e4', 'e5', 'd4', 'exd4', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'e5', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Nxe4', 'Nxe4', 'd5'], ['e4', 'e6', 'd4', 'b6', 'Nf3', 'Bb7', 'Bd3', 'Nf6', 'e5', 'Be4'], ['e3', 'e5', 'b3', 'Nc6', 'Bb2', 'Nf6', 'Nc3', 'd5', 'Nb5', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['d4', 'd5', 'c3', 'e6', 'h3', 'Nf6', 'Nf3', 'Bd6', 'Bg5', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd4', 'exd4', 'O-O', 'Nxe4'], ['e4', 'e5', 'Nf3'], ['e4', 'b6', 'd4', 'Bb7', 'd5', 'd6', 'c4', 'Nf6', 'Nc3', 'c6'], ['e4', 'c5', 'Nc3', 'Nc6', 'f4', 'e6', 'Bb5', 'Nd4', 'Ba4', 'a6'], ['d3', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'e4', 'Qe7', 'Bd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'bxc6', 'c3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'c3', 'dxc3'], ['e4', 'e5', 'Nf3', 'Bd6', 'c4', 'c5', 'Nc3', 'Nf6', 'Nd5', 'Nxe4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qc4', 'Nf6', 'f3', 'h6'], ['e4', 'd5', 'd4', 'dxe4', 'c4', 'Bf5', 'Nc3', 'Nc6', 'd5', 'Nb4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Bf5', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'd6', 'Ng5', 'd5'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'h6', 'd4', 'cxd4', 'Nxd4', 'e6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'cxd4', 'Bc4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'd4', 'Bxc3+'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'b6', 'd4', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'b6', 'd3', 'Bb7'], ['d4', 'd5', 'Nc3', 'c6', 'Bf4', 'Nd7', 'g3', 'h6', 'Bh3', 'g5'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'f3', 'exf3', 'Qxf3', 'Qxd4'], ['Nc3', 'd5', 'd4', 'Nc6', 'Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'e6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'Nc6', 'cxd4', 'd5', 'e5', 'Bf5'], ['e4', 'c5', 'Bc4', 'Nc6', 'c3', 'Nf6', 'd3', 'g6', 'Be3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'd3', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'g6', 'a3', 'Bg7', 'Bc4', 'e6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'h6', 'Nc3', 'Bb4', 'a3', 'Bxc3'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'd6'], ['e4', 'c5', 'd3', 'Nf6', 'Nd2', 'Nc6', 'c3', 'd6', 'h3', 'g6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nxc6', 'bxc6'], ['e4', 'e5'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'd3', 'O-O', 'Qg3', 'Nc6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Be2', 'd5', 'exd5', 'Qxd5', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Be2', 'd6', 'O-O', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Be2', 'Nf6', 'Nc3', 'Bb4', 'd3', 'Bxc3+'], ['e4', 'c5', 'Nf3', 'd6', 'Be2', 'a6', 'O-O', 'g6', 'Nc3', 'Bg7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'e5', 'Nc3', 'Qd6', 'Bb5+', 'c6'], ['d4', 'd5', 'c4', 'dxc4', 'Qa4+', 'Bd7', 'Qb4', 'Bc8', 'Qb5+', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'Bc4', 'Nge7', 'c3', 'f5'], ['e4', 'e5', 'Bc4', 'Qf6', 'Nc3', 'Bc5', 'Qe2', 'd6', 'Nd5', 'Qf4'], ['Nf3', 'Nf6', 'd4', 'g6', 'b3', 'Bg7', 'e3', 'd6', 'Bb2', 'Nc6'], ['Nf3', 'd5', 'd4', 'Nc6', 'e3', 'Nf6', 'Nbd2', 'e5', 'Nxe5', 'Qd6'], ['e4', 'Nc6', 'Qf3', 'e5', 'Bc4', 'f6', 'Nh3', 'h6', 'Qb3', 'Nge7'], ['d3', 'd5', 'e4', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'e5', 'Bd3', 'Nf6'], ['e4', 'e5', 'Qf3', 'Nc6', 'Bc4', 'f6', 'c3', 'Bd6', 'Qg3', 'Nge7'], ['d3', 'e5', 'e4', 'Nf6', 'Nc3', 'Bc5', 'Be3', 'Bb6', 'Bxb6', 'axb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nge7', 'Ng5', 'h6', 'Nxf7'], ['e4', 'e5', 'd3', 'd6', 'Nf3', 'Ne7', 'g3', 'Nbc6', 'Bg2', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'Nc3', 'g6', 'd3', 'a6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Nc3', 'Qc7'], ['d4', 'd6', 'e4', 'Nf6', 'Bf4', 'Nc6', 'Qf3', 'Nxd4', 'Qd3', 'e5'], ['e3', 'e6', 'a3', 'd5', 'b4', 'c5', 'b5', 'a6', 'bxa6', 'Rxa6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'Nc3', 'a6', 'a4', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'Bb4'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'dxc4', 'e4', 'c5', 'd5', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'd6', 'd3', 'Bg4'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'c5', 'e3', 'Nc6', 'Nf3', 'Qc7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Be7', 'Bf4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Nxe4', 'Nxe4', 'd5'], ['e4', 'e6', 'e5', 'd5', 'd4', 'c5', 'Nf3', 'Qc7', 'Bb5+', 'Nc6'], ['e4', 'e6', 'Bb5', 'Nc6', 'Nf3', 'a6', 'Ba4', 'd5', 'e5', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd6', 'Bxf7+', 'Ke7'], ['e4', 'e6', 'e5', 'd5', 'd4', 'c5', 'Nf3', 'a6', 'c4', 'Nd7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c5', 'Nf3', 'a6', 'Ne5', 'f6'], ['d4', 'e6', 'd5', 'Bc5', 'e3', 'Qe7', 'e4', 'Nf6', 'Bf4', 'exd5'], ['d4', 'd5', 'c4', 'e6', 'Be3', 'b6', 'Nf3', 'c5', 'Nc3', 'Nc6'], ['d4', 'e6', 'e4', 'd5', 'e5', 'c6', 'c4', 'Qc7', 'c5', 'Nd7'], ['d4', 'e6', 'e4', 'd5', 'e5', 'Nc6', 'Nf3', 'f6', 'Bb5', 'Bd7'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'c5', 'e3', 'Qc7', 'Nf3', 'Nc6'], ['d3', 'e6', 'e4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nc6', 'Bg5', 'f5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Qc7', 'f4', 'f6'], ['d3', 'e6', 'e4', 'd6', 'Nf3', 'Nc6', 'Bf4', 'b5', 'Nc3', 'Qf6'], ['e4', 'e6', 'Nf3', 'd5', 'd3', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'Bd7'], ['e4', 'a6', 'Nf3', 'b5', 'c3', 'c5', 'd3', 'd6', 'c4', 'e5'], ['e4', 'e6', 'Nf3', 'd5', 'Bb5+', 'c6', 'Ba4', 'Qc7', 'a3', 'b5'], ['d3', 'd5', 'e4', 'd4', 'Nf3', 'Bg4', 'c3', 'c5', 'Be2', 'g6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'Bb5+', 'Nc6', 'Bxc6+', 'bxc6'], ['d3', 'd5', 'e4', 'e6', 'Nf3', 'Bc5', 'Ne5', 'Qf6', 'd4', 'Qxf2+'], ['e4', 'e6', 'Nc3', 'd5', 'e5', 'c5', 'Nf3', 'Qc7', 'Nb5', 'Nc6'], ['d3', 'd5', 'e4', 'd4', 'Nf3', 'Nc6', 'Bf4', 'Bg4', 'h3', 'Bxf3'], ['d3', 'e5', 'e4', 'h5', 'Nf3', 'd5', 'Bg5', 'f6', 'Be3', 'Be6'], ['e4', 'e6', 'Bc4', 'd5', 'Bb3', 'c5', 'd3', 'Qc7', 'Nh3', 'Nc6'], ['d4', 'd5', 'e4', 'e6', 'Bd3', 'h6', 'Be3', 'Nf6', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'd5', 'Bb3', 'Nc6', 'exd5', 'Nxd5'], ['d4', 'e6', 'e4', 'd5', 'e5', 'Nc6', 'c3', 'Bd7', 'Nf3', 'a6'], ['e4', 'Nc6', 'd4', 'e6', 'Nf3'], ['e4', 'd5', 'e5', 'e6', 'd4', 'f5', 'exf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Qf6', 'd3', 'Bc5', 'O-O', 'g5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nxe4', 'Nxe5', 'Qh4', 'Bxf7+', 'Ke7'], ['e4', 'c5', 'Nc3', 'd6', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'Qf4', 'd4', 'Qg4', 'dxe5', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'd5', 'Bb5', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'd5', 'Bxd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Nf6', 'd4', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'Nc3', 'f6', 'Bb5', 'Bd7'], ['e4', 'e5', 'd3', 'Nc6', 'Nf3', 'Nf6', 'c4', 'Bb4+', 'Nc3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bd6', 'd5', 'Bb4+', 'c3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nd4', 'Nxd4', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Nxe5', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'exd4', 'Nxd4', 'h5'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bb5', 'Nf6', 'Qf3', 'Bc5', 'Bxc6', 'bxc6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'd3', 'd6', 'Qg3', 'O-O'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'Bc5', 'O-O', 'd6'], ['e4', 'e6', 'Nf3', 'Be7', 'd4', 'c6', 'Nc3', 'Nf6', 'Bc4', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'd5', 'Nb4', 'Bg5', 'f6'], ['c4', 'e5', 'Nc3', 'Nf6', 'e3', 'e4', 'Nge2', 'd5', 'cxd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'Nf6', 'Nc6+', 'Be7'], ['e4', 'e5', 'f4', 'exf4', 'd4', 'd5', 'e5', 'Nc6', 'Bxf4', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'd5'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e5', 'd5', 'Nf6', 'Bg5', 'Bb4+'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Qe7', 'Nc3', 'c6', 'O-O', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'dxe5', 'Nxe5', 'Nxe5', 'Bb4+'], ['e4', 'e5', 'Qh5', 'd5', 'Qxe5+', 'Be7', 'Qxg7', 'dxe4', 'Qxh8', 'e3'], ['d4', 'Nf6', 'c4', 'd5', 'Nc3', 'dxc4', 'Bg5', 'e6', 'Bxf6', 'Qxf6'], ['e4', 'e5', 'Qg4', 'Nc6', 'Bc4', 'Nf6', 'Qf5', 'Nd4', 'Qg4', 'Nxc2+'], ['e4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'f6', 'Nc3', 'f5', 'd3', 'fxe4'], ['e3', 'd5', 'Nf3', 'e6', 'd4', 'c6', 'Nc3', 'Bb4', 'a3', 'Bxc3+'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'h6', 'h3', 'Bc5', 'Nf3', 'd6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'c4', 'Nf6', 'Nc3', 'dxc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Ng5', 'O-O'], ['e4', 'c5', 'f4', 'Nc6', 'Nf3', 'e6', 'c3', 'Nf6', 'Qc2', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'g6', 'e4', 'Bg7', 'f4', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'e5', 'f4', 'd5', 'exd5', 'exf4', 'Nf3', 'Qxd5', 'Nc3', 'Qe6+'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c4', 'Nf6', 'Nc3', 'e6'], ['d4', 'd5', 'e4', 'c6', 'Nc3', 'dxe4', 'f3', 'exf3', 'Qxf3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Bc5', 'f3', 'd6', 'c3', 'Nc6', 'a4', 'a6'], ['e4', 'c5', 'Bc4', 'e6', 'd3', 'd5', 'exd5', 'exd5', 'Bb3', 'a6'], ['e4', 'g6', 'd4', 'Bg7', 'c4', 'c5', 'd5', 'Qb6', 'Nc3', 'e6'], ['d4', 'Nf6', 'Nf3', 'd6', 'g3', 'Nc6', 'Bg2', 'Bg4', 'c3', 'e6'], ['e4', 'e6', 'd4', 'Qh4', 'Nc3', 'Bb4', 'Qf3', 'Bxc3+', 'bxc3', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'O-O'], ['c4', 'g6', 'Nc3', 'Bg7', 'd4', 'c5', 'd5', 'f5', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bb6', 'a4', 'a6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'c4', 'dxc4', 'Bxc4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Qh4', 'Nc3', 'Bb4'], ['e4', 'c5', 'Bc4', 'd6', 'Qh5', 'g6', 'Qf3', 'e6', 'd3', 'Qf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'e6', 'Nf3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'c5', 'f4', 'd6', 'c3', 'g6', 'd4', 'cxd4', 'cxd4', 'Bg7'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'h6', 'c3', 'Bc5', 'd3', 'd6'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Bf4', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'c5', 'f4', 'e6', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8'], ['e4', 'c5', 'f4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'c3', 'Nf6'], ['b4', 'e5', 'Bb2', 'Bxb4', 'Bxe5', 'Qe7', 'Bxg7', 'Nh6', 'Bxh8', 'Nf5'], ['e4', 'd6', 'd4', 'c5', 'd5', 'a6', 'c4', 'Nf6', 'Nc3', 'Qa5'], ['e4', 'b6', 'Nc3', 'Bb7', 'g3', 'd6', 'Bg2', 'e5', 'd3', 'Nc6'], ['e4', 'd5', 'exd5', 'e5', 'c4', 'e4', 'd3', 'Qd6', 'Nc3', 'exd3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'd6'], ['d4', 'd5', 'c3', 'Nc6', 'Bf4', 'b6', 'Nf3', 'Bb7', 'Nbd2', 'Qd6'], ['b4', 'g6', 'Bb2', 'Nf6', 'e3', 'Bg7', 'g4', 'O-O', 'Be2', 'd5'], ['Nf3', 'd5', 'g3', 'c5', 'c4', 'd4', 'Bg2', 'Nc6', 'O-O', 'g6'], ['g3', 'd5', 'Bg2', 'e5', 'Nh3', 'h6', 'f4', 'f6', 'fxe5', 'fxe5'], ['e4', 'Nc6', 'd4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'c3', 'Na5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Bd7'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c4', 'e6', 'Nc3', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nc3', 'e6', 'Nf3', 'c5'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Nc3', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'Nc3', 'c5'], ['e4', 'c6', 'Nc3', 'd5', 'd4', 'dxe4', 'Nxe4', 'Bf5', 'Nc3', 'Nf6'], ['d4', 'Nf6', 'Nf3', 'g6', 'c4', 'd6', 'Nc3', 'Nc6', 'Bg5', 'Bg7'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nc6', 'Be2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd6', 'O-O', 'Be7'], ['d4', 'Nf6', 'Nc3', 'd5', 'Bf4', 'Bf5', 'e3', 'e6', 'a3', 'Bd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Bg5', 'O-O', 'Qd2', 'Re8'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nc6', 'Bb5', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'd6', 'd4', 'Bg4'], ['d4', 'c5', 'dxc5', 'e6', 'Nf3', 'Bxc5', 'Nc3', 'd5', 'e3', 'Nf6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'O-O', 'Bg5', 'd6'], ['d4', 'Nf6'], ['d4', 'd5', 'Nc3', 'e6', 'Nf3', 'f5', 'e3', 'Nf6', 'Bd3', 'g6'], ['e4', 'c6', 'Nf3', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Nc3', 'Nf6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nf6', 'Bg5', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'Bc5', 'd4', 'exd4'], ['Nf3', 'd5', 'g3', 'Nc6', 'Bg2', 'e5', 'd3', 'Bg4', 'O-O', 'Nf6'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'exf4', 'd4', 'd5', 'exd5', 'Qxd5'], ['d4', 'Nf6', 'c4', 'c5', 'e3', 'd5', 'Nc3', 'Nc6', 'Nf3', 'Bf5'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Nc6', 'Nf3', 'a6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bg6', 'h4', 'Bxd3'], ['e4', 'c6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Bf5', 'Nc5', 'e5'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'f4', 'Bg7', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bc5', 'O-O', 'O-O'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'a6', 'Bg5', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'Bc5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Qf3', 'Be6'], ['d4', 'Nf6', 'c4', 'e6', 'e3', 'd5', 'Nc3', 'c6', 'Bd2', 'a6'], ['c4', 'e5', 'Nc3', 'Bc5', 'e3', 'Nc6', 'Nf3', 'Nge7', 'd4', 'exd4'], ['c4', 'f5', 'd4', 'Nf6', 'Nc3', 'd6', 'Nf3', 'e6', 'Qc2', 'Be7'], ['d4', 'Nf6', 'Bf4', 'e6', 'Nf3', 'b6', 'e3', 'Bb7', 'c4', 'd6'], ['e4', 'c5', 'Bc4', 'e6', 'Qf3', 'Nc6', 'c3', 'b6', 'a3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Nf6'], ['Nf3', 'e6', 'd4', 'd5', 'e3', 'Nc6', 'c4', 'dxc4', 'Bxc4', 'Nf6'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'g6', 'c4', 'Bg7', 'Nc3', 'O-O'], ['c4', 'e5', 'Nc3', 'Nf6', 'e3', 'Bb4', 'd4', 'Bxc3+', 'bxc3', 'exd4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Nf6'], ['c4', 'Nc6', 'e3', 'e5', 'd4', 'exd4', 'exd4', 'Bb4+', 'Nc3', 'Qe7+'], ['c4', 'd5', 'd4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'Nc6', 'e3', 'Nf6'], ['d4', 'Nf6', 'd5', 'c6', 'Bg5', 'Nxd5', 'e4', 'h6', 'exd5', 'hxg5'], ['e4', 'c5', 'd3', 'Nc6', 'Bd2', 'd6', 'Be2', 'Nf6', 'Nf3', 'Qb6'], ['c3', 'e5', 'e4', 'd5', 'Nf3', 'dxe4', 'Qa4+', 'Bd7', 'Qxe4', 'Nc6'], ['c4', 'e6', 'd4', 'Nc6', 'Nc3', 'Bb4', 'Nf3', 'Bxc3+', 'bxc3', 'Qf6'], ['c4', 'e5', 'Nc3', 'Bc5', 'Nf3', 'Nc6', 'e3', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'dxc6', 'Nc3', 'Be6'], ['c4', 'e5', 'Nc3', 'Nf6', 'd4', 'exd4', 'Qxd4', 'c6', 'Bg5', 'Be7'], ['e4', 'e6', 'Nf3', 'c6', 'd4', 'd5', 'e5', 'Nd7', 'Be3', 'b6'], ['c4', 'e6', 'd4', 'Nf6', 'Nc3', 'Bb4', 'Qa4', 'Bxc3+', 'bxc3', 'O-O'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'dxc4', 'Nc3', 'Nc6', 'e3', 'Bf5'], ['Nf3', 'd5', 'd4', 'e6', 'Bf4', 'c5', 'c4', 'cxd4', 'Nxd4', 'Bc5'], ['e4', 'c5', 'Bc4', 'e6', 'c3', 'Nc6', 'd3', 'Nf6', 'Bb3', 'Be7'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nc6', 'd4', 'd6', 'Bxf4', 'g6'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'Nf6', 'd4', 'cxd4', 'Nxd4', 'e5'], ['d4', 'Nf6', 'Nc3', 'd5', 'Bg5', 'c6', 'Bxf6', 'exf6', 'e4', 'dxe4'], ['c4', 'g6', 'Nc3', 'Bg7', 'd3', 'c6', 'Bd2', 'Qb6', 'Rb1', 'Na6'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'Nf6', 'c4', 'dxc4', 'Nc3', 'Na5'], ['d4', 'd6', 'c4', 'e5', 'Qc2', 'g6', 'e3', 'Bf5', 'e4', 'Be6'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'Nc6', 'd3', 'Nf6', 'Bg5', 'Ne5'], ['d4', 'Nf6', 'Nc3', 'e6', 'e4', 'd6', 'Bg5', 'Be7', 'Nf3', 'h6'], ['e3', 'e5', 'c3', 'd5', 'h3', 'Nf6', 'g4', 'g5', 'Bg2', 'c6'], ['Nf3', 'e6', 'c4', 'c6', 'g3', 'h6', 'Nc3', 'g5', 'h3', 'Bg7'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Re1', 'O-O'], ['f4', 'd5', 'd4', 'Nc6', 'e3', 'Nf6', 'Nf3', 'Bf5', 'Bd3', 'Be4'], ['Nf3', 'Nf6', 'g3', 'Nc6', 'c4', 'e5', 'e3', 'e4', 'Nd4', 'Nxd4'], ['d4', 'e5', 'e3', 'exd4', 'exd4', 'c5', 'c4', 'd6', 'Nc3', 'cxd4'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'Be6', 'h3', 'Nd7', 'f4', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'd6'], ['c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'd5', 'e3', 'Be6', 'cxd5', 'cxd5'], ['d4', 'd5', 'Nf3', 'Nc6', 'Nbd2', 'Bf5', 'e3', 'a6', 'a3', 'e5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'Bd2', 'c5', 'Nf3', 'cxd4'], ['Nf3', 'd5', 'g3', 'Nc6', 'd4', 'h5', 'Nbd2', 'Bf5', 'e3', 'Nb4'], ['b3', 'e5', 'Bb2', 'f6', 'e4', 'Nc6', 'Qh5+', 'g6', 'Qh4', 'g5'], ['a4', 'e5', 'Ra3', 'a5', 'Re3', 'd5', 'Rxe5+', 'Be7', 'c4', 'Nc6'], ['g3', 'Nh6', 'Bg2', 'Ng4', 'Nf3', 'g6', 'c4', 'Nc6', 'd4', 'Nxd4'], ['b4', 'e5', 'Nc3', 'd5', 'Nb5', 'Bxb4', 'Rb1', 'a5', 'Rb3', 'c6'], ['d4', 'd6', 'Nf3', 'Bf5', 'c4', 'g6', 'Nc3', 'h5', 'Bg5', 'Bh6'], ['b3', 'e5', 'a4', 'Qf6', 'Ba3', 'Nh6', 'Bxf8', 'Ng4', 'Bxg7', 'Qxf2#'], ['d4', 'd5', 'Nc3', 'g6', 'Bf4', 'Bh6', 'Be5', 'Bf4', 'Bxh8', 'Bg4'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'a6', 'Bc4', 'Qf6', 'Qe2', 'h6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'e6', 'Nf3', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'O-O', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'b5', 'Nxb5', 'c6', 'Nc3', 'a5'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'exd4', 'Qxd4', 'Qe7', 'Bd3', 'g5'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'd3', 'Nc6', 'Qg3', 'O-O'], ['d4', 'e6', 'Nf3', 'Nc6', 'Bg5', 'f6', 'Bh4', 'd5', 'c3', 'Bb4'], ['e4', 'Nc6', 'Nf3', 'Nf6', 'Bd3', 'd5', 'O-O', 'dxe4', 'Bb5', 'exf3'], ['e4', 'Nc6', 'Bc4', 'e5', 'Nf3', 'd6', 'c3', 'Bg4', 'd4', 'Be7'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Qe7', 'Nf3', 'Nf6', 'Qg5', 'd6'], ['e4', 'e5', 'Nc3', 'b6', 'd3', 'Bb7', 'Be2', 'Bd6', 'Nf3', 'Ne7'], ['e4', 'e6', 'Nf3', 'f5', 'Ne5', 'Nf6', 'exf5', 'exf5', 'd4', 'Bd6'], ['e4', 'e5', 'Bc4', 'd6', 'Qf3', 'Nf6', 'g4', 'h6', 'Nh3', 'Bxg4'], ['d4', 'Nf6', 'e3', 'd5', 'c4', 'Bf5', 'cxd5', 'Nxd5', 'Nc3', 'e6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'Qa4+', 'c6', 'Bxc4', 'Bxc4'], ['e4', 'e6', 'd4', 'f5', 'e5', 'd6', 'Nf3', 'dxe5', 'Nxe5', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd3', 'Ne7', 'Bg5', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4+', 'c3', 'Ba5'], ['e4', 'c5', 'Nf3', 'd6'], ['d4', 'e6', 'e4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e6', 'Nf3', 'b6', 'Nc3', 'Ba6', 'Bxa6', 'Nxa6', 'd3', 'c5'], ['e4', 'e6', 'Nf3', 'd5', 'Nc3', 'Bb4', 'exd5', 'Bxc3', 'dxc3', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'e6', 'f4', 'd5', 'e5', 'c5', 'Nf3', 'Bd7', 'c3', 'Bc6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Bg5', 'Be7'], ['d4', 'e6', 'Bf4', 'f5', 'Nf3', 'Nf6', 'e3', 'd5', 'Bd3', 'Be7'], ['e4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'a6', 'd4', 'b5', 'Bd3', 'e6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'b6', 'c4', 'Ba6', 'cxd5', 'Bxf1'], ['e4', 'e6', 'Na3', 'Bxa3', 'bxa3', 'e5', 'Bb2', 'd6', 'f4', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'a3', 'cxd4'], ['e4', 'e6', 'Nf3', 'c5', 'b4', 'cxb4', 'a3', 'bxa3', 'Bxa3', 'Bxa3'], ['e4', 'c5', 'b4', 'cxb4', 'a3', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Nc6'], ['Nf3', 'e6', 'c4', 'f5', 'g3', 'Nf6', 'Bg2', 'd6', 'd4', 'Be7'], ['e4', 'c5', 'b4', 'cxb4', 'a3', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Nc6'], ['Nf3', 'e6', 'c4', 'f5', 'g3', 'Nf6', 'Bg2', 'c6', 'O-O', 'd5'], ['Nf3', 'e6', 'g3', 'f5', 'Bg2', 'Nf6', 'O-O', 'd5', 'd3', 'Bd6'], ['e4', 'd6', 'd4', 'Nf6', 'Bd3', 'g6', 'f4', 'Bg7', 'Nf3', 'O-O'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'b4', 'Qxb4', 'Rb1', 'Qh4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Bg5', 'Be7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'b4', 'Qe5+', 'Be2', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['d4', 'e6', 'c4', 'f5', 'Nc3', 'Nf6', 'g3', 'Bb4', 'Bg2', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Be2', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'a6', 'Ba4', 'b5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'b4', 'Qxb4', 'Rb1', 'Qd6'], ['e4', 'c5', 'b4', 'cxb4', 'a3', 'bxa3', 'Bxa3', 'Nc6', 'c3', 'd6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nf6', 'c3', 'e6'], ['e4', 'g6', 'd4', 'Nf6', 'Bd3', 'Nc6', 'c3', 'h5', 'Qc2', 'h4'], ['e4', 'e6', 'g3', 'b6', 'Bg2', 'Bb7', 'Ne2', 'd5', 'O-O', 'c5'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nc6', 'Nf3', 'Nf6'], ['e4', 'c5', 'b4', 'cxb4', 'a3', 'd5', 'exd5', 'Nf6', 'axb4', 'Nxd5'], ['d4', 'e6', 'g3', 'd5', 'Bg2', 'c6', 'Nf3', 'f5', 'O-O', 'Nf6'], ['e4', 'c5', 'b4', 'cxb4', 'a3', 'bxa3', 'Nxa3', 'e6', 'c3', 'Nc6'], ['e4', 'e6', 'Nf3', 'd5', 'Nc3', 'c5', 'exd5', 'exd5', 'd4', 'Be6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'a3', 'cxd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'Bb4', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'a6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'c6', 'd4', 'd5', 'e5', 'e6', 'Nf3', 'Bb4+', 'c3', 'Ba5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e5', 'Nfd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Nc3', 'd6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'e6', 'Bg5', 'Be7', 'Bxe7', 'Nxe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Bg5', 'Bc5'], ['e3', 'e5', 'Nf3', 'e4'], ['e3', 'e6', 'Nf3', 'd5', 'd4', 'a6', 'b4', 'Bxb4+', 'Bd2', 'Be7'], ['d4', 'Nc6', 'c4', 'e5', 'd5', 'Nd4', 'e3', 'Bb4+', 'Nc3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Ng5', 'Nh6', 'd4', 'exd4', 'Nh3', 'Bc5'], ['e4', 'e5', 'c4', 'd5', 'cxd5', 'Bc5', 'd3', 'f5', 'exf5', 'Bxf5'], ['d4', 'f6', 'c4', 'g5', 'Nc3', 'h5', 'e4', 'b6', 'Bd3', 'Kf7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Qe2', 'Bc5', 'c3', 'O-O'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'Bb4+', 'Bd2', 'Nc6', 'Nf3', 'g5'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nf6', 'Nc3', 'Nc6'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'Bb4+', 'Nc3', 'O-O', 'e3', 'Ne4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'c5', 'Bc4', 'd6', 'Nc3', 'Nf6', 'd4', 'cxd4', 'Qxd4', 'g6'], ['e4', 'e5', 'Nf3', 'f6', 'Nc3', 'c6', 'Bc4', 'b5', 'Bxg8', 'Rxg8'], ['e4', 'e5', 'Bc4', 'Nf6', 'g4', 'g5', 'd3', 'c5', 'Bxg5', 'Bg7'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qa4', 'Bb4+', 'c3', 'Bd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'Nc3', 'a6', 'd4', 'b5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'dxc4', 'e3', 'a6', 'Bxc4', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'a6', 'Ng5', 'Qe7'], ['e4', 'e5', 'Nf3', 'Bd6', 'Bc4', 'Nc6', 'c3', 'a5', 'Ng5', 'Qxg5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qh5', 'Be2', 'Qg5', 'g3', 'e6'], ['c3', 'c5', 'Qb3', 'b6', 'd4', 'Nf6', 'e3', 'Bb7', 'Ne2', 'e6'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'dxc4', 'e3', 'Bb4', 'Bxc4', 'Bxc3+'], ['d4', 'e6', 'c4', 'Bb4+', 'Nc3', 'c6', 'c5', 'Qa5', 'Bd2', 'Na6'], ['d4', 'Nf6', 'Nf3', 'd5', 'c4', 'dxc4', 'Nc3', 'e6', 'e3', 'Nc6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'dxc4', 'e3', 'Nd7', 'Bxc4', 'Nb6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd4', 'd6', 'Be3', 'b6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Bb4', 'a3', 'Be7'], ['e4', 'c5', 'd4', 'c4', 'd5', 'e5', 'Bxc4', 'Qe7', 'Nf3', 'Qb4+'], ['d4', 'd5', 'c4', 'Nc6', 'Nc3', 'dxc4', 'e3', 'Bf5', 'Bxc4', 'Nb4'], ['d4', 'd5', 'c4', 'e5', 'e3', 'Nc6', 'Nc3', 'Bb4', 'Bd2', 'exd4'], ['e4', 'e5', 'Nf3', 'Bb4', 'c3', 'Bc5', 'd3', 'b5', 'Nxe5', 'd6'], ['d4', 'd5', 'c4', 'Bf5', 'Nc3', 'dxc4', 'e3', 'Nc6', 'Bxc4', 'e6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qf3', 'Nf6', 'Ne2', 'h6', 'Nf4', 'Bc5'], ['e4', 'e5', 'd4', 'Nc6', 'c3', 'Nf6', 'Nd2', 'Bd6', 'd5', 'Ne7'], ['e4', 'b6', 'Nc3', 'Bb7', 'Nf3', 'f6', 'Bc4', 'e6', 'Nd4', 'd5'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'Nc6', 'O-O', 'Bc5', 'Nc3', 'Na5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Bb4', 'Bd2', 'O-O'], ['e4', 'c5', 'd4', 'd6', 'd5', 'g6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Bc5', 'Nc3', 'Nc6', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bc4', 'Bxc3', 'dxc3', 'O-O'], ['d4', 'd6', 'Nf3', 'e5', 'c4', 'Nc6', 'Nc3', 'exd4', 'Nb5', 'Bf5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'dxc4', 'e3', 'e6', 'Bxc4', 'Bb4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Bb4', 'Bg5', 'Nbd7'], ['e4', 'c5', 'Nc3', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd3', 'Nf6', 'O-O', 'd5'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'Bb5+', 'c6', 'Bd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'h6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Bc5', 'Bc4', 'c6', 'd4', 'Bb6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nc6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'c3', 'c5', 'd4', 'cxd4', 'cxd4', 'Bb4+', 'Ke2', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Nge2', 'f5', 'd4', 'Qa5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Be7', 'Bd3', 'Nf6', 'h3', 'O-O'], ['e4', 'e5', 'f3', 'Bc5', 'Ne2', 'Nf6', 'g3', 'Nc6', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bb5', 'a6', 'Bxc6', 'bxc6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qf3', 'Qf6', 'd4', 'Nxd4', 'Qxf6', 'gxf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bc5', 'h3', 'd6'], ['Nf3', 'd5', 'd4', 'Nc6', 'c4', 'dxc4', 'd5', 'e6', 'dxc6', 'Bb4+'], ['c3', 'd5', 'a4', 'Nf6', 'h4', 'Bf5', 'g4', 'Nxg4', 'f3', 'Nh6'], ['d4', 'd5', 'Nf3', 'e6', 'Nbd2', 'Bb4', 'e3', 'Nf6', 'Bb5+', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'h6', 'Nc3', 'Bc5'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Bc4', 'Bd7'], ['d4', 'd5', 'e3', 'Bf5', 'b3', 'e6', 'Nf3', 'Nc6', 'Bb2', 'h6'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'c6', 'd4', 'd5', 'e5', 'Qc8'], ['d4', 'd5', 'Bf4', 'f6', 'e3', 'Nc6', 'Qh5+', 'g6', 'Qf3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'dxc6', 'Nc3', 'Bc5'], ['e4', 'e5', 'Qh5', 'Qe7', 'Nf3', 'Nf6', 'Qxe5', 'Qxe5', 'Nxe5', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Bc5', 'c3', 'd6', 'd4', 'exd4', 'cxd4', 'Bb4+'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Bg5', 'h6', 'Bxf6', 'Qxf6'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'd6', 'Bb5', 'Bd7', 'fxe5', 'Nxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bb5', 'Nf6', 'Bxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'd5', 'exd5', 'Nxd5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'c3', 'Nf6', 'd4', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Be2', 'Nf6', 'h3', 'd5'], ['e4', 'e5', 'f4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6', 'Nf3', 'exf4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'a6', 'Nc3', 'Bb4', 'a3', 'Bxc3+'], ['c4', 'Nc6', 'Nc3', 'e5', 'e3', 'd6', 'd4', 'Nf6', 'd5', 'Ne7'], ['e4', 'e5', 'f4', 'Nc6', 'fxe5', 'Nxe5', 'd4', 'Ng6', 'Nf3', 'Nf6'], ['d4', 'f5', 'Nc3', 'Nf6', 'f3', 'd5', 'Bg5', 'Nh5', 'e4', 'fxe4'], ['c4', 'd5', 'Nc3', 'd4', 'Qa4+', 'Bd7', 'Qa3', 'dxc3', 'bxc3', 'e6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qf3', 'd5', 'exd5', 'Nxd5', 'Bc4', 'Be6'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'd6', 'Bc4', 'c6', 'O-O', 'd5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nxe4', 'Bxf7+', 'Kxf7', 'Nxe5+', 'Kf6'], ['d4', 'd5', 'c4', 'e6', 'c5', 'Nc6', 'a3', 'e5', 'dxe5', 'Bxc5'], ['d4', 'e6', 'c4', 'd5', 'Nf3', 'c6', 'e3', 'Bb4+', 'Nc3', 'Nf6'], ['e4', 'Nc6', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Be2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'c3', 'Nf6', 'd3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Be7', 'd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'h3', 'Nf6', 'Nf3', 'Bd6'], ['e4', 'e6', 'd4', 'c6', 'Nf3', 'f6', 'e5', 'Be7', 'g4', 'b5'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'a6', 'Bc4', 'b5', 'Bd3', 'Bb7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'f6', 'd4', 'c6'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'Bf5', 'd3', 'exd3', 'cxd3', 'h6'], ['e4', 'd5', 'e5', 'd4', 'Nf3', 'Nc6', 'Bc4', 'f6', 'exf6', 'Nxf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Bd7', 'Nf3', 'a6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd3', 'e5', 'f4', 'exf4'], ['e4', 'd5', 'Nc3', 'e6', 'Bb5+', 'c6', 'Ba4', 'Qe7', 'd4', 'Bd7'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qc4', 'Nf6', 'f3', 'Ne5'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'e6', 'e4', 'c5', 'Nf3', 'cxd4'], ['e4', 'd5', 'exd5', 'Qxd5', 'c4', 'Qe4+', 'Ne2', 'Qxc4', 'Nec3', 'Qe6+'], ['e4', 'd5', 'e5', 'd4', 'Nf3', 'g6', 'Bc4', 'Bg7', 'O-O', 'f6'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Na5', 'f4', 'Nf6', 'Bd3', 'Bc5'], ['b3', 'd5', 'Bb2', 'h6', 'e3', 'Rh7', 'Bd3', 'g6', 'e4', 'Bg7'], ['e4', 'e5', 'd3', 'Nc6', 'f4', 'Nf6', 'fxe5', 'Nxe5', 'd4', 'Nc6'], ['d4', 'd5', 'f3', 'Nc6', 'e4', 'dxe4', 'fxe4', 'Nxd4', 'c3', 'Nc6'], ['e4', 'e5', 'g3', 'Nf6', 'f4', 'Nxe4', 'fxe5', 'Bc5', 'd3', 'Nf2'], ['e4', 'd5', 'exd5', 'Qxd5', 'c4', 'Qe5+', 'Be2', 'c6', 'd4', 'Qa5+'], ['Nf3', 'd5', 'c3', 'g6', 'd4', 'f6', 'h3', 'Bg7', 'e3', 'e5'], ['d4', 'd5', 'Nf3', 'g6', 'h3', 'Bg7', 'e3', 'Nf6', 'Nbd2', 'O-O'], ['e4', 'd5', 'e5', 'e6', 'd4', 'c5', 'b3', 'Nc6', 'c4', 'cxd4'], ['Nf3', 'e5', 'Nxe5', 'Qe7', 'Nc4', 'b5', 'Na5', 'Qb4', 'Nb3', 'Qe4'], ['e4', 'd5', 'd4', 'dxe4', 'Nc3', 'f5', 'Bf4', 'h6', 'Bb5+', 'c6'], ['e3', 'e6', 'd4', 'c6', 'Qh5', 'Bb4+', 'c3', 'Bd6', 'Nf3', 'Nf6'], ['e3', 'g6', 'd4', 'b6', 'Qg4', 'd6', 'Qe4', 'd5', 'Qe5', 'f6'], ['e4', 'd5', 'd3', 'dxe4', 'd4', 'e5', 'd5', 'c6', 'Nc3', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'f6', 'dxe5', 'fxe5', 'Bc4', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Bb5', 'Bd7'], ['e3', 'Nf6', 'Nh3', 'd5', 'a3', 'e5', 'g3', 'c5', 'b3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'O-O', 'Bd6'], ['e3', 'e6', 'g3', 'd6', 'Bh3', 'Nf6', 'Nf3', 'd5', 'O-O', 'b6'], ['e3', 'e6', 'd4', 'Nf6', 'Nf3', 'Ne4', 'Qe2', 'Bb4+', 'c3', 'Bxc3+'], ['e4', 'e6', 'Nf3', 'd6', 'd4', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'e5'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'h3', 'c6'], ['d4', 'Nf6', 'e3', 'd5', 'c4', 'e6', 'cxd5', 'exd5', 'g3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'O-O', 'Bc5'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'Nc6', 'Nd5', 'Qd8', 'd4', 'exd4'], ['e4', 'c5', 'Nf3', 'd6', 'c4', 'Nf6', 'Nc3', 'Bg4', 'Be2', 'Nc6'], ['e4', 'e6', 'b3', 'd5', 'exd5', 'exd5', 'Bb2', 'Nf6', 'Bd3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'c6', 'd4', 'exd4', 'Bg5', 'Qg6'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'b3', 'dxc4', 'bxc4', 'Qd4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Bg4', 'Be2', 'Qe6', 'O-O', 'Nf6'], ['e4', 'e6', 'd4', 'Qh4', 'Bd3', 'h6', 'Nf3', 'Qd8', 'O-O', 'a6'], ['e4', 'e5'], ['e4', 'c5', 'd3', 'Nc6', 'Be3', 'Nf6', 'h3', 'd5', 'exd5', 'Nxd5'], ['e4', 'c5', 'd3', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'e6', 'e5', 'Ng4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'Bb5', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'd6', 'd4', 'e6', 'c4', 'g5', 'Nc3', 'c6', 'Bd3', 'f6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'Bg4', 'Nd2', 'e6', 'h3', 'Bh5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'e3', 'c5', 'cxd5', 'exd5'], ['c4', 'c5', 'Nf3', 'd6', 'Nc3', 'g6', 'e3', 'Bg7', 'd4', 'b6'], ['d4', 'Nf6', 'Nf3', 'g6', 'e3', 'Bg7', 'Bd3', 'd6', 'c3', 'O-O'], ['c4', 'Nf6', 'Nc3', 'g6', 'e4', 'Bg7', 'g3', 'd6', 'h3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'd6', 'd3', 'h6'], ['e4', 'c5', 'Nf3', 'g6', 'Bc4', 'Nc6', 'a3', 'Bg7', 'Nc3', 'a6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'd5'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'd5'], ['c4', 'Nc6', 'Nc3', 'b6', 'd4', 'e5', 'd5', 'Nce7', 'e4', 'c6'], ['Nc3', 'd5', 'Nf3', 'Bg4', 'Nd4', 'c5', 'Ndb5', 'Bd7', 'Na3', 'd4'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'd6', 'Bc4', 'b5', 'Bb3', 'Bb7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'c3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd5', 'Bd3', 'Bg4', 'Nc3', 'Ne7', 'h3', 'Bxf3'], ['d4', 'd5', 'e3', 'Nc6', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6', 'Nf3', 'Nf6'], ['e4', 'e6', 'Nc3', 'c6', 'd4', 'Bb4', 'Nf3', 'Bxc3+', 'bxc3', 'a5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Nf6', 'd3', 'Nc6'], ['e4', 'g6', 'd4', 'Bg7', 'Nh3', 'Nf6', 'e5', 'Nd5', 'Bc4', 'Nb4'], ['e4', 'c6', 'Nf3', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'Bg5', 'Ne7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f6', 'Bc4', 'Ne7', 'dxe5', 'fxe5'], ['d4', 'd5'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'Nf3', 'd5', 'e5', 'f6'], ['e4', 'c5', 'Bc4', 'e6', 'e5', 'd5', 'Bb5+', 'Bd7', 'a4', 'Bxb5'], ['e4', 'd5', 'e5', 'Nc6', 'd4', 'e6', 'Nf3', 'Bb4+', 'Nbd2', 'f6'], ['e4', 'd5', 'Bd3', 'Nc6', 'c3', 'e5', 'h3', 'Nf6', 'Qf3', 'Be6'], ['e4', 'd5', 'd3', 'e5', 'd4', 'Nf6', 'exd5', 'Nxd5', 'Qe2', 'Bd6'], ['e4', 'd5', 'Bd3', 'e5', 'Nc3', 'f6', 'Nxd5', 'Bc5', 'b3', 'Nc6'], ['e4', 'e5', 'd4', 'd6', 'Bb5+', 'Bd7', 'Nc3', 'exd4', 'Qxd4', 'c5'], ['e4', 'g6', 'Qf3', 'Bg7', 'Bc4', 'e6', 'd3', 'd6', 'c3', 'b6'], ['b3', 'e6', 'Nc3', 'g6', 'Bb2', 'Bg7', 'd3', 'c6', 'Ne4', 'Bxb2'], ['e4', 'c6', 'Qh5', 'g6', 'Qf3', 'c5', 'Bc4', 'e6', 'b3', 'a6'], ['e4', 'e5', 'Nf3', 'Qe7', 'd4', 'd6', 'Bg5', 'f6', 'Be3', 'Nc6'], ['d4', 'd5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'Bf4', 'Bg4', 'Nb5', 'Bxf3'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Bf5', 'Bxf6', 'exf6', 'Nf3', 'Bd6'], ['d4', 'd5', 'Nc3', 'c6', 'e4', 'e6', 'f4', 'Nf6', 'Qe2', 'Na6'], ['e4', 'b6', 'Nc3', 'Bb7', 'd4', 'e6', 'Nf3', 'Nc6', 'a3', 'Nf6'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'Bb4+', 'c3', 'Ba5', 'b4', 'Bb6'], ['e4', 'd5', 'd4', 'Nc6', 'Nc3', 'dxe4', 'Nxe4', 'f5', 'd5', 'Ne5'], ['e4', 'g6', 'Bc4', 'e6', 'Nc3', 'f5', 'exf5', 'Bb4', 'Ne4', 'exf5'], ['d4', 'Nc6', 'e4', 'Nf6', 'Bb5', 'e5', 'Bxc6', 'bxc6', 'Nc3', 'd5'], ['e4', 'g6', 'd4', 'd5', 'Nc3', 'c6', 'Nf3', 'Bg7', 'e5', 'Nd7'], ['d4', 'g6', 'e3', 'd6', 'b3', 'f5', 'Bb2', 'Nf6', 'd5', 'b6'], ['b3', 'e6', 'Bb2', 'd5', 'e3', 'Nc6', 'Bb5', 'Bd7', 'Nc3', 'a6'], ['e4', 'g6', 'd4', 'Bg7', 'e5', 'd6', 'f4', 'f6', 'Nf3', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Qb6', 'Bxc6', 'Qxc6', 'd4', 'Qxe4+'], ['e4', 'Nc6', 'a3', 'Nf6', 'Nc3', 'd6', 'd3', 'Nd4', 'Be2', 'e5'], ['e4', 'Nf6', 'Nc3', 'Ng8', 'Bc4', 'Nf6', 'Qf3', 'e6', 'Nh3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nf5', 'Nxe4'], ['e3', 'c5', 'd4', 'e6', 'Nc3', 'Nc6', 'Nf3', 'd5', 'e4', 'Bd6'], ['e4', 'g6', 'Nf3', 'Bg7', 'Bc4', 'Nf6', 'd4', 'b6', 'c3', 'Nc6'], ['Nf3', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'd4', 'Nbd7', 'Nc3', 'e6'], ['d4', 'Nf6', 'Bg5', 'd5', 'f3', 'c5', 'e3', 'e6', 'Bb5+', 'Nc6'], ['c4', 'e5', 'Nc3', 'Bb4', 'Qc2', 'Nf6', 'a3', 'Bc5', 'b4', 'Be7'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bb5', 'e6', 'Nge2', 'a6', 'Bxc6', 'dxc6'], ['Nf3', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'd4', 'd6', 'e3', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e6', 'Bb5', 'd5', 'd4', 'Bd7'], ['Nf3', 'd5', 'c4', 'd4', 'e3', 'dxe3', 'fxe3', 'b6', 'd4', 'Bb7'], ['f4', 'Nf6', 'Nf3', 'd5', 'g3', 'c5', 'Bg2', 'Nc6', 'd4', 'e6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qa4', 'Nf6', 'Nf3', 'e6'], ['Nf3', 'd5', 'd4', 'Nf6', 'c4', 'c6', 'e3', 'Bg4', 'Nc3', 'Nbd7'], ['f4', 'f5', 'Nf3', 'Nc6', 'e3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'e5'], ['d4', 'd5', 'Nc3', 'Nf6', 'e3', 'c5', 'dxc5', 'e6', 'Bb5+', 'Nc6'], ['Nf3', 'e6', 'c4', 'd5', 'cxd5', 'exd5', 'e3', 'Nf6', 'd4', 'Bd6'], ['Nf3', 'b5', 'd4', 'Nc6', 'e3', 'a6', 'a3', 'e6', 'c4', 'b4'], ['Nf3', 'c5', 'c4', 'Nc6', 'Nc3', 'g6', 'e3', 'Bg7', 'd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['Nf3', 'b6', 'd4', 'Ba6', 'Nc3', 'e6', 'a3', 'Nf6', 'b4', 'Be7'], ['Nf3', 'Nc6', 'c4', 'e6', 'd4', 'h6', 'Nc3', 'Bb4', 'Qc2', 'Nf6'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'c6', 'dxc6', 'Nxc6', 'd4', 'Nxd4'], ['Nf3', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'e3', 'Nf6', 'd4', 'e6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Bf5', 'Nc3', 'e6', 'Bg5', 'Be7'], ['Nf3', 'd5', 'c4', 'd4', 'e3', 'dxe3', 'fxe3', 'c5', 'd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'e6', 'a3', 'd5'], ['d4', 'Nf6', 'f3', 'd5', 'c4', 'c6', 'Nc3', 'dxc4', 'e4', 'c5'], ['c4', 'e5', 'Nc3', 'Bb4', 'f4', 'Bxc3', 'dxc3', 'exf4', 'Bxf4', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'e6', 'd4', 'cxd4'], ['Nf3', 'd5', 'c4', 'dxc4', 'e4', 'Bg4', 'Qa4+', 'c6', 'Bxc4', 'Bxf3'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e6', 'd4', 'cxd4', 'Nxd4', 'd5'], ['Nf3', 'd5', 'c4', 'Bg4', 'cxd5', 'Bxf3', 'gxf3', 'Qxd5', 'Nc3', 'Qh5'], ['Nf3', 'c6', 'c4', 'd5', 'cxd5', 'cxd5', 'd4', 'Nc6', 'e3', 'Qc7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'e5', 'Ng4', 'Bxc6', 'dxc6'], ['Nf3', 'd5', 'c4', 'e6', 'Nc3', 'c6', 'd4', 'Nf6', 'e3', 'dxc4'], ['c4', 'c5', 'g3', 'Nc6', 'Bg2', 'e6', 'Nc3', 'Nf6', 'Nf3', 'd5'], ['Nf3', 'Nc6', 'c4', 'e5', 'Nc3', 'f5', 'e4', 'f4', 'd4', 'd6'], ['d4', 'Nf6', 'Nf3', 'e6', 'e3', 'Nc6', 'Bd3', 'b6', 'O-O', 'Bb7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'd4', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'd3', 'd6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'Bg5', 'Ne7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Be3', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'Bb4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'd4', 'd5', 'exd5', 'exd5'], ['e4', 'c5', 'Bc4', 'Nc6', 'Qf3', 'e6', 'c3', 'Nf6', 'Na3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Be7', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'h6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'c3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'Bc4', 'O-O', 'd3', 'Re8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'd3', 'a6'], ['Nf3', 'd5', 'c4', 'c6', 'd4', 'Bg4', 'e3', 'Nf6', 'Nc3', 'e6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'b6', 'a3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'd6'], ['e4', 'c5', 'Bc4', 'e6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qc3', 'Bb4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Bg4', 'd4', 'Bxe2'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'd3', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'b6', 'e4', 'Bb4', 'Qc2', 'Nxe4'], ['e4', 'c5', 'd3', 'e6', 'e5', 'Nc6', 'Nf3', 'd6', 'exd6', 'Bxd6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Bf5', 'Bf4', 'e6', 'Nf3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Bc5', 'd3', 'd6'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'd3', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'Nf6', 'd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e6', 'Nxc6', 'bxc6'], ['e4', 'c5', 'b3', 'e6', 'Bb2', 'Nc6', 'f4', 'Nf6', 'Nc3', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'd6', 'h3', 'h6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nc6', 'Bc4', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'a6', 'Nc3', 'dxc4', 'e3', 'b5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'a3', 'Be7', 'e4', 'd5'], ['e4', 'd6', 'd4', 'c6', 'c4', 'h6', 'Nc3', 'Nf6', 'Bd3', 'Bg4'], ['e4', 'Nf6', 'Nc3', 'd5', 'Bd3', 'Bg4', 'f3', 'Bd7', 'exd5', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'a6', 'd3', 'Nf6', 'Be2', 'Bb4'], ['e4', 'c5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4'], ['e4', 'e6', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'e5', 'a3', 'Bg4'], ['e4', 'e6', 'Nf3', 'b6', 'Nc3', 'Bb7', 'd3', 'Nf6', 'Bg5', 'Be7'], ['d4', 'g6', 'Nf3', 'Bg7', 'c4', 'c5', 'dxc5', 'Qa5+', 'Nfd2', 'Qxc5'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'a6', 'Bc4', 'b5', 'Bd3', 'Bb7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nc6', 'Bb5', 'Bd7', 'd5', 'Nb4'], ['e4', 'e5', 'd4', 'Bb4+', 'c3', 'Bd6', 'd5', 'Nf6', 'Bd3', 'c6'], ['d4', 'd5', 'Bf4', 'c6', 'Nc3', 'Nf6', 'h3', 'e6', 'e3', 'Bd6'], ['e4', 'c5', 'Nf3', 'Nf6', 'e5', 'Ne4', 'Bc4', 'd5', 'd3', 'dxc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Nc3', 'Bg4', 'O-O', 'f5'], ['e4', 'c5', 'h4', 'Nf6', 'f3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Ng5', 'Qxg5'], ['e4', 'c5', 'Nf3', 'a6', 'Bc4', 'd6', 'O-O', 'Nf6', 'e5', 'dxe5'], ['e4', 'c5', 'b4', 'cxb4', 'a3', 'Nf6', 'axb4', 'Nxe4', 'Bb2', 'Nc6'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'a6', 'Bc4', 'b5', 'Bd3', 'c4'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bc4', 'd6', 'O-O', 'Be6', 'd3', 'Bxc4'], ['e4', 'd5', 'Nc3', 'c6', 'exd5', 'cxd5', 'Bb5+', 'Nc6', 'd4', 'e6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'e3', 'e6', 'a3', 'c5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nxe4', 'Nxe5', 'Qe7', 'Qe2', 'Qxe5'], ['e4', 'Nf6', 'Nc3', 'd5', 'd3', 'e5', 'exd5', 'Nxd5', 'Nf3', 'Nf4'], ['e4', 'Nf6', 'Nf3', 'Nxe4', 'Bc4', 'd5', 'd3', 'Nf6', 'Bb5+', 'c6'], ['e3', 'c5', 'g4', 'Nc6', 'd4', 'd6', 'c4', 'Nf6', 'h3', 'e5'], ['g3', 'c5', 'e4', 'd6', 'Nc3', 'Nc6', 'Bb5', 'Bd7', 'd4', 'Nxd4'], ['d4', 'c5', 'd5', 'd6', 'e4', 'Nf6', 'f3', 'e6', 'Bg5', 'exd5'], ['d4', 'Nc6', 'e3', 'd5', 'f4', 'Nf6', 'b3', 'Bg4', 'Ne2', 'Ne4'], ['e4', 'd5', 'Nc3', 'e6', 'Nf3', 'f5', 'exf5', 'exf5', 'Qe2+', 'Be7'], ['e4', 'Nc6', 'Nf3', 'e5', 'Nc3', 'Nf6', 'Bb5', 'a6', 'Bxc6', 'dxc6'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'Ne7', 'd4', 'd5', 'Bb5+', 'Bd7'], ['a3', 'd5', 'Nf3', 'e6', 'd4', 'Bd6', 'Nbd2', 'Nf6', 'e3', 'O-O'], ['a3', 'd5', 'Nf3', 'Nc6', 'e3', 'Bg4', 'Be2', 'Nf6', 'O-O', 'e6'], ['a3', 'b6', 'd4', 'c5', 'Nf3', 'Bb7', 'e3', 'cxd4', 'exd4', 'd6'], ['e4', 'Nc6', 'd4', 'Nb8', 'c4', 'Nc6', 'd5', 'Nb8', 'b3', 'Na6'], ['Nf3', 'c6', 'e3', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'd4', 'Bb4'], ['a3', 'c6', 'Nf3', 'd5', 'e3', 'Bf5', 'd4', 'e6', 'Nbd2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'Nge7', 'Ng5', 'f6'], ['e4', 'Nc6', 'd4', 'Nxd4', 'Qxd4', 'a5', 'Bc4', 'Ra6', 'Bxa6', 'bxa6'], ['e4', 'Nc6', 'd3', 'Nd4', 'Nf3', 'Nxf3+', 'Qxf3', 'Nf6', 'e5', 'Ng8'], ['e4', 'Nc6', 'Qh5', 'Nd4', 'Bc4', 'Nxc2+', 'Kd1', 'Ne3+', 'dxe3', 'a5'], ['e4', 'Nc6', 'Bc4', 'Na5', 'Na3', 'Nxc4', 'Nxc4', 'a5', 'Ne5', 'Ra6'], ['e4', 'Nc6', 'Qf3', 'Nd4', 'Qf4', 'Nxc2+', 'Kd1', 'a6', 'Bc4', 'Nd4'], ['e4', 'c6', 'd4', 'd5', 'e5', 'e6', 'a3', 'c5', 'c3', 'cxd4'], ['e4', 'e6', 'd4', 'c6', 'Nf3', 'd6', 'Be3', 'Be7', 'c4', 'Nd7'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Bd6', 'd4', 'Qe7', 'dxe5', 'Bxe5'], ['e4', 'e5', 'd4', 'Be7', 'd5', 'd6', 'Bb5+', 'Bd7', 'a4', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'd6', 'Nc3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'exd4'], ['d4', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Nc3', 'Nf6', 'Nf3', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bc4', 'Nf6', 'O-O', 'O-O'], ['e4', 'e5', 'd4', 'd6', 'd5', 'Nf6', 'Nc3', 'g6', 'Bb5+', 'Bd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nxc6', 'bxc6'], ['Nf3', 'd5', 'e3', 'Nc6', 'd4', 'e6', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6'], ['e4', 'e5', 'f4', 'd6', 'Bc4', 'Nf6', 'd3', 'Bd7', 'c3', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'h6', 'dxe5', 'Qe7', 'Bc4', 'Nxe5'], ['e4', 'e5', 'd4', 'd6', 'd5', 'Nf6', 'Nc3', 'c6', 'h3', 'cxd5'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'Nf6', 'Ne5', 'Bd6', 'Nd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Qe7', 'Bc4', 'h6', 'd4', 'd6', 'd5', 'Bg4'], ['e4', 'Nc6', 'd4', 'd5', 'e5', 'e6', 'c4', 'a6', 'c5', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'Nxd4', 'Nxd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b3', 'd6', 'Bb2', 'Nf6'], ['Nf3', 'd5', 'd4', 'e6', 'c4', 'c5', 'Nc3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nc3', 'd6', 'Bb5+', 'Bd7', 'Bc4', 'Be7', 'Qf3', 'Nf6'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'd6', 'c3', 'Bg4', 'Bc4', 'Bxf3'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'd3', 'Be7', 'Nc3', 'b6'], ['c4', 'e5', 'Nc3', 'c5', 'Nf3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'd5'], ['e4', 'e5', 'Nc3', 'Nf6', 'd4', 'Nc6', 'd5', 'Nd4', 'Be3', 'Bc5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'Bd3', 'c5'], ['d4', 'e6', 'e4', 'c6', 'Nf3', 'd5', 'e5', 'h6', 'Bd3', 'g6'], ['d4', 'e6', 'e4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'f4', 'Qb6'], ['e4', 'e5', 'd3', 'Bc5', 'c4', 'Qf6', 'Ne2', 'Qxf2+', 'Kd2', 'Bb4+'], ['e4', 'e5', 'Bc4', 'Be7', 'Qf3', 'Nh6', 'd3', 'O-O', 'Bxh6', 'Bb4+'], ['e4', 'e5', 'c3', 'Qf6', 'Qg4', 'Bc5', 'f3', 'h5', 'Qg3', 'h4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nce7', 'Nxe5', 'Nf6', 'Nc3', 'b6'], ['e4', 'g6', 'Nf3', 'Bg7', 'd4', 'c5', 'd5', 'd6', 'Nc3', 'Bg4'], ['d4', 'd5', 'e3', 'e6', 'Bb5+', 'c6', 'Bd3', 'Qa5+', 'c3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nce7', 'd4', 'b6', 'Nxe5', 'f6'], ['d4', 'Nf6', 'e3', 'e6', 'Nc3', 'Bb4', 'Bd2', 'c5', 'Nb5', 'Bxd2+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Ne7'], ['e4', 'e5', 'Nf3', 'f6', 'Nc3', 'd6', 'd4', 'Nc6', 'd5', 'Bg4'], ['Nf3', 'Nf6', 'd4', 'd5', 'c3', 'Nc6', 'e3', 'Bg4', 'Bb5', 'a6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qf3', 'Be7', 'Qxf7#'], ['e4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'Ng4', 'Bc4', 'Nb4', 'Nd4', 'e5'], ['Nc3', 'e5', 'e4', 'Nf6', 'Bc4', 'Nc6', 'Qe2', 'a6', 'Qe3', 'b5'], ['e4', 'Nf6', 'Nc3', 'd5', 'exd5', 'e6', 'dxe6', 'fxe6', 'Bc4', 'Qe7'], ['Nf3', 'Nc6', 'd4', 'Nf6', 'Nc3', 'e6', 'e4', 'd5', 'exd5', 'exd5'], ['d4', 'Nc6', 'e4', 'Nf6', 'e5', 'Ne4', 'Nf3', 'Nb4', 'c3', 'e6'], ['d4', 'Nc6', 'Nf3', 'd5', 'Nc3', 'Bg4', 'Qd3', 'Qd6', 'h3', 'Nf6'], ['Nc3', 'e5', 'Ne4', 'Nc6', 'Nf3', 'd5', 'Nc5', 'Bxc5', 'b3', 'Nf6'], ['d4', 'Nf6', 'Bf4', 'Nc6', 'e3', 'e5', 'Bxe5', 'Ne4'], ['e4', 'Nf6', 'Qf3', 'Nc6', 'c3', 'e5', 'Bc4', 'Qe7', 'b4', 'Nd8'], ['Nf3', 'e6', 'Nc3', 'd6', 'd4', 'Bd7', 'e4', 'c5', 'dxc5', 'dxc5'], ['e4', 'Nf6', 'd3', 'Nc6', 'Nf3', 'Ng4', 'Be2', 'Nd4', 'O-O', 'e5'], ['Nf3', 'd6', 'Nc3'], ['e4', 'Nf6', 'e5', 'Nd5', 'Nf3', 'd6', 'c4', 'dxe5', 'cxd5', 'Qxd5'], ['Nf3', 'd5', 'd4', 'Nc6', 'Nc3', 'e6', 'Bg5', 'Be7', 'Bxe7', 'Ngxe7'], ['e4', 'Nc6', 'Nf3', 'Nf6', 'Bc4', 'd5', 'exd5', 'e6', 'Nc3', 'Bd7'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nf4', 'd4', 'Nc6', 'Bxf4', 'Nb4'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nf4', 'd4', 'Nc6', 'Bxf4', 'Nxd4'], ['Nf3', 'Nc6', 'g4', 'Nf6', 'Nc3', 'd5', 'b3', 'Bxg4', 'h3', 'e5'], ['Nf3', 'd5', 'd4', 'Nc6', 'Nc3', 'e6', 'Bf4', 'Nf6', 'e4', 'dxe4'], ['Nc3', 'c5', 'Nf3', 'Nc6', 'Nb5', 'Nf6', 'c4', 'g6', 'Ng5', 'Bg7'], ['Nf3', 'Nf6', 'd4', 'g6', 'Bg5', 'Bg7', 'Nc3', 'd5', 'Qd3', 'Bf5'], ['e4', 'Nf6', 'e5', 'Nd5', 'Nf3', 'c6', 'c4', 'Nb4', 'd4', 'N8a6'], ['Nf3', 'Nf6'], ['e4', 'd5', 'Bb5+', 'c6', 'Ba4', 'b5', 'Bb3', 'd4', 'Na3', 'e5'], ['e4', 'd6', 'Nf3', 'e5', 'Nc3', 'Bg4', 'd3', 'Qf6', 'Be3', 'Qg6'], ['e4', 'e6', 'Qh5', 'b6', 'b4', 'Qf6', 'b5', 'Qxa1', 'e5', 'Qxb1'], ['e4', 'e6', 'Bc4', 'd5', 'Bb5+', 'c6', 'Ba4', 'b5', 'Bb3', 'c5'], ['a4', 'g5', 'b3', 'Bg7', 'Ra2', 'Nf6', 'e3', 'Bh6', 'Ne2', 'c5'], ['e4', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'e5', 'Bc4', 'Bc5', 'Nd5', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'e3', 'b6', 'Nc3', 'Nc6', 'a3', 'a6'], ['e4', 'Nc6', 'Nf3', 'Nf6', 'd3', 'e5', 'c4', 'Bc5', 'Be3', 'Bxe3'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bf4', 'Bg7', 'Nc3', 'O-O', 'Be5', 'd6'], ['e4', 'e6', 'd4', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Nc6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'h6', 'O-O', 'Nf6'], ['d4', 'h6', 'e3', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'a3', 'Bd6'], ['e4', 'b6', 'Nc3', 'Bb7', 'd3', 'e6', 'Nf3', 'Nf6', 'a3', 'Be7'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nf6', 'Nf3', 'Bd6', 'c5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Qe7', 'O-O', 'Nf6'], ['d4', 'Nf6', 'c4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'O-O', 'Bg5', 'd6'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'd5', 'e3', 'f6', 'exf6', 'Nxf6'], ['e3', 'g6', 'Nf3', 'Bg7', 'g3', 'Nf6', 'Bg2', 'O-O', 'O-O', 'e6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'b6', 'O-O', 'g6', 'd4', 'Bb7'], ['e4', 'g6', 'b3', 'Bg7', 'Nc3', 'b5', 'Bxb5', 'a6', 'Be2', 'e6'], ['e4', 'c5', 'Nf3', 'a6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'e5', 'Ne4'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'Nc3', 'Nxc3', 'bxc3', 'g6'], ['e4', 'e6', 'Nf3', 'd5', 'd4', 'dxe4', 'Ne5', 'Bd6', 'Bf4', 'Nf6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nc6', 'Nc3', 'Bg4'], ['e4', 'e5', 'Nf3', 'b6', 'd4', 'Nc6', 'Bc4', 'd6', 'c3', 'Bg4'], ['e4', 'e6', 'd4', 'a6', 'Bd3', 'd6', 'a3', 'h6', 'c3', 'Nf6'], ['d4', 'e6', 'e4', 'd6', 'Bd3', 'a6', 'Nf3', 'h6', 'c3', 'Be7'], ['e3', 'd5', 'g3', 'Nf6', 'b3', 'Nc6', 'Bg2', 'Bf5', 'Bb2', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Be2', 'Be6', 'd3', 'Be7'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nc6', 'Be3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Be2', 'h6', 'd3', 'Nf6', 'Bd2', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Be2', 'd6', 'd3', 'Nf6'], ['Nf3', 'd5', 'g3', 'Nc6', 'Bg2', 'Bf5', 'd4', 'e6', 'O-O', 'Nf6'], ['e4', 'd6', 'Nf3', 'e5', 'a3', 'Bg4', 'Be2', 'Be7', 'h3', 'Bh5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bf5', 'g3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'Bc5', 'Be2', 'd6'], ['d4', 'e6', 'c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Bb4', 'a3', 'Bxc3+'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nc6', 'f3', 'Qxd4', 'fxe4', 'Qxd1+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'h6', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'Nc3', 'Nf6', 'd3', 'g6'], ['e4', 'Nf6', 'd3', 'c5', 'Bg5', 'Nc6', 'Nc3', 'h6', 'Bh4', 'd5'], ['e4', 'c6', 'd3', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nc6', 'Nc3', 'd4'], ['Nc3', 'd5', 'd4', 'Nf6', 'Nf3', 'Bf5', 'Bf4', 'a6', 'e3', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'e6', 'd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Be2', 'Bg4', 'd3', 'Bxf3', 'Bxf3', 'Nf6'], ['e4', 'd6', 'Nf3', 'e5', 'Bb5+', 'c6', 'Ba4', 'b5', 'Bb3', 'Bg4'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bb5', 'e6', 'Nf3', 'Nf6', 'd3', 'a6'], ['e4', 'c6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Nf6', 'Nxf6+', 'exf6'], ['e4', 'd6', 'Nf3', 'e5', 'Nc3', 'Bg4', 'h3', 'Bh5', 'd3', 'Nc6'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nce7', 'Nf3', 'Ng6', 'Nc3', 'Bb4'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nd7', 'Qe2', 'e6'], ['e4', 'e5', 'Nf3', 'd6', 'd3', 'c5', 'c4', 'Nc6', 'Nc3', 'Qf6'], ['e4', 'd6', 'Nf3', 'c5', 'Bc4', 'Nc6', 'Ng5', 'e6', 'd3', 'Be7'], ['e4', 'd6', 'Nf3', 'e5', 'h3', 'Nf6', 'Nc3', 'Be7', 'Bc4', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'e3', 'Bb4', 'Nf3', 'Bxc3+'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'Bb4', 'Bf4', 'Bxc3+', 'bxc3', 'dxc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'g6', 'Bc4', 'Nf6', 'Ng5', 'd5'], ['e4', 'c6'], ['g3', 'd5', 'c4', 'dxc4', 'Nc3', 'Be6', 'Bg2', 'Nc6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'f5', 'd3', 'Nf6', 'O-O', 'fxe4'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Be2', 'O-O'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bg5', 'Bg7', 'Nbd2', 'd6', 'c3', 'O-O'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'Bd3', 'Nf6', 'c3', 'a6', 'Bc2', 'g6'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bg5', 'Bg7', 'Nbd2', 'O-O', 'e4', 'd6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['d4', 'd5', 'Bf4', 'c6', 'Nf3', 'Nd7', 'e3', 'Nb6', 'Nbd2', 'Bg4'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Bg5', 'O-O'], ['d4', 'd5', 'Nf3', 'e6', 'c4', 'dxc4', 'e3', 'c5', 'Bxc4', 'cxd4'], ['g3', 'Nf6', 'Bg2', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Nf3', 'Nc6'], ['d4', 'e6', 'Nf3', 'h6', 'c4', 'c6', 'g3', 'a6', 'Bg2', 'b5'], ['d4', 'Nf6', 'Nf3', 'd5', 'c4', 'e6', 'g3', 'c6', 'Bg2', 'Nbd7'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nc6', 'c3', 'Qc7'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'e6', 'e3', 'Bd6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nf3', 'Nxd5', 'd4', 'Bg4', 'Be2', 'Nc6'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'h3', 'O-O', 'Nf3', 'd6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Be3', 'cxd4'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'g3', 'h6', 'Bg2', 'dxc4'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c4', 'Nf6', 'c5', 'Nc6'], ['d4', 'Nf6', 'Nf3', 'e6', 'Bg5', 'd5', 'Nbd2', 'Be7', 'e3', 'h6'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Bd7', 'Qe2', 'Nf6'], ['d4', 'Nf6', 'Nf3', 'e6', 'Bg5', 'd5', 'Nbd2', 'c5', 'e3', 'cxd4'], ['e4', 'a6', 'Bc4', 'Ra7', 'Qh5', 'b6', 'Qxf7#'], ['e4', 'a6', 'Bc4', 'Ra7', 'Qf3', 'Ra8', 'Qxf7#'], ['e4', 'a6', 'Bc4', 'Ra7', 'Qf3', 'Ra8', 'Qxf7#'], ['e4', 'a6', 'Bc4', 'Ra7', 'Qf3', 'Ra8', 'Qxf7#'], ['e4', 'a6', 'Bc4', 'Ra7', 'Qh5', 'Ra8', 'Qxf7#'], ['e4', 'a6', 'Bc4', 'Ra7', 'Qh5', 'Ra8', 'Qxf7#'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Bb4', 'e3', 'h6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd6', 'd4', 'd5', 'dxe5', 'Nfd7'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Bb4', 'cxd5', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['g3', 'g6', 'b3'], ['d4', 'c5', 'e3', 'c4', 'c3', 'b5', 'b3', 'd5', 'bxc4', 'bxc4'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'b5', 'Nc3', 'b4', 'Na4', 'e5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nf6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['d4', 'e5', 'e3', 'exd4', 'e4', 'Nc6', 'Nf3', 'Nf6', 'Bd3', 'Nb4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nd3', 'd5', 'exd5', 'Nbd7'], ['d4', 'd5', 'c3', 'Nf6', 'Nf3', 'Bg4', 'Nfd2', 'e6', 'g3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'Nc3', 'a6', 'a3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'd5', 'e5', 'Nfd7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'd5', 'e5', 'Nfd7'], ['d4', 'd5', 'e3', 'Bf5', 'Be2', 'Nf6', 'Nf3', 'Nc6', 'Nc3', 'h6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'e6', 'e4', 'g6', 'Bxc4', 'Bg7'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'Bg4', 'a3', 'Bxf3', 'Qxf3', 'e5'], ['d4', 'Nf6', 'Bg5', 'e6', 'e4', 'd5', 'e5', 'h6', 'Be3', 'Nfd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bc4', 'd6', 'h3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Nf6', 'Bg5', 'Be7'], ['a3', 'd5', 'Ra2', 'e6', 'h3', 'Nf6', 'Rh2', 'Bd6', 'e3', 'Bxh2'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'b6', 'Nc3', 'Bb7', 'Be3', 'Nf6'], ['Nc3', 'e5', 'e4', 'Bb4', 'a3', 'Bxc3', 'dxc3', 'Nf6', 'Nf3', 'Nxe4'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'Bg4', 'e3', 'b5', 'Nc3', 'a6'], ['e4', 'e5', 'Qh5', 'd6', 'd3', 'c5', 'Bg5', 'Be7', 'Nh3', 'g6'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Be7', 'Qxh8', 'Bf6', 'Qxg8+', 'Ke7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'Nc6', 'Bb5', 'e5', 'Bxc6', 'dxc6', 'Qh5', 'Nf6', 'Qxe5+', 'Qe7'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'b6', 'Bd3', 'Bc5'], ['e4', 'e5', 'd4', 'Qe7', 'Nf3', 'exd4', 'Qxd4', 'c5', 'Qe3', 'Qf6'], ['e4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'a6', 'Bxc6', 'dxc6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'd6', 'O-O', 'Nf6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'h6', 'O-O', 'Qf6', 'd3', 'Bc5'], ['c4', 'Nc6', 'd4', 'd5', 'Nf3', 'dxc4', 'e4', 'e6', 'Bxc4', 'Nf6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nc6', 'Nf3', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'a3', 'd6', 'h3', 'Nf6', 'Nc3', 'e5'], ['d4', 'e6', 'Bf4', 'Nf6', 'e3', 'd5', 'c3', 'Bd6', 'Bg3', 'c5'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'g6', 'c3', 'Bg7', 'Nd2', 'Nf6'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7', 'Be3', 'Qb6'], ['c4', 'c5', 'Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'Nf6', 'O-O', 'd6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'dxc4', 'e3', 'b5', 'Qf3', 'Bb7'], ['d4', 'd5', 'Bf4', 'b6', 'e3', 'e6', 'c3', 'Bb7', 'Bd3', 'a6'], ['e4', 'c5', 'Bc4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'h6', 'd3', 'd6'], ['d4', 'Nf6', 'Bf4', 'd5', 'e3', 'e6', 'c3', 'Bd6', 'Bg3', 'O-O'], ['d4', 'f5', 'Bf4', 'e6', 'e3', 'd5', 'Nf3', 'Bd6', 'Ne5', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4', 'Qxd4', 'e6'], ['d4', 'f5', 'Bf4', 'e6', 'e3', 'Nf6', 'Bd3', 'b6', 'c3', 'Bb7'], ['d4', 'e6', 'Bf4', 'd5', 'e3', 'c5', 'c3', 'Nc6', 'Bd3', 'Qb6'], ['d4', 'd5', 'Nf3', 'Bf5', 'Bf4', 'e6', 'e3', 'c6', 'c4', 'Bd6'], ['d4', 'b6', 'Bf4', 'Bb7', 'e3', 'e6', 'Bd3', 'Nf6', 'Nf3', 'c5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'd3', 'Nf6', 'Nc3', 'Nd4'], ['d4', 'd5', 'Bf4', 'c5', 'e3', 'cxd4', 'exd4', 'Nc6', 'c3', 'Qb6'], ['d4', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Nc3', 'Nf6', 'e3', 'Bf5'], ['d4', 'Nf6', 'Bf4', 'd5', 'e3', 'Bg4', 'Nf3', 'Nh5', 'Bg3', 'Nxg3'], ['d4', 'e6', 'Bf4', 'Nf6', 'e3', 'c5', 'c3', 'cxd4', 'exd4', 'Nc6'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'e6', 'g4', 'Bg6', 'h4', 'h6'], ['d4', 'd6', 'Bf4', 'Nf6', 'e3', 'g6', 'c3', 'Bg7', 'Be2', 'Nc6'], ['d4', 'd5', 'c4', 'c6', 'f3', 'dxc4', 'e4', 'b5', 'Bf4', 'e6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Nc3', 'Bg4', 'Bxf7+', 'Kxf7'], ['d4', 'e6', 'Bf4', 'Nf6', 'e3', 'Be7', 'Bd3', 'O-O', 'c3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'a6', 'a4', 'Bg4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'd3', 'a6', 'a3', 'b5'], ['d4', 'Nf6', 'Bf4', 'e6', 'e3', 'd5', 'c3', 'Nbd7', 'Bd3', 'c5'], ['d4', 'd5', 'Nf3', 'c6', 'g3', 'Bf5', 'Bg2', 'e6', 'O-O', 'Bd6'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'd5', 'Be2', 'c5', 'c3', 'Nc6'], ['d4', 'g6', 'Bf4', 'Bg7', 'e3', 'f5', 'Be2', 'Nf6', 'g4', 'e6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Qh5', 'e6', 'Nc3', 'Nd4', 'Qd1', 'Qg5'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'Nf6', 'Nd2', 'e6', 'c3', 'Bd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'c3', 'Nf6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Nc6', 'c3', 'g6', 'h4', 'Bg7'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'Qe7', 'e4', 'Nxe5', 'Nxe5', 'Qxe5'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'f3', 'exf3', 'Nxf3', 'Bg4'], ['e4', 'c5', 'f4', 'Nc6', 'Nf3', 'e6', 'c4', 'Be7', 'Be2', 'Nd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4', 'Qxd4', 'e6'], ['d4', 'e6', 'Bf4', 'Nf6', 'e3', 'c5', 'c3', 'Nc6', 'Bd3', 'd5'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nf3', 'Bg4', 'Be2', 'Bxf3'], ['d4', 'e6', 'Bf4', 'Nf6', 'e3', 'Nd5', 'Bg3', 'Nc6', 'c4', 'Bb4+'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'a6', 'g4', 'Bg6', 'h4', 'h6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bb5+', 'Bd7'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Bg4', 'Bd3', 'e6'], ['e4', 'c5', 'Nf3', 'd6'], ['d3', 'd5', 'f3', 'Nc6', 'Nh3', 'e5', 'Be3', 'Nf6', 'f4', 'e4'], ['e4', 'b6', 'Nf3', 'Ba6', 'Bxa6', 'Nxa6', 'O-O', 'd5', 'd3', 'Nf6'], ['a3', 'e5', 'c3', 'd5', 'e3', 'Nf6', 'g3', 'Bd6', 'h4', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Qe7', 'O-O', 'Bg4', 'd3', 'h6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nc6', 'd5', 'Nd4', 'Nxd4', 'cxd4'], ['d4', 'd5', 'Nf3', 'c5', 'g3', 'Nc6', 'e3', 'Nf6', 'Bg2', 'e6'], ['d4', 'e6', 'c4', 'd5', 'e3', 'dxc4', 'Bxc4', 'Nc6', 'Nc3', 'Nb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Be6'], ['d4', 'Nf6', 'c4', 'd5', 'e3', 'Nc6', 'Nc3', 'e5', 'dxe5', 'Nxe5'], ['d4', 'd5', 'Bf4', 'Nf6', 'Nf3', 'Nc6', 'e3', 'e6', 'c3', 'Bd6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Be3', 'Nf6'], ['e4', 'c5', 'Bc4', 'e6', 'Qf3', 'Nc6', 'c3', 'Nf6', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nf6', 'Nc3', 'exd4', 'Nxd4', 'c5'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['d4', 'd6', 'c4', 'f5', 'Nf3', 'Be6', 'd5', 'Bf7', 'Nc3', 'Nf6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'e6', 'Bb5', 'Qa5+'], ['e4', 'e6', 'd4', 'c5', 'Nf3', 'Nc6', 'c3', 'g6', 'Bb5', 'Nf6'], ['e4', 'e5', 'Nf3', 'b6', 'Bc4', 'Qf6', 'Nc3', 'Ba6', 'Bxa6', 'Nxa6'], ['e4', 'c5', 'e5', 'e6', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'g6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'Bb4'], ['Nf3', 'd5', 'Nc3', 'c5', 'd4', 'Bf5', 'e3', 'cxd4', 'Nxd4', 'Bg6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'e6', 'Nf3', 'c5', 'c3', 'f6'], ['e4', 'c5', 'f4', 'e6', 'd3', 'Nc6', 'Nf3', 'Be7', 'h3', 'b6'], ['e4', 'Nc6', 'd4', 'd6', 'Nf3', 'e5', 'd5', 'f6', 'dxc6', 'a5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['d3', 'd5', 'e3', 'c5', 'c4', 'd4', 'e4', 'e5', 'g3', 'Nc6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'exd4', 'e5', 'Qe7', 'Qxd4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Bc4', 'd6', 'c3', 'Nxf3+'], ['d4', 'Nf6', 'Nf3', 'e6', 'Bf4', 'c5', 'e3', 'Nc6', 'Nbd2', 'Be7'], ['d4', 'Nf6', 'f3', 'e6', 'e4', 'c5', 'Ne2', 'cxd4', 'Nxd4', 'Nc6'], ['d4', 'Nf6', 'Bf4', 'e6', 'c4', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Bc5', 'd3', 'd6', 'O-O', 'Bg4'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'a6', 'Bd3', 'Nc6', 'Nbd2', 'e6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'c3', 'Bd7'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'c5', 'cxd5', 'exd5'], ['e4', 'e6', 'f4', 'd5', 'e5', 'b6', 'Nf3', 'Bb7', 'Nc3', 'd4'], ['d4', 'd5', 'Nf3', 'c5', 'c3', 'Nf6', 'e3', 'Nc6', 'b3', 'Bg4'], ['e4', 'e6', 'f4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'Nf6', 'Bc4', 'h6'], ['d4', 'd5', 'Nf3', 'Bf5', 'e3', 'Nc6', 'c3', 'e6', 'Qa4', 'Qd7'], ['d4', 'Nf6', 'Nf3', 'd5', 'e3', 'Bg4', 'Nbd2', 'e6', 'h3', 'Bh5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Bd7', 'Nf3', 'cxd4'], ['d4', 'd5', 'Nf3', 'Bf5', 'e3', 'a6', 'Bd3', 'Bg6', 'Nbd2', 'Nc6'], ['d4', 'e6', 'c3', 'd5', 'Nf3', 'c5', 'e3', 'cxd4', 'Nxd4', 'Nf6'], ['d4', 'd5', 'Nf3', 'e6', 'e3', 'a6', 'Bd3', 'h6', 'Nbd2', 'Nc6'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'c5', 'cxd5', 'cxd4', 'Qxd4', 'b6'], ['c4', 'e6', 'd4', 'd5', 'Nc3', 'c5', 'Nf3', 'Nf6', 'Bf4', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'g5', 'd4', 'Bg7', 'd5', 'Nce7'], ['e4', 'd6', 'Bc4', 'c6', 'd4', 'Nf6', 'Nc3', 'Bg4', 'f3', 'Bh5'], ['e4', 'Nc6', 'Nf3', 'e5', 'c3', 'a6', 'd4', 'd6', 'd5', 'Nce7'], ['e4', 'e5', 'Nf3', 'd6', 'c3', 'Nf6', 'd4', 'exd4', 'cxd4', 'Be6'], ['e4', 'c6', 'Qf3', 'd6', 'Bc4', 'Nf6', 'g4', 'd5', 'exd5', 'cxd5'], ['e4', 'c6', 'f4', 'd6', 'Nf3', 'Nf6', 'Bc4', 'h6', 'e5', 'dxe5'], ['e4', 'c6', 'Nf3', 'd6', 'a3', 'Bg4', 'Nc3', 'Nd7', 'Bc4', 'h6'], ['d4', 'c6', 'h3', 'd6', 'Nf3', 'Qc7', 'Bf4', 'Nd7', 'c3', 'e5'], ['e4', 'c6', 'd3', 'd6', 'Be3', 'Qc7', 'g3', 'Nf6', 'Bg2', 'e5'], ['e4', 'c6', 'd4', 'd6', 'Nc3', 'Qc7', 'Nf3', 'Bg4', 'h3', 'Bh5'], ['Na3', 'e5', 'Nb5', 'Qh4', 'g3', 'Qe4', 'Nf3', 'Na6', 'd3', 'Qc6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'a3', 'Nf6', 'Bg5', 'Bd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'Bf5', 'd4', 'c6'], ['e4', 'd5', 'Bd3', 'dxe4', 'Bxe4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'Nxe4'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'a6', 'd4', 'cxd4', 'Nxd4', 'Nc6'], ['e4', 'c5', 'Nf3', 'g6', 'Bc4', 'Bg7', 'Ng5', 'e6', 'd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'd6', 'O-O', 'Nd4'], ['e4', 'g6', 'Nf3', 'Bg7', 'Bc4', 'e6', 'Ne5', 'Nf6', 'd4', 'Nxe4'], ['e4', 'c5', 'Qh5', 'Qa5', 'Nc3', 'Nf6', 'Qf3', 'Nc6', 'Bc4', 'Ne5'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'd6', 'Nd5', 'Qd8', 'd3', 'Nf6'], ['e3', 'c5', 'c3', 'd6', 'd4', 'Qa5', 'Qh5', 'cxd4', 'Qxa5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd3', 'Be6', 'Bb5', 'a6'], ['e4', 'c5', 'Bc4', 'Qa5', 'Nf3', 'd5', 'Bxd5', 'e6', 'Bc4', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'd5', 'exd5', 'Nxd5', 'Nc3', 'Nxc3'], ['c4', 'e5', 'Nc3', 'Bc5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Qf6'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'e4', 'e6', 'Nf3', 'Nc6'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Bc5', 'd4', 'Bb6', 'Nxe5', 'd6'], ['Nf3', 'd5', 'e3', 'Nc6', 'c4', 'd4', 'exd4', 'Nxd4', 'Nc3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Bc5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'd4', 'Nf6', 'dxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Nxb4', 'Ba3', 'd6'], ['e4', 'c6', 'd4', 'd6', 'd5', 'e6', 'dxc6', 'f6', 'cxb7', 'Bxb7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Qe7', 'd4', 'Qd6', 'Nxe5', 'Nxe4'], ['d4', 'c5', 'c4', 'cxd4', 'Nf3', 'Nc6', 'Nbd2', 'e5', 'Ne4', 'Bb4+'], ['Nf3', 'd5', 'g3', 'Bg4', 'Bg2', 'Nc6', 'h3', 'Bxf3', 'Bxf3', 'e5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6'], ['e4', 'e6', 'd4', 'a6', 'Nc3', 'd5', 'e5', 'c5', 'dxc5', 'Bxc5'], ['g3', 'd5', 'Bg2', 'Bf5', 'Nf3', 'Nf6', 'Nd4', 'Bd7', 'O-O', 'e5'], ['Nc3', 'd5', 'd4', 'Bf5', 'e4', 'Bxe4', 'Bb5+', 'c6', 'Bc4', 'Bxg2'], ['d4', 'Nf6', 'Bf4', 'Nh5', 'Bd2', 'Nc6', 'e3', 'Nf6', 'c4', 'e5'], ['e4', 'd5', 'exd5', 'Qxd5', 'd4', 'Nc6', 'Nf3', 'Bg4', 'c3', 'Bxf3'], ['d4', 'Nf6', 'Bf4', 'd6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'Qd2', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Re1', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nc3', 'c6', 'Nxe5', 'Qg5'], ['e4', 'd6', 'c4', 'g6', 'd3', 'Bg7', 'Nf3', 'Nc6', 'Be2', 'Nf6'], ['Nc3', 'd5', 'Nf3', 'd4', 'Ne4', 'f5', 'Nc5', 'e5', 'Nd3', 'e4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'Be7', 'Nc3', 'O-O'], ['e4', 'c5', 'c4', 'Nc6', 'f4', 'd6', 'Nf3', 'Bg4', 'Be2', 'Bxf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'c3', 'Bd7', 'd3', 'a6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'e3', 'Bxc3+', 'bxc3', 'd5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'Nf3', 'Bb4', 'Bg5', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'c3', 'Nf6', 'd3', 'Bd7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'e6', 'e3', 'Bd6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'Bd7', 'Qf3', 'Bc6'], ['b4', 'd5', 'b5', 'e5', 'Bb2', 'Bd6', 'a4', 'Nf6', 'e3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nb3', 'Bb6'], ['c4', 'e5', 'Nc3', 'Nf6', 'd3', 'Bb4', 'Bd2', 'O-O', 'a3', 'Ba5'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'e3', 'c5', 'Nc3', 'cxd4'], ['Nf3', 'd5', 'b3', 'c5', 'e3', 'a6', 'Bb2', 'Nc6', 'Be2', 'Bg4'], ['Nf3', 'Nc6', 'd4', 'Nb4', 'e4', 'b6', 'Bd2', 'Bb7', 'Bxb4', 'Bxe4'], ['f4', 'e5', 'fxe5', 'd6', 'exd6', 'Bxd6', 'g3', 'Qg5', 'e3', 'Bxg3+'], ['Nf3', 'f6', 'e4', 'b6', 'd4', 'Bb7', 'Bd3', 'Nh6', 'c4', 'c6'], ['Nf3', 'd5', 'b3', 'e6', 'Bb2', 'f6', 'e3', 'e5', 'c4', 'dxc4'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'b3', 'g6', 'd4', 'Bg7'], ['e4', 'b6', 'Nf3', 'Bb7', 'd3', 'e6', 'Be2', 'c5', 'O-O', 'Bd6'], ['d4', 'f5', 'Bf4', 'Nf6', 'e3', 'g6', 'Nd2', 'Bg7', 'Ngf3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bc5', 'Nc3', 'a6'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'd6', 'g3', 'e6', 'Bg2', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'c3', 'd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'O-O', 'Bf4', 'd6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c5', 'cxd5', 'exd5', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'Re1', 'Nd6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'f4', 'c5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Bf4', 'd6', 'Qd2', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'g3', 'c6', 'Nf3', 'Bd6', 'Bg2', 'f5'], ['d4', 'Nf6', 'c4', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O', 'Nf3', 'c5'], ['e4', 'e5', 'Nf3', 'd6', 'd3', 'Bg4', 'h3', 'Bxf3', 'gxf3', 'Qd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'bxc6', 'O-O', 'Nf6'], ['e4', 'e5', 'Nc3', 'Nf6', 'g3', 'Ng4', 'Bg2', 'd6', 'h3', 'Nh6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'bxc6', 'Nxe5', 'Nxe4'], ['e4', 'e6', 'e5', 'd5', 'd4', 'c5', 'c3', 'Bd7', 'f4', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nf6', 'Nf3', 'g6', 'Nc3', 'Bg7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'Nf3', 'Bd6', 'Bg5', 'Ne7'], ['d4', 'e6', 'c4', 'c5', 'd5', 'exd5', 'cxd5', 'Bd6', 'e4', 'Ne7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'Bb5+', 'Bd7'], ['c4', 'e5', 'Nc3', 'Nf6', 'd3', 'Bc5', 'Bg5', 'Bxf2+', 'Kxf2', 'Ng4+'], ['e4', 'e6', 'b3', 'd5', 'exd5', 'exd5', 'Bb2', 'd4', 'Bd3', 'Ne7'], ['b4', 'e5', 'Bb2', 'd6', 'g3', 'Nf6', 'Bg2', 'Be7', 'c4', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Bd7', 'Nf3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Bd6', 'Bd3', 'Ne7'], ['d4', 'd5', 'Nf3', 'c5', 'c4', 'dxc4', 'd5', 'Nf6', 'Nc3', 'e6'], ['d4', 'g6', 'c4', 'Bg7', 'e4', 'c6', 'f4', 'd5', 'cxd5', 'cxd5'], ['d4', 'g6', 'c4', 'Bg7', 'e4', 'c6', 'f4', 'd6', 'Nf3', 'Bg4'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'b3', 'Bd7', 'Bb2', 'Nc6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nf3', 'Bf5', 'Nc3', 'h6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be6', 'g3', 'Bd6'], ['d4', 'Nf6', 'c4', 'g6', 'e3', 'Bg7', 'Nf3', 'd6', 'Nc3', 'c6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nc3', 'Nbd7', 'Nf3', 'e6'], ['e4', 'e6', 'g3', 'd5', 'exd5', 'exd5', 'd4', 'Bd6', 'h3', 'Ne7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'Ne2', 'dxe4', 'a3', 'Ba5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Bf5', 'Bxc4', 'e6', 'Nc3', 'Nf6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'c6', 'Qd3', 'g6', 'e4', 'dxe4'], ['b4', 'd5', 'Bb2', 'e6', 'e3', 'Nf6', 'b5', 'Bd6', 'Nf3', 'O-O'], ['d4', 'b6', 'e4', 'Bb7', 'Bd3', 'f5', 'Nc3', 'e6', 'Nf3', 'fxe4'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb5+', 'c6', 'Ba4', 'Bd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'h6', 'e4', 'd6', 'f4', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'a3', 'Qa5'], ['d4', 'e6', 'c4', 'd5', 'e3', 'c6', 'Nf3', 'Nf6', 'Nbd2', 'Nbd7'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb3', 'c6', 'd3', 'Bd6'], ['d4', 'b5', 'e4', 'd6', 'Bxb5+', 'c6', 'Be2', 'a6', 'Nf3', 'Bb7'], ['e4', 'e6', 'e5', 'd5', 'exd6', 'Bxd6', 'Bb5+', 'c6', 'Ba4', 'Nf6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Bf5', 'Nc3', 'e6', 'Nf3', 'h6'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'c5', 'c3', 'Nc6', 'e3', 'Bd7'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'e3', 'O-O', 'Nf3', 'd5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'exd5', 'exd5', 'Qd3', 'Ne7'], ['d4', 'Nf6', 'c4', 'e6', 'e3', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Bb4'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Nbd7', 'cxd5', 'cxd5'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'e5', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'c6', 'Nf3', 'f5', 'e3', 'Bd6'], ['d4', 'g6', 'c4', 'Bg7', 'e4', 'b6', 'Be3', 'Bb7', 'Nc3', 'e6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'Bf5', 'Nf3', 'Nbd7'], ['e3', 'e5', 'd4', 'exd4', 'exd4', 'd5', 'Nc3', 'c6', 'Nf3', 'Bd6'], ['d4', 'd5', 'Bf4', 'e6', 'e3', 'c5', 'Nc3', 'cxd4', 'Qxd4', 'Nc6'], ['d4', 'h6', 'e3', 'e6', 'Bd3', 'a6', 'f4', 'b5', 'c3', 'Bb7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Bd7', 'a3', 'Nc6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bd6', 'Bb5+', 'c6'], ['c4', 'e5', 'Nc3', 'Nf6', 'e4', 'Nc6', 'd3', 'Be7', 'Nf3', 'd6'], ['e4', 'e6', 'd3', 'd5', 'Qe2', 'dxe4', 'dxe4', 'e5', 'Nf3', 'Nc6'], ['d4', 'd5', 'c4', 'dxc4', 'b3', 'cxb3', 'axb3', 'Nc6', 'e3', 'Bf5'], ['e4', 'g6', 'd4', 'c6', 'c4', 'a6', 'f4', 'h5', 'Nf3', 'Nf6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'Nxe5', 'd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd3', 'b6', 'Bg5', 'Qe7'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'Bb4', 'Nxc3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'f6', 'Nxe5', 'fxe5', 'Qh5+', 'Ke7', 'Qxe5+', 'Kf7'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'Bc4', 'Be6', 'Bxe6', 'fxe6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'Bb5', 'Bd7', 'dxe5', 'Nxe5'], ['d4', 'd5', 'e3', 'Nf6', 'Nf3', 'Bg4', 'h3', 'Bd7', 'Nc3', 'b6'], ['d4', 'g6', 'd5', 'e6', 'e4', 'f5', 'dxe6', 'dxe6', 'exf5', 'exf5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'c5'], ['d4', 'd5', 'e3', 'e6', 'Nf3', 'c5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'd3', 'Bxc4', 'dxc4', 'c5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'd3', 'Be6', 'Bxe6', 'fxe6'], ['e4', 'e5', 'f4', 'd6', 'Bc4', 'exf4', 'Nf3', 'h6', 'O-O', 'Bg4'], ['d4', 'd5', 'e3', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'Bf5', 'h3', 'Nb4'], ['d4', 'f5', 'e3', 'e6', 'f4', 'Nf6', 'h3', 'Be7', 'Bd3', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'a3', 'a6', 'Nd5', 'Nf6'], ['d4', 'd5', 'e3', 'Bf5', 'Bd3', 'Be4', 'Nc3', 'Bxg2', 'Nh3', 'Bxh1'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'Bb5', 'Bd7', 'dxe5', 'Nxe5'], ['e4', 'e5', 'Bc4', 'd6', 'Qf3', 'f6', 'Bxg8', 'Rxg8', 'Qh5+', 'g6'], ['d4', 'd5', 'e3', 'Nf6', 'Nf3', 'Ne4', 'Bd3', 'f5', 'Bxe4', 'fxe4'], ['d4', 'd5', 'e3', 'Nf6', 'Nf3', 'Nc6', 'h3', 'Bf5', 'Bd3', 'Bxd3'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Nc6', 'Bb5', 'Bd7', 'c3', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'Nxe5', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'Bg4'], ['d4', 'd5', 'e3', 'Nf6', 'Nf3', 'Nc6'], ['d4', 'd5', 'e3', 'e6', 'Nf3', 'Bb4+', 'c3', 'Be7', 'b4', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'c6', 'Bc4', 'b5', 'Bb3', 'c5'], ['e4', 'e5', 'Bc4', 'd6', 'Nc3', 'Be6', 'Bxe6', 'fxe6', 'd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'Ng5', 'Be6', 'Nxe6', 'fxe6'], ['d4', 'd5', 'e3', 'c6', 'Nf3', 'Bg4', 'Nbd2', 'Bxf3', 'Nxf3', 'Nf6'], ['d4', 'd5', 'e3', 'Nf6', 'Nf3', 'e6', 'Ne5', 'Bd6', 'f3', 'O-O'], ['d4', 'g6', 'e3', 'Bg7', 'Nf3', 'e5', 'c3', 'e4', 'Ng5', 'Qxg5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6'], ['e4', 'e5', 'f4', 'd6', 'Nf3', 'exf4', 'd4', 'f5', 'exf5', 'Bxf5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'c3', 'Be6', 'Bxe6', 'fxe6'], ['d4', 'd5', 'e3', 'Nf6', 'Nf3', 'e6', 'Bd3', 'a6', 'h3', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd7', 'Bb5', 'c6', 'Bc4', 'e6'], ['d4', 'e6', 'e3', 'f6', 'f4', 'Nh6', 'h3', 'f5', 'Nf3', 'Be7'], ['e4', 'e5', 'Nf3', 'd6', 'd3', 'f6', 'Nbd2', 'Nc6', 'g3', 'Be6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Ne7', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'c6', 'Ba4', 'b5', 'Bb3', 'c5'], ['d4', 'd5', 'e3', 'e6', 'Nf3', 'Nf6', 'Bd3', 'a6', 'h3', 'h6'], ['d4', 'd5', 'e3', 'e6', 'Nf3', 'c5', 'a3', 'Nc6', 'c3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Nc6', 'Bc4', 'Be6', 'Qe2', 'Bxc4'], ['e4', 'e5', 'Bb5', 'c6', 'Bc4', 'b5', 'Bb3', 'c5', 'a3', 'c4'], ['d3', 'd5', 'Nd2', 'Nf6', 'c3', 'Bg4', 'Qa4+', 'Bd7', 'Qc2', 'Bf5'], ['e4', 'd6', 'Nf3', 'g5', 'Nxg5', 'Bg4', 'Be2', 'Bd7', 'Bh5', 'Nf6'], ['d3', 'Nf6', 'e4', 'Nxe4', 'dxe4'], ['d4', 'Nf6', 'Nd2', 'd5', 'Ngf3', 'Bg4', 'h3', 'Bh5', 'g3', 'e6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'Nf6', 'Nf3', 'Nd5'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'dxc4', 'e3', 'b5'], ['e4', 'c6', 'Nf3', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'Nc3', 'g6'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'e6', 'd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nd7', 'c3', 'a6', 'd4', 'b5'], ['e4', 'd6', 'Nf3', 'e5', 'd4', 'Nf6', 'Bc4', 'Be7', 'O-O', 'O-O'], ['c4', 'c5', 'Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'a6', 'd3', 'b5'], ['e4', 'Nf6', 'Nc3', 'Nc6', 'd4', 'd6', 'Bg5', 'e5', 'Nf3', 'g6'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'Bf5', 'c4', 'c6', 'Nc3', 'dxc4'], ['c4', 'c5', 'g3', 'Nc6', 'Bg2', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7'], ['c4', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'Nc3', 'd6', 'd3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'h3', 'Nc6', 'd3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Be2', 'Nc6', 'O-O', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Be2', 'g6', 'O-O', 'Bg7'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'Bc5', 'Nc3', 'a6', 'd3', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'd4', 'cxd4', 'Nxd4', 'a6'], ['c4', 'g6', 'g3', 'Bg7', 'Bg2', 'Nf6', 'Nc3', 'c6', 'd3', 'd5'], ['c4', 'e5', 'g3', 'Nc6', 'Bg2', 'Nf6', 'Nc3', 'Bc5', 'd3', 'Ng4'], ['g3', 'Nf6', 'Bg2', 'Nc6', 'Nf3', 'b6', 'd4', 'Bb7', 'Ne5', 'e6'], ['c4', 'e5', 'g3', 'd6', 'Bg2', 'Be7', 'Nc3', 'Nf6', 'd3', 'O-O'], ['e4', 'c5', 'c3', 'd6', 'd4', 'Nd7', 'Nf3', 'Ngf6', 'Bd3', 'a6'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nc3', 'e6', 'Nf3', 'Bb4'], ['c4', 'e5', 'g3', 'f5', 'Bg2', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bxc3'], ['e4', 'c5', 'c4', 'd6', 'Nc3', 'Nf6', 'h3', 'Nc6', 'd3', 'b6'], ['c4', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'Nc3', 'O-O', 'd4', 'd6'], ['c4', 'e5', 'g3', 'f5', 'Bg2', 'Nf6', 'Nc3', 'Bc5', 'd3', 'O-O'], ['c4', 'e5', 'g3', 'f5', 'Bg2', 'Nf6', 'Nc3', 'c6', 'd3', 'Bc5'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qa4', 'a6', 'Be3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'd5', 'Bf4', 'c6', 'Nf3', 'Nf6', 'Nbd2', 'Bf5', 'e3', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'd4', 'cxd4', 'Nf3', 'd6', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'Bc5', 'Nc3', 'c6', 'd3', 'Ng4'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'dxc4', 'a4', 'Bf5'], ['c4', 'e5', 'g3', 'Nc6', 'Bg2', 'Bc5', 'Nc3', 'a6', 'd3', 'Qf6'], ['c4', 'Nf6', 'g3', 'c6', 'Bg2', 'd5', 'cxd5', 'cxd5', 'Nf3', 'Nc6'], ['d4', 'd5', 'Bf4', 'Bf5', 'c4', 'c6', 'e3', 'e6', 'Nc3', 'Nf6'], ['c4', 'e6', 'g3', 'd5', 'cxd5', 'exd5', 'Bg2', 'Nf6', 'Nc3', 'Be6'], ['e4', 'd6', 'h3', 'Qd7', 'Nc3', 'Qe6', 'd3', 'c5', 'b3', 'd5'], ['Nf3', 'd5', 'e4', 'e6', 'exd5', 'exd5', 'Qe2+', 'Be7', 'Qxe7+', 'Qxe7+'], ['e4', 'e6', 'e5', 'Qg5', 'Nf3', 'Qxe5+', 'Nxe5', 'd6', 'Ng4', 'Ne7'], ['d4', 'd6', 'e4', 'e5', 'f3', 'Nf6', 'dxe5', 'dxe5', 'g4', 'h5'], ['e4', 'c6', 'Bc4', 'f6', 'Qh5+', 'g6', 'Qf3', 'Bh6', 'e5', 'fxe5'], ['e4', 'd6', 'd4', 'Qd7', 'Bc4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5'], ['e4', 'e5', 'f3', 'd6', 'g4', 'h5', 'gxh5', 'Rxh5', 'h4', 'Nf6'], ['e4', 'e6', 'Nf3', 'Nc6', 'Bc4', 'e5', 'd3', 'f5', 'Ng5', 'fxe4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'O-O', 'a6', 'a4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'd6', 'O-O', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Nxe4', 'Bxf7+', 'Kxf7'], ['e4', 'e5', 'f4', 'd5', 'exd5', 'c6', 'fxe5', 'Qh4+', 'g3', 'Qe4+'], ['f3', 'e5', 'e3', 'd5', 'd4', 'Bd6', 'c4', 'exd4', 'Qxd4', 'Nf6'], ['e4', 'g6', 'd4', 'Bg7', 'Bc4', 'd6', 'f4', 'Nf6', 'e5', 'Ne4'], ['d4', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bg4'], ['d4', 'Nf6', 'e3', 'e6', 'Nc3', 'd5', 'a3', 'Be7', 'Bd3', 'O-O'], ['c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'd6', 'd4', 'Nd7', 'e4', 'a6'], ['h4', 'd5', 'd4', 'c6', 'Nc3', 'e6', 'e4', 'dxe4', 'Nxe4', 'Nf6'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'a6', 'a4', 'Nc6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'bxc6'], ['e4', 'g6', 'd4', 'Bg7', 'Be3', 'd6', 'f4', 'c5', 'Nf3', 'Nf6'], ['f4', 'e5', 'fxe5', 'd6', 'd4', 'dxe5', 'd5', 'Nf6', 'c4', 'Bc5'], ['c3', 'd5', 'd4', 'Nc6', 'Bf4', 'Nf6', 'e3', 'Bf5', 'Nf3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Qh4', 'Nb5', 'Kd8'], ['e4', 'a6', 'd4', 'b5', 'c4', 'Bb7', 'Nc3', 'b4', 'Nd5', 'e6'], ['d4', 'd5', 'c3', 'Bg4', 'Nd2', 'Nc6', 'f4', 'f6', 'g3', 'e5'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Be7', 'Qxh8', 'Kf8', 'Qxh7', 'd6'], ['c4', 'e5', 'e4', 'f6', 'd4', 'g5', 'h3', 'Bb4+', 'Nc3', 'Bd6'], ['d4', 'd5', 'c3', 'Bf5', 'b4', 'Nf6', 'a3', 'a6', 'e3', 'g6'], ['e4', 'e5', 'f4', 'f6', 'Nc3', 'd6', 'Bb5+', 'c6', 'Ba4', 'Qa5'], ['d4', 'e5', 'Nf3', 'd6', 'e4', 'f6', 'Nc3', 'c5', 'Qd3', 'Nc6'], ['e4', 'e5', 'd4', 'd5', 'Bb5+', 'Nc6', 'exd5', 'Qxd5', 'Bd3', 'Nf6'], ['e4', 'e5', 'd3', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'f6', 'Nd2', 'Bf5'], ['e4', 'e5', 'Nf3', 'd5', 'Bd3', 'Bd6', 'O-O', 'Be6', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Bc5', 'c3', 'b5', 'd4', 'Bb6', 'Bxb5', 'a6'], ['e4', 'e5', 'g3', 'Nf6', 'Nf3', 'Nc6', 'Bg2', 'd5', 'exd5', 'Nxd5'], ['e4', 'd5', 'Bb5+', 'Nc6', 'exd5', 'a6', 'Ba4', 'e5', 'dxc6', 'bxc6'], ['d4', 'e5', 'Nf3', 'Bb4+', 'Nc3', 'exd4', 'Nxd4', 'd6', 'e4', 'Na6'], ['d4', 'e5', 'e3', 'Bb4+', 'c3'], ['e4', 'Nf6', 'b4', 'Nxe4', 'f3', 'Nf6', 'Bb2', 'e5', 'Qe2', 'd6'], ['e4', 'e5', 'Qf3', 'Bc5', 'Bc4', 'Qg5', 'h4', 'Qf4', 'Qxf4', 'exf4'], ['c4', 'e5', 'e4', 'Bc5', 'Nf3', 'Qf6', 'd3', 'd6', 'g4', 'Bxg4'], ['e4', 'e5', 'Qf3', 'c6', 'Bc4', 'Qa5', 'Qxf7+', 'Kd8', 'Qxf8+', 'Kc7'], ['e4', 'e5', 'Nf3', 'g6', 'Bc4', 'f5', 'exf5', 'gxf5', 'Nxe5', 'Bd6'], ['d4', 'Nf6', 'Nc3', 'e6', 'e4', 'c5', 'f3', 'cxd4', 'Nge2', 'dxc3'], ['d4', 'e6', 'b3', 'Nf6', 'c4', 'd5', 'Nc3', 'c6', 'Bg5', 'Bb4'], ['d4', 'd5', 'c4', 'Nc6', 'Nc3', 'f6', 'Bf4', 'e5', 'dxe5', 'fxe5'], ['d4', 'e5', 'b3', 'f6', 'c4', 'd5', 'Nc3', 'c5', 'e3', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'a6', 'd3', 'b5'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'Qg3', 'O-O', 'e5', 'Ne4'], ['d4', 'd5', 'Nf3', 'Bg4', 'c4', 'e6', 'Bg5', 'f6', 'Bh4', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'e6', 'd3', 'Be7'], ['e3', 'e5', 'Qf3', 'Bc5', 'Bc4', 'Nf6', 'Qg3', 'O-O', 'Qxe5', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'b6', 'Nf3', 'c5'], ['e4', 'e5', 'd3', 'Nf6', 'Nc3', 'Bc5', 'h3', 'Nc6', 'Nf3', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'd3', 'a6', 'Be3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxd4', 'exd4', 'd3', 'a5'], ['e4'], ['e4', 'c6', 'Nf3', 'd5', 'Bd3', 'dxe4', 'Bxe4', 'Bg4', 'h3', 'Bh5'], ['Nf3', 'Nc6', 'e4', 'e5', 'd4', 'd6', 'Bc4', 'a6', 'dxe5', 'b5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bb4', 'Ng5', 'd5'], ['d4', 'd5', 'e3', 'Bf5', 'h4', 'e6', 'g4', 'Be4', 'f3', 'Bxf3'], ['e4', 'c6', 'f3', 'e5', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Nc6'], ['e4', 'e5', 'Qh5', 'Qf6', 'd3', 'g6', 'Qf3', 'Qxf3', 'Nxf3', 'Bg7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'c3', 'Nc6'], ['h4', 'e5', 'a3', 'Bc5', 'Nf3', 'Nc6', 'e3', 'd6', 'd4', 'Bb6'], ['e4', 'c5'], ['e4', 'c6', 'Nf3', 'b5', 'Nc3', 'b4', 'Ne2', 'Ba6', 'Ng3', 'Bxf1'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'f6', 'c4', 'Bb4+', 'Nc3', 'Nxd4'], ['e4', 'g6', 'Nf3', 'Bg7', 'd4', 'd5', 'e5', 'Bg4', 'h3', 'Bxf3'], ['d4', 'd5', 'Nc3', 'Bf5', 'e3', 'e6', 'Bd3', 'Bg6', 'Bxg6', 'hxg6'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'Nf3', 'c5', 'dxc5', 'Ne4'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'Bg4', 'Bb5', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Bg4', 'Bb5+', 'c6'], ['d4', 'd5', 'Bf4', 'e6', 'e3', 'Bd6', 'Bg3', 'Nf6', 'Nf3', 'Ne4'], ['e4', 'd5', 'exd5', 'Qxd5', 'd4', 'Nc6', 'Be3', 'Nf6', 'c4', 'Qd8'], ['e4', 'Nf6', 'Nf3', 'Nxe4', 'd3', 'Nd6', 'Be3', 'Na6', 'Be2', 'Nb4'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qf3', 'Na6', 'Qxf7#'], ['e4', 'e5', 'd4', 'Nc6', 'c3', 'Nf6', 'd5', 'Ne7', 'Bd3', 'c5'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Bc5', 'Nxe5', 'Qe7', 'd4', 'Bb6'], ['e4', 'd5', 'Nc3', 'd4', 'Bc4', 'e6', 'Nce2', 'f5', 'Nf3', 'Bb4'], ['e4', 'e5', 'Nf3', 'f5', 'Nc3', 'Nc6', 'Bd3', 'g6', 'b3', 'Nf6'], ['e4', 'a6', 'Nf3', 'd6', 'Bc4', 'Bg4', 'Nc3', 'Bxf3', 'Qxf3', 'e6'], ['d4', 'd5', 'e4', 'e5', 'g4', 'Nc6', 'g5', 'f6', 'Bg2', 'Bd7'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'Nc6', 'Bc4', 'b6', 'b3', 'Bb7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'b5', 'Bd5', 'Nce7', 'Bxa8', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nc6', 'd3', 'a6', 'O-O', 'b5'], ['e4', 'e5', 'Nf3', 'd6', 'd3', 'h6', 'c4', 'Nc6', 'b3', 'Bg4'], ['f4', 'e5', 'fxe5', 'Qe7', 'Nf3', 'Nc6', 'd4', 'd5', 'Bg5', 'f6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nd7', 'd5', 'f5', 'Nc3', 'Ngf6'], ['Nf3', 'd5', 'c4', 'Nf6', 'e3', 'Nc6', 'Nc3', 'e5', 'd4', 'e4'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'Bc5', 'e3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'h6'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'd5', 'cxd5', 'Nxd5', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Bb5', 'Bd7'], ['e4', 'c5', 'Bc4', 'Nf6', 'Qf3', 'Nc6', 'g4', 'Nd4', 'Qd3', 'd5'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Ng5', 'e6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'd4', 'd6', 'Nf3', 'Nxe4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Be3', 'Bf5'], ['d4', 'Nf6', 'Nc3', 'd5', 'f3', 'Nc6', 'e4', 'e5', 'Bb5', 'Bb4'], ['e4', 'c5', 'f4', 'Nc6', 'Nf3', 'd6', 'h4', 'e5', 'Ng5', 'exf4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Nb4', 'Nc3', 'a6', 'Bc4', 'Nc6'], ['d4', 'f6', 'e4'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'dxe4', 'Bc4', 'Bd6', 'Nxf7'], ['e4', 'e6', 'Nc3', 'd5', 'Nf3', 'Nc6', 'e5', 'f6', 'd4', 'Bb4'], ['d4', 'e6', 'c4', 'Nf6', 'd5', 'c6', 'Nd2', 'cxd5', 'e3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Qe2', 'Qe7'], ['e4', 'e6', 'Nf3', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nc6', 'Be2', 'f5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['d4', 'Nf6', 'g3', 'e6', 'a3', 'Nc6', 'c3', 'e5', 'd5', 'Ne7'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'a6', 'Bc4', 'b5', 'Bb3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'Bd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Bb5', 'Nf6', 'd4', 'a6', 'Bc4', 'b5', 'Bd5', 'Nxd5'], ['e4', 'd5', 'exd5', 'Bf5', 'Nc3', 'e5', 'd4', 'e4', 'f3', 'Bb4'], ['e4', 'e5', 'Nf3', 'f5', 'Nxe5', 'Bc5', 'Qh5+', 'g6', 'Nxg6', 'Nf6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nf6', 'Nf3', 'Nc6'], ['d4', 'd5', 'c3', 'Nc6', 'f3', 'e5', 'dxe5', 'Nxe5', 'Qd4', 'Nc6'], ['c4', 'Nc6', 'g3', 'e5', 'Bg2', 'Nge7', 'Nf3', 'e4', 'Ng5', 'd5'], ['c4', 'e5', 'e4', 'Bc5', 'Nc3', 'd6', 'Nf3', 'f6', 'd4', 'exd4'], ['e4', 'e5', 'd3', 'Nc6', 'Qf3', 'Nd4', 'Qg3', 'Nxc2+', 'Kd1', 'Nxa1'], ['c4', 'Nf6', 'd4', 'd6', 'Nc3', 'c6', 'e4', 'g6', 'Bg5', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nd4', 'Bc4', 'Nf6', 'Nxe5', 'd6'], ['c4', 'e5', 'e4', 'Nf6', 'Nc3', 'Nc6', 'd3', 'Bb4', 'Bd2', 'Nd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e5', 'O-O', 'Nf6', 'c3', 'd6'], ['d4', 'd5', 'Nc3', 'Nf6', 'f3', 'Nc6', 'a3', 'Nxd4', 'Qxd4', 'e6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'd6', 'f4', 'Nf6', 'e5', 'dxe5'], ['d4', 'd5', 'c3', 'Nc6', 'Bf4', 'Bg4', 'Nd2', 'Nf6', 'h3', 'Bh5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nxd4'], ['c4', 'e5', 'Nc3', 'c6', 'e4', 'Qf6', 'Nge2', 'Bc5', 'f3', 'Qh4+'], ['d4', 'Nf6', 'a3', 'd5', 'h3', 'e6', 'c3', 'c5', 'dxc5', 'Bxc5'], ['e4', 'c5', 'Bc4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'O-O', 'Bg4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e5', 'O-O', 'd6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'dxe5', 'h3', 'Bh5'], ['c4', 'c5', 'Nc3', 'a6', 'e4', 'e6', 'Nf3', 'f6', 'd4', 'd5'], ['d4', 'Nf6', 'Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O', 'O-O', 'e6'], ['Nf3', 'Nc6', 'd4', 'd5', 'Bf4', 'h6', 'e3', 'a6', 'c4', 'e6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Be7', 'Nf3', 'Nf6', 'Bg5', 'O-O'], ['c4', 'Nf6', 'e3', 'd5', 'c5', 'e5', 'b4', 'a5', 'Ba3', 'axb4'], ['d4', 'd5'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Bg4', 'Ne5', 'Bf5', 'cxd5', 'Qxd5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Nbd7', 'e3', 'h6'], ['d4', 'd5', 'Bf4', 'Nf6', 'c3', 'e6', 'f3', 'Bd6', 'Qd2', 'c5'], ['d4', 'd5', 'c4', 'f6', 'cxd5', 'Qxd5', 'Nc3', 'Qa5', 'e4', 'e5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bd3', 'Bd6', 'h4', 'Nf6'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'Nf3', 'Ne7', 'Bd3', 'd5'], ['e4', 'd6', 'd4', 'Nd7', 'c4', 'e5', 'Be3', 'Ngf6', 'f3', 'Be7'], ['e4', 'Nc6', 'Nf3', 'f5', 'exf5', 'd5', 'd4', 'Bxf5', 'Bb5', 'e6'], ['e4', 'd6', 'Nf3', 'c5', 'Bc4', 'e6', 'a3', 'Nc6', 'h3', 'Nge7'], ['e4', 'd6', 'Bc4', 'g5', 'Qh5', 'Nf6', 'Qxf7+', 'Kd7', 'Be6+', 'Kc6'], ['h4', 'd6', 'd3', 'g6', 'g3', 'Bg7', 'a4', 'Nf6', 'b3', 'O-O'], ['g3', 'd5', 'c3', 'Nc6', 'h4', 'g6', 'e3', 'Rb8', 'a3', 'Nf6'], ['g4', 'e6', 'b4', 'd6', 'Ba3', 'd5', 'Nc3', 'Nc6', 'Rc1', 'Bxb4'], ['e4', 'd5', 'Nf3', 'Bd7', 'Nc3', 'Nf6', 'e5', 'Ne4', 'Nxd5', 'Nc6'], ['d3', 'e5', 'Bf4', 'Qf6', 'Bxe5', 'Qxe5', 'Qd2', 'Qxb2', 'Kd1', 'Qxa1'], ['e4', 'c5', 'd4', 'cxd4', 'Nf3', 'Nc6', 'Nxd4', 'g6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Bd6', 'Nc3', 'a6', 'Qe2', 'f6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'Nc6', 'e3', 'Nf6'], ['e4', 'e6', 'Nc3', 'd5', 'd4', 'c5', 'Nf3', 'dxe4', 'Nxe4', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf3', 'a6'], ['e4', 'd5', 'd3', 'dxe4', 'Nc3', 'exd3', 'Bxd3', 'Nf6', 'Nf3', 'Nc6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'e5'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'e4', 'Ne5', 'Qxd5', 'Qh5', 'g6'], ['d4', 'e6', 'e4', 'd5', 'e5', 'Nc6', 'Nf3', 'b6', 'Nc3', 'Bb7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Bc5', 'Nxe5', 'Qe7', 'Bxf7+', 'Kf8'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qc5', 'd6', 'Qd5', 'Be6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'f4', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'Nc3', 'd6', 'd4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Bd6', 'Nf3', 'Bc5', 'Bc4', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nc3', 'Bd6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e5', 'Nc3', 'g6', 'O-O', 'Bg7'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'g5', 'h4', 'g4', 'Ne5', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Be2', 'Bc5', 'O-O', 'd6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'Bb5+', 'Bd7', 'c4', 'Bxb5'], ['e4', 'e6', 'd4', 'b6', 'Be3', 'Bb7', 'Nc3', 'a6', 'Nf3', 'Ne7'], ['e4', 'e5', 'f4', 'exf4', 'Bc4', 'c6', 'Nc3', 'b5', 'Bb3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'd4', 'd6', 'Nf3', 'Nxe4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'h3', 'Nf6', 'Bc4', 'b6'], ['e4', 'e5', 'Ke2', 'd6', 'Nf3', 'Nf6', 'd3', 'Nc6', 'Bg5', 'Nd4+'], ['c4', 'e5', 'Nc3', 'Ke7', 'Nf3', 'Nc6', 'Nd5+', 'Ke8', 'd3', 'f6'], ['e4', 'e5', 'Ke2', 'Bc5', 'Nf3', 'd6', 'c3', 'Bg4', 'a4', 'Bxf3+'], ['e4', 'e5', 'd4', 'Ke7', 'dxe5', 'Nc6', 'Bg5+', 'f6', 'exf6+', 'Nxf6'], ['e4', 'Nc6', 'Ke2', 'd6', 'd3', 'e5', 'Nf3', 'Bg4', 'Nd2', 'f5'], ['e4', 'd6', 'Ke2', 'e5', 'd3', 'f5', 'Nd2', 'fxe4', 'Nxe4', 'Nf6'], ['Nf3', 'e5', 'a3', 'Ke7', 'g3', 'Nc6', 'Bg2', 'd6', 'O-O', 'Be6'], ['d4', 'e5', 'dxe5', 'Ke7', 'Nf3', 'f6', 'b3', 'c6', 'Nd4', 'fxe5'], ['e4', 'e5', 'Ke2', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'Bc5', 'd3', 'Ng4'], ['d4', 'e5', 'd5', 'Ke7', 'Nf3', 'f6', 'e4', 'Kf7', 'Nc3', 'Bb4'], ['e4', 'e6', 'Ke2', 'd5', 'd3', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'f6', 'Bc4', 'e6'], ['c4', 'c6', 'Nc3', 'd5', 'd4', 'Bg4', 'h3', 'Bh5', 'Qc2', 'Nf6'], ['e4', 'e5', 'Ke2', 'Nf6', 'd3', 'd5', 'Nc3', 'd4', 'Nb1', 'h6'], ['Nf3', 'e5', 'e4', 'Ke7', 'Nxe5', 'Nf6', 'Qe2', 'd6', 'Nc4', 'Bg4'], ['d4', 'g6', 'c4'], ['g3', 'd5', 'Bg2', 'h5', 'e3', 'Bg4', 'Nf3', 'h4', 'h3', 'Bxf3'], ['d4', 'g6', 'c4', 'Bg7', 'Nc3', 'e6', 'h4', 'd5', 'h5', 'gxh5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Nf6', 'd4', 'Bg4'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'Nc3', 'b5', 'Nxb5', 'c6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'O-O', 'h4', 'Nc6'], ['d4', 'd5', 'f3', 'Nf6', 'h4', 'h6', 'h5', 'Bf5', 'g4', 'Bh7'], ['d4', 'b6', 'c4', 'Bb7', 'Nc3', 'g6', 'd5', 'd6', 'Nf3', 'Nd7'], ['e4', 'd5', 'e5', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Bb5', 'Bf5'], ['d4', 'c6', 'c4', 'd5', 'Nc3', 'dxc4', 'a4', 'b6', 'e3', 'a5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'b5', 'cxd5', 'Bb7', 'dxc6', 'Bxc6'], ['e4', 'e6', 'Qh5', 'd6', 'e5', 'Be7', 'exd6', 'Qxd6', 'Bd3', 'Bf6'], ['d4', 'e6', 'e3', 'Qh4', 'Bd3', 'Nf6', 'Nf3', 'Qg4', 'h3', 'Qxg2'], ['d4', 'Nf6', 'Nc3', 'Nc6', 'Bf4', 'd5', 'Nb5', 'Rb8', 'Bxc7', 'Qd7'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Be6', 'Nc3', 'd5', 'exd5', 'Bxd5'], ['d4', 'e6', 'e3', 'a6', 'Bd3', 'Nf6', 'f4', 'Nd5', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Nf6', 'Bc4', 'Nc6', 'Ng5', 'Be6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'Ng5', 'Nxe4', 'Nxf7', 'Kxf7'], ['e4', 'Nf6', 'e5', 'Ne4', 'd3', 'Nc5', 'd4', 'Ne4', 'f3', 'Ng5'], ['e4', 'e5', 'Qh5', 'Nh6', 'Qxe5+', 'Be7', 'Qxg7', 'Rf8', 'Qxh6', 'f5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Be7', 'Bf4', 'c6', 'e3', 'Nf6'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'e6', 'Nc3', 'exd5', 'cxd5', 'd6'], ['e4', 'c5', 'c3', 'Nf6', 'e5', 'Nd5', 'd4', 'cxd4', 'Nf3', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'g3', 'Nf6', 'Bg2', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Nxe4'], ['Nf3'], ['d4', 'd6', 'e4', 'Nf6', 'Bd3', 'e5', 'c3', 'd5', 'dxe5', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bxb4', 'c3', 'Be7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nf6', 'Nf3', 'Bg4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Bg4', 'Be2', 'Nc6', 'O-O', 'O-O-O'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nf6', 'Nf3', 'Bg4'], ['d4', 'Nc6', 'd5', 'Nd4', 'e3', 'd6', 'exd4', 'Bf5', 'Nc3', 'c5'], ['e4', 'e5', 'd4', 'f6', 'Nf3', 'h6', 'Bd2', 'exd4', 'Nxd4', 'Bc5'], ['Nf3', 'Nc6', 'Nc3', 'e5', 'Ne4', 'f5', 'Nc3', 'Bc5', 'd4', 'exd4'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'Nc6', 'Nf3', 'e5', 'd5', 'Nce7'], ['e4', 'c5', 'Qh5', 'Nf6', 'Qxc5', 'd6', 'Qd4', 'Nc6', 'Qe3', 'e5'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e5', 'd5', 'Nf6', 'Nc3', 'Bc5'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'Nf6', 'd3', 'e5', 'Bb5+', 'Bd7'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'd6', 'h3', 'e5'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'd6', 'd4', 'cxd4', 'cxd4', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['d4', 'd5', 'f4', 'Bf5', 'e3', 'Nf6', 'c3', 'Ne4', 'Bd3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Ng5', 'Be6', 'Bxe6', 'fxe6'], ['d4', 'Nf6', 'c4', 'g6', 'Nf3', 'd6', 'Nc3', 'Bg7', 'e4', 'O-O'], ['e4', 'e5', 'd4', 'Qh4', 'Qd3', 'exd4', 'Qxd4', 'Nc6', 'Qd3', 'd6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'e6', 'e4', 'Bb4', 'Bxc4', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'e6', 'e4', 'Bb4', 'Bxc4', 'Bxc3+'], ['d4', 'e6', 'c4', 'Nf6', 'Nc3', 'b6', 'e3', 'Bb7', 'Nf3', 'Nc6'], ['d4', 'd5', 'Nc3', 'Bg4', 'b3', 'Nc6', 'Bb2', 'Nf6', 'f3', 'Bf5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'd6', 'Ng5', 'Bg4', 'f3', 'Be6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qh5', 'Nf6', 'Qxf7#'], ['d4', 'e6', 'e4', 'd5', 'e5', 'f6', 'exf6', 'Nxf6', 'Bg5', 'Be7'], ['e4', 'e5', 'Qf3', 'Nf6', 'c4', 'c6', 'b3', 'd5', 'exd5', 'cxd5'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'dxc4', 'Nc3', 'Nc6', 'e4', 'e6'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'Nf6', 'a3', 'Ne4', 'Bb5', 'a6'], ['d4', 'd5', 'c4', 'e6', 'c5', 'g6', 'Nc3', 'Bg7', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'Nxe5', 'Qg5'], ['d4', 'd5', 'Nf3', 'e6', 'Nc3', 'Nc6', 'e3', 'e5', 'dxe5', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'f5', 'exf5', 'Nf6', 'Ng5', 'd5'], ['d4', 'e6', 'e4', 'd5', 'Bd3', 'c5', 'Nc3', 'cxd4', 'Nb5', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bc4', 'Bxc3', 'dxc3', 'Nxe4'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nc3', 'd6', 'h3', 'Be6'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Na6', 'Bc4', 'e6', 'O-O', 'Nc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'b5'], ['e4', 'b6', 'Bc4'], ['b3', 'd6', 'g3', 'e5', 'e3', 'f6', 'Bg2', 'g5', 'Ne2', 'h6'], ['b3', 'a5', 'c3', 'Ra6', 'c4', 'Rc6', 'e3', 'Rxc4', 'bxc4', 'a4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Nxe5', 'Nxe5', 'd4', 'Bxd4'], ['e4', 'g6', 'Bc4', 'd6', 'Nf3', 'e5', 'd3', 'Be6', 'Bb3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'exd5', 'Nxd5', 'Bd2', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'd6', 'a3', 'Nf6'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'Bb4+', 'Bd2', 'Bxd2+', 'Nbxd2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'd3', 'd6', 'h3', 'h6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Bf4', 'Bb4'], ['e4', 'e5', 'd3', 'Nf6', 'f4', 'exf4', 'Bxf4', 'Bc5', 'c3', 'd6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Bb4', 'Nf3', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'b4', 'Bb6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Bc4', 'e6', 'd3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Nc3', 'h6'], ['e4', 'e5', 'Ne2', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Nxd4'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'Bc5', 'Nxc3', 'h6'], ['e4', 'h6', 'Bc4', 'a6', 'Nf3', 'b5', 'Bb3', 'c5', 'd3', 'Bb7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'h3', 'Qe7', 'd3', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'h6', 'Nc3', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'd3', 'Nc6', 'Bd2', 'Bc5', 'Nf3', 'h6', 'Be2', 'Nf6'], ['b4', 'e5', 'Bb2', 'Nc6', 'b5', 'Nd4', 'e3', 'Nxb5', 'Bxb5', 'c6'], ['e4', 'e5', 'c4', 'Bc5', 'Nc3', 'Nf6', 'h3', 'h6', 'Nf3', 'd6'], ['e4', 'e6', 'Nf3', 'd6', 'd3', 'a6', 'Bg5', 'f6', 'Be3', 'Bd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nxc6', 'bxc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'Nc6', 'a3', 'Nxd4'], ['d4', 'e6', 'e3', 'Nf6', 'Nf3', 'Bb4+', 'Bd2', 'Bxd2+', 'Nbxd2', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'Nc6', 'e3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'd3', 'd6', 'Nc3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'bxc6', 'd3', 'd6'], ['d4', 'e6', 'e4', 'Nf6', 'Nc3', 'Bb4', 'Bd3', 'Bxc3+', 'bxc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd3', 'Na5', 'Bb3', 'Nxb3'], ['d4', 'e6', 'e4', 'Nf6', 'Nc3', 'Bb4', 'Bd3', 'Bxc3+', 'bxc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['c4', 'b6', 'd4', 'c5', 'd5', 'd6', 'Nc3', 'Na6', 'a3', 'Bb7'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Be3', 'e6', 'Bd3', 'Bxd3'], ['Nf3', 'b6', 'd4', 'Bb7', 'e3', 'c5', 'c3', 'd6', 'Be2', 'Nh6'], ['e4', 'c6', 'b3', 'd5', 'Nc3', 'd4', 'Nce2', 'c5', 'c3', 'e5'], ['Nc3', 'c6', 'e4', 'd5', 'd3', 'a5', 'Nge2', 'a4', 'a3', 'c5'], ['Nf3', 'c5', 'c4', 'e6', 'd3', 'Qb6', 'Nbd2', 'Nc6', 'Qb3', 'Qa5'], ['Nc3', 'Nc6', 'g3', 'd5', 'd4', 'e6', 'Bg2', 'Bd6', 'Nf3', 'Bd7'], ['d3', 'd5', 'e4', 'c6', 'exd5', 'cxd5', 'Be2', 'Nf6', 'Nf3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'b6', 'Be2', 'Nd7', 'Bb5', 'Bb7'], ['g3', 'c6', 'Bg2', 'Nf6', 'Nf3', 'd5', 'b3', 'Bf5', 'd3', 'h6'], ['b4', 'Nc6', 'a3', 'b5', 'Bb2', 'a5', 'c3', 'axb4', 'cxb4', 'e6'], ['d4', 'Nf6', 'Nf3', 'd6', 'c3', 'Nc6', 'e3', 'e5', 'Bd3', 'Be7'], ['e4', 'd5', 'e5', 'd4', 'Nf3', 'e6', 'c3', 'c5', 'cxd4', 'cxd4'], ['c4', 'd6', 'Nc3', 'e6', 'Nf3', 'd5', 'd4', 'dxc4', 'e4', 'Ne7'], ['d4', 'd5', 'e3', 'c5', 'dxc5', 'e5', 'Bd3', 'Bxc5', 'e4', 'd4'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e6', 'a3', 'b5', 'Qf3', 'c6'], ['e4', 'e5', 'd3', 'Nf6', 'Nf3', 'Nc6', 'Be3', 'd5', 'exd5', 'Nxd5'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nb4', 'Qa4+', 'N4c6'], ['e4', 'c5', 'e5', 'Nc6', 'f4', 'e6', 'Bc4', 'Nh6', 'c3', 'Nf5'], ['d4', 'd5', 'c4', 'Be6', 'cxd5', 'Bxd5', 'Nc3', 'c6', 'e4', 'Be6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Nd7', 'c3', 'e6', 'a3', 'c5'], ['d4', 'f5', 'Nf3', 'Nf6', 'e3', 'd5', 'Bd3', 'Nc6', 'O-O', 'Be6'], ['e4', 'd5', 'e5', 'e6', 'd4', 'Nc6', 'Nc3', 'Bb4', 'Bd2', 'Bxc3'], ['g3', 'c5', 'b3', 'Nc6', 'Bg2', 'Nf6', 'Bb2', 'e5', 'Nc3', 'd6'], ['d4', 'd5', 'c3', 'c5', 'Nf3', 'Nf6', 'Bg5', 'Nc6', 'Bxf6', 'gxf6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'd6', 'd4', 'Bg4', 'd5', 'Bxf3'], ['e3', 'c5', 'd3', 'Nc6', 'e4', 'd6', 'Nc3', 'g6', 'Nf3', 'Bg7'], ['e4', 'c5', 'd3', 'Nc6', 'Nc3', 'd6', 'Nf3', 'a6', 'h3', 'g6'], ['e4', 'c5', 'f3', 'Nc6', 'd3', 'd6', 'Nh3', 'g6', 'Qd2', 'Bxh3'], ['e4', 'e6', 'd4', 'Nc6', 'Nf3', 'd5', 'e5', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'd5', 'Nc3', 'd4', 'Nb5', 'Nc6', 'c3', 'a6', 'Na3', 'dxc3'], ['d4', 'd5', 'c4'], ['d4', 'd5', 'e3', 'c5', 'c3', 'Nf6', 'Bd3', 'c4', 'Bc2', 'e6'], ['d4', 'g6', 'c4', 'Bg7', 'Nf3', 'Nf6', 'Nc3', 'O-O', 'Bf4', 'd6'], ['d3', 'd5', 'Nd2', 'e5', 'e3', 'Nf6', 'Ne2', 'Bc5', 'b3', 'O-O'], ['d4', 'e6', 'c4', 'a6', 'Nf3', 'b5', 'e3', 'b4', 'Bd2', 'Nf6'], ['d4', 'd5', 'c4', 'Nc6', 'Nc3', 'dxc4', 'Bf4', 'a6', 'e3', 'Bf5'], ['d4', 'e5', 'c4', 'Bb4+', 'Nc3', 'Nc6', 'd5', 'Nd4', 'a3', 'Bc5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'Nc6', 'Nf3', 'Nge7', 'Na3', 'g6'], ['d4', 'd6', 'c4', 'Bd7', 'Nc3', 'h6', 'Nf3', 'Nc6', 'd5', 'Ne5'], ['e4', 'e6', 'Nf3', 'd5', 'Bd3', 'c5', 'Nc3', 'Nc6', 'O-O', 'd4'], ['Nf3', 'e6', 'e4', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be7', 'd4', 'Nc6'], ['d4', 'e6', 'c4', 'Nf6', 'Nc3', 'Ng4', 'f3', 'f5', 'fxg4', 'fxg4'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'e6', 'Nc3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Bd7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c5', 'Be3', 'Nc6', 'dxc5', 'Qa5'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb5+', 'c6', 'Qe2+', 'Be7'], ['d4', 'Nf6', 'c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Ne4', 'Nxd5', 'Be6'], ['d4', 'd5', 'c4', 'Nf6', 'Bg5', 'dxc4', 'e3', 'Nc6', 'Bxc4', 'Bf5'], ['e4', 'e6', 'h4', 'd5', 'e5', 'c5', 'Bb5+', 'Bd7', 'Bd3', 'Nc6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'g6', 'e3', 'Bg7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bf5', 'Bg5', 'Nbd7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Nge7'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'a6', 'axb5', 'Bb7'], ['b3', 'e5', 'Bb2', 'Nc6', 'e4', 'Nf6', 'Qe2', 'Be7', 'Nf3', 'd6'], ['d4', 'c6', 'c4', 'e6', 'Nc3', 'd5', 'Bf4', 'dxc4', 'e3', 'b5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'b3', 'Nge7'], ['e4', 'e6', 'Nc3', 'd5', 'Bb5+', 'Bd7', 'exd5', 'Bxb5', 'Nxb5', 'a6'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'dxc4', 'e3', 'b5', 'Nxb5', 'Ba6'], ['d4', 'c5', 'c4', 'cxd4', 'Nf3', 'd5', 'Nxd4', 'dxc4', 'e3', 'Qa5+'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be7', 'Bb3', 'Nf6'], ['e4', 'e6', 'Nf3', 'd5', 'Nc3', 'c5', 'd4', 'dxe4', 'Nxe4', 'b6'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'e6', 'Bg5', 'Be7', 'e3', 'Ne4'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'c6', 'Bg5', 'e6', 'Nf3', 'h6'], ['d4', 'd5', 'f4', 'e6', 'e3', 'Nf6', 'a3', 'Nc6', 'Nc3', 'Bd6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'c5', 'Bg5', 'Nc6', 'e3', 'Be7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Nge7'], ['e4', 'e6', 'e5', 'd5', 'exd6', 'Bxd6', 'Qf3', 'Nf6', 'd3', 'O-O'], ['e4', 'e6', 'Nf3', 'd5', 'Bd3', 'b6', 'e5', 'c5', 'c4', 'Be7'], ['d4', 'e6', 'c4', 'Nc6', 'Nc3', 'e5', 'e3', 'exd4', 'exd4', 'Bb4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Be2', 'Nf6', 'O-O', 'Bf5'], ['e3', 'e6', 'c3', 'd5', 'h3', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'Nc6', 'f4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'O-O', 'exf4'], ['e4', 'e6', 'Nf3', 'Nc6', 'b3', 'b6', 'Bb2', 'Bb7', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bg4', 'd5', 'a6'], ['e4', 'e6', 'e5', 'd5', 'f4', 'Bc5', 'd4', 'Bb6', 'Nf3', 'Ne7'], ['e4', 'e6', 'Nf3', 'd5', 'Bb5+', 'Bd7', 'Nc3', 'dxe4', 'Ne5', 'Bxb5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Nc6', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'Qxf3', 'dxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qe7', 'O-O', 'a6', 'Ba4', 'h6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'g3', 'Bb4'], ['Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'd4', 'd5', 'O-O', 'O-O'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Ng4', 'Bg5', 'h6'], ['e4', 'c5', 'd4', 'd5', 'dxc5', 'Qa5+', 'Nc3', 'Qxc5', 'Qxd5', 'Qxd5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'Ng5', 'O-O'], ['e4', 'Nc6', 'f4', 'e5', 'fxe5', 'Nxe5', 'Nf3', 'd6', 'Bc4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'Bb4+', 'Bd2', 'a5', 'Nxe5', 'O-O'], ['e3', 'd5', 'Bb5+', 'Bd7', 'Nc3', 'c6', 'Ba4', 'e5', 'Nf3', 'd4'], ['f4', 'Nf6', 'Nf3', 'e6', 'd3', 'Bb4+', 'Nc3', 'Ba5', 'e4', 'O-O'], ['e4', 'e5', 'Bb5', 'c6', 'Ba4', 'b5', 'Bb3', 'Nf6', 'Nf3', 'Bc5'], ['e4', 'e6', 'Nc3', 'Nf6', 'd4', 'Nc6', 'Bf4', 'Bd6', 'Be5', 'O-O'], ['e4', 'e5', 'd4', 'd6', 'Bc4', 'Nf6', 'dxe5', 'dxe5', 'f3', 'c5'], ['d4', 'd5', 'e3', 'Nf6', 'Bd3', 'e6', 'Nf3', 'Bb4+', 'Bd2', 'a5'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nd4', 'h4', 'Nf6', 'c3', 'Nxe4'], ['e4', 'e6', 'd4', 'Nf6', 'e5', 'Ne4', 'Qf3', 'Bb4+', 'c3', 'f5'], ['d4', 'e6', 'd5', 'Bb4+', 'c3', 'Bc5', 'b4', 'Bd6', 'dxe6', 'fxe6'], ['e4', 'e6', 'Be2', 'c5', 'c3', 'Bd6', 'b3', 'Nf6', 'Nh3', 'O-O'], ['e4', 'e5', 'd4', 'Bd6', 'Nc3', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6'], ['e4', 'e5', 'd4', 'f6', 'Nf3', 'Nc6', 'b3', 'Bb4+', 'Nfd2', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c6'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'Nh6', 'O-O', 'b6', 'd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nf6', 'd5', 'Nxe4', 'Nc3', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bxb4', 'c3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7', 'dxe5', 'dxe5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'a6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd4', 'exd4', 'e5', 'Ng8'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'dxe6', 'Bxe6', 'b3', 'Qe7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'Nc6', 'c3', 'g6', 'Nf3', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e6', 'f4', 'd6', 'Nf3', 'Nc6', 'Be2', 'Qf6', 'd4', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'cxd4', 'cxd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['h4', 'c5', 'g3', 'Nc6', 'd3', 'd5', 'Bh3', 'Nf6', 'Bg5', 'h6'], ['Nc3', 'c5', 'Nf3', 'a6', 'Nd5', 'e6', 'Nc3', 'Nf6', 'Ne5', 'd6'], ['c3', 'e5', 'f3', 'Nf6', 'e3', 'e4', 'd3', 'd5', 'dxe4', 'dxe4'], ['d4', 'd5', 'Bf4', 'Bg4', 'e3', 'Bxd1', 'Kxd1', 'b5', 'Bxb5+', 'c6'], ['e4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'e5', 'Bc4'], ['Nc3', 'd5', 'Nf3', 'c5', 'e3', 'c4', 'Nxd5', 'Qxd5', 'g4', 'Bxg4'], ['Nc3', 'd5', 'Nf3', 'e6', 'd4', 'Bb4', 'e4', 'Bxc3+', 'Ke2', 'dxe4'], ['Nh3', 'Nf6', 'e3', 'e5', 'a4', 'Nc6', 'a5', 'd5', 'f4', 'Bf5'], ['e4', 'c6', 'c4', 'd5', 'cxd5', 'cxd5', 'e5', 'Bf5', 'd4', 'e6'], ['d4', 'd5', 'Nf3', 'Bf5', 'g3', 'c6', 'Bg2', 'Nd7', 'O-O', 'f6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'c5', 'b3', 'cxd4'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c6', 'Nf3', 'Bd6', 'c5', 'Bc7'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'Nf3', 'c6', 'c5', 'b6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'Nf3', 'Bd6', 'Bg5', 'c6'], ['e4', 'c5', 'Nf3', 'e6', 'd3', 'd5', 'Nc3', 'Nc6', 'Be2', 'd4'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Be7', 'Bg5', 'O-O'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Bd3', 'Qc7'], ['e3', 'e5', 'Bd3', 'Nf6', 'Nf3', 'd5', 'Nxe5', 'Nc6', 'Nf3', 'g6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'c5', 'd5', 'b5', 'dxe6', 'fxe6'], ['e4', 'd6', 'd4', 'e6', 'Nf3', 'f6', 'Nc3', 'Nd7', 'Be2', 'Ne7'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'cxd5', 'exd5', 'Bg5', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Bc5', 'c3', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bd3', 'Nc6', 'c3', 'Nf6'], ['d4', 'd5', 'Nf3', 'Nf6', 'g3', 'c5', 'c4', 'dxc4', 'Qa4+', 'Bd7'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Be2', 'Bg7', 'Nf3', 'c6'], ['d4', 'e6', 'e4', 'd5', 'Nc3', 'Bb4', 'exd5', 'Bxc3+', 'bxc3', 'Qxd5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e3', 'O-O'], ['Nf3', 'd5', 'd4', 'Bf5', 'e3', 'e6', 'Bd3', 'Bxd3', 'Qxd3', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nd7', 'dxe5', 'dxe5', 'Bc4', 'Qf6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bd6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'd4', 'Nd7', 'dxe5', 'dxe5'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'Qe7', 'Nd2', 'dxc3', 'bxc3', 'd5'], ['d4', 'd5', 'e3', 'e6', 'Nf3', 'c5', 'Be2', 'c4', 'b3', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'Qf6'], ['d4', 'd6', 'e4', 'h6', 'Nf3', 'a6', 'Nc3', 'e6', 'Bd3', 'Nc6'], ['e4', 'Nc6', 'd4', 'e6', 'Bb5', 'd5', 'exd5', 'Qxd5', 'c4', 'Qxg2'], ['d4', 'e6', 'Nf3', 'd5', 'c4', 'Nf6', 'e3', 'c5', 'cxd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'd3', 'h6'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nd4', 'Nf3', 'Nxf3+', 'Qxf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'f6', 'Nc3', 'Nc6', 'Nd5', 'Bc5', 'Bb5', 'Nh6'], ['e4', 'Nf6', 'Bc4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'Bb3', 'Qe7+'], ['e4', 'Nf6', 'Nc3', 'b6', 'Nf3', 'Bb7', 'e5', 'Ng4', 'Ng5', 'h5'], ['e4', 'Nf6', 'Qf3', 'c6', 'g4', 'd5', 'Nc3', 'Bxg4', 'Qg3', 'e6'], ['e4', 'c6', 'd4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb4', 'Bd2', 'N4a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Qf6', 'Nxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Qe7', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'c5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Nf3', 'e6', 'h3', 'd5'], ['e4', 'c5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Nxd5', 'Qxd5'], ['e4', 'c6', 'Qf3', 'Nf6', 'd3', 'e6', 'Bg5', 'Be7', 'Bxf6', 'Bxf6'], ['e4', 'e5', 'd3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qc6', 'h3', 'Bb4'], ['d4', 'Nf6', 'e3', 'e6', 'Nf3', 'c5', 'c4', 'cxd4', 'Qxd4', 'Nc6'], ['d4', 'd5', 'h3', 'e6', 'Nf3', 'Nc6', 'e3', 'Bd6', 'c4', 'Nf6'], ['d4', 'd5', 'e3', 'Nf6', 'h3', 'e6', 'Nf3', 'Bd6', 'Bd3', 'O-O'], ['d4', 'e6', 'e3', 'Nf6', 'Nf3', 'c5', 'Bc4', 'cxd4', 'Qxd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'Bc5', 'Nd5', 'Qc6', 'a4', 'd6'], ['d4', 'd5', 'e3', 'Nc6', 'Qf3', 'Nf6', 'Nh3', 'Bxh3', 'Qxh3', 'Qd7'], ['d4', 'Nf6', 'e3', 'e6', 'Nf3', 'c5', 'Bc4', 'b6', 'b3', 'Bb7'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Be6'], ['d4', 'd5', 'e3', 'Nc6', 'Qf3', 'Nf6', 'c3', 'e6', 'Bb5', 'Bd7'], ['g4', 'a5', 'Nc3', 'a4', 'Nxa4', 'b5', 'Nb6', 'c5', 'Nxd7', 'Kxd7'], ['Nc3', 'c5', 'Ne4', 'e5', 'Nxc5', 'Bxc5', 'Rb1', 'd5', 'a4', 'Nf6'], ['d4', 'b5', 'Nc3', 'Nf6', 'Nxb5', 'a5', 'Bf4', 'Ng4', 'e4', 'Nxf2'], ['Nc3', 'e5', 'f3', 'Nf6', 'f4', 'e4', 'f5', 'Bc5', 'Nxe4', 'Nxe4'], ['e4', 'b5', 'd4', 'Nf6', 'c4', 'bxc4', 'Nc3', 'Nxe4', 'Nxe4', 'c3'], ['f4', 'd5', 'Nf3', 'Nc6', 'f5', 'Nf6', 'Nh4', 'e6', 'fxe6', 'fxe6'], ['e4', 'c6', 'Bc4', 'Na6', 'Qh5', 'h6', 'Qxf7#'], ['Nf3', 'Nc6', 'e3', 'e5', 'Bb5', 'e4', 'Ba4', 'exf3', 'gxf3', 'Qh4'], ['e4', 'Nc6', 'Nf3', 'd5', 'exd5', 'Bg4', 'dxc6', 'Be6', 'cxb7', 'Bxa2'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'c3', 'Nc6', 'd4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nb4', 'a3', 'Na6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd5', 'Nf6', 'Qb3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Bb4'], ['d4', 'd5', 'c4', 'c6', 'a4', 'Nf6', 'Nc3', 'e6', 'e3', 'Bb4'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'Nc6', 'd3', 'd6', 'Nh3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nce7', 'Bd3', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'e6', 'd4', 'h6'], ['a3', 'd5', 'h3', 'e5', 'e3', 'c5', 'd3', 'Nc6', 'b3', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'e6', 'a3', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Bc5'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'd6', 'O-O', 'Nf6', 'd3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'd5', 'Nb4', 'a3', 'Na6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'd6', 'a4', 'a6'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7', 'Be3', 'Nf6'], ['d4', 'd5', 'e3', 'c6', 'f4', 'Nf6', 'Nd2', 'Bf5', 'Ngf3', 'Ne4'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'd6', 'd4', 'cxd4', 'cxd4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bb6', 'c3', 'a6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'e5', 'Bb5', 'a6'], ['e4', 'd6', 'd4', 'g6', 'f4', 'Bg7', 'Nf3', 'Nf6', 'Bd3', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'h3', 'Bh5', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'b6', 'd4', 'd6', 'd5', 'Na5'], ['e4', 'c5', 'c4', 'Nc6', 'Nf3', 'd6', 'Be2', 'e5', 'O-O', 'f5'], ['Nf3', 'b6', 'e4', 'Bb7', 'd3', 'e5', 'g3', 'Nc6', 'c3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'd3', 'Bxc3+', 'bxc3', 'd5'], ['d4', 'd5', 'c3', 'c6', 'Nd2', 'Bg4', 'h3', 'Bh5', 'g4', 'Bg6'], ['e4', 'b6', 'd4', 'd5', 'e5', 'e6', 'f4', 'Bb7', 'Nf3', 'Nd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'c3', 'e5'], ['d4', 'd5', 'Bd2', 'g6', 'b4', 'Bg7', 'e3', 'b6', 'a4', 'c5'], ['e4', 'c5', 'Nc3', 'd6', 'Bb5+', 'Nc6', 'd3', 'Bd7', 'Nge2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bb4+', 'Nc3', 'Nxd4', 'Nxd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['g3', 'd5', 'Bg2', 'e5', 'Nf3', 'Bd6', 'b3', 'c6', 'Bb2', 'e4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'h3', 'Bd7', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nce7', 'c4', 'Nf6'], ['Nf3', 'd5', 'd4', 'g6', 'e3', 'Bg7', 'c4', 'c6', 'Nc3', 'Nf6'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'f3', 'exf3', 'Qxf3', 'Qxd4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Be2', 'Nf6', 'Nf3', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'O-O', 'Qg5'], ['d4', 'd5', 'c4', 'e5', 'e4', 'dxe4', 'd5', 'Nf6', 'Nc3', 'Nbd7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'Bb4', 'O-O', 'O-O'], ['e4', 'a6', 'Nf3', 'b5', 'd4', 'Bb7', 'Nc3', 'd6', 'Bg5', 'Nd7'], ['e4', 'c5', 'Nc3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'Nf3', 'Ngf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'g6', 'Nf3', 'Bg7', 'd4', 'd6', 'Be3', 'Nf6', 'Qd2', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'd4', 'cxd4', 'Nxd4', 'g6'], ['e4', 'g6', 'Nf3', 'Nf6', 'Nc3', 'd6', 'd4', 'Bg7', 'Be3', 'O-O'], ['d4', 'c5', 'd5', 'd6', 'c4', 'Nf6', 'e3', 'g6', 'Nc3', 'Bg7'], ['d4', 'Nf6', 'c4', 'e6', 'a3', 'c5', 'd5', 'exd5', 'cxd5', 'd6'], ['e4', 'c5', 'Nf3', 'e6', 'Bc4', 'a6', 'O-O', 'b5', 'Be2', 'Bb7'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'd4', 'Nxe4', 'Bxf4', 'Be7'], ['d4', 'Nf6', 'c4', 'g6', 'e3', 'Bg7', 'Nc3', 'O-O', 'Bd3', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'Nf6', 'Ng5', 'e6'], ['g3', 'Nf6', 'Bg2', 'h5', 'c3', 'h4', 'Qb3', 'e6', 'Bxb7', 'Bxb7'], ['d4', 'Nf6', 'c4', 'g6', 'Bf4', 'd6', 'Nc3', 'Bg7', 'e3', 'O-O'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Be7', 'Bc4', 'Bh4+', 'Kf1', 'd6'], ['e4', 'c5', 'd4', 'cxd4', 'Nf3', 'e6', 'Nxd4', 'a6', 'Nc3', 'Qc7'], ['d4', 'Nf6', 'Nf3', 'g6', 'c4', 'Bg7', 'e3', 'd6', 'Bd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'Be2', 'Bc5', 'O-O', 'O-O'], ['e4', 'e6', 'e5', 'd6', 'f4', 'dxe5', 'fxe5', 'Qh4+', 'g3', 'Qe4+'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'O-O', 'Nf6', 'Nc3', 'O-O'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'd4', 'cxd4', 'c3', 'dxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'c3', 'Bc5', 'd4', 'exd4'], ['d4', 'Nf6', 'c4', 'd5', 'e3', 'c5', 'Nf3', 'Bf5', 'Nc3', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e6', 'Bc4', 'Nf6', 'e5', 'd5'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'Bf5', 'd4', 'e6', 'Nc3', 'c5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Qe2', 'd5'], ['e4', 'Nc6', 'Nf3', 'd6', 'Bc4', 'g6', 'd4', 'Bg7', 'd5', 'Ne5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'bxc6', 'd3', 'd5'], ['d4', 'Nf6', 'Bg5', 'd5', 'Bxf6', 'gxf6', 'c4', 'e5', 'Nc3', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'f6', 'Nc3', 'Bc5', 'b4', 'Bb6'], ['e4', 'c5', 'Nf3', 'e6', 'Bc4', 'Nc6', 'O-O', 'Be7', 'Nc3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd5', 'Nxe5', 'Qd6'], ['e4', 'd6', 'Nf3', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Bb5', 'Bd7'], ['Nf3', 'e5', 'Nxe5', 'f5', 'e3', 'Bc5', 'Qh5+', 'g6', 'Nxg6', 'hxg6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Bc5', 'Nxf7', 'Bxf2+'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Nxe5', 'd6', 'Nf3', 'Bxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'bxc6', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'a6', 'd4', 'exd4', 'Nxd4', 'h6'], ['c4', 'c5', 'e3', 'b6', 'd4', 'a6', 'Nf3', 'b5', 'Nc3', 'bxc4'], ['e4', 'f5', 'exf5', 'e5', 'fxe6', 'dxe6', 'd3', 'Qh4', 'Nf3', 'g5'], ['e4', 'd6', 'Qf3', 'e6', 'h3', 'd5', 'exd5', 'exd5', 'g4', 'a6'], ['f4', 'e6', 'Kf2', 'Qf6', 'Ke1', 'Qxf4', 'h3', 'Bc5', 'c3', 'Qf2#'], ['d4', 'g6', 'e3', 'Bg7', 'e4', 'd6', 'Nf3', 'h6', 'Nh4', 'e6'], ['d4', 'd6', 'd5', 'e6', 'Nc3', 'exd5', 'Nxd5', 'Qe7', 'Nxe7', 'Kxe7'], ['e4', 'c6', 'd4', 'f5', 'exf5', 'Qa5+', 'c3', 'Qxf5', 'Bd3', 'Qd5'], ['d3', 'e5', 'Nf3', 'Nc6', 'e4', 'Bc5', 'Nc3', 'd6', 'Na4', 'Bb4+'], ['d4', 'c5', 'dxc5', 'Na6', 'c4', 'e5', 'Nc3', 'Nxc5', 'Qd5', 'd6'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'd5', 'd4', 'e4', 'Nc3', 'Nf6'], ['e4', 'a6', 'Bc4', 'b5', 'Bd5', 'c6', 'Bb3', 'd5', 'e5', 'f6'], ['e4', 'f5', 'exf5', 'Nf6', 'Nf3', 'd5', 'd4', 'Bxf5', 'Bd3', 'e6'], ['e4', 'a6', 'd4', 'e5', 'dxe5', 'd6', 'exd6', 'Bxd6', 'Nf3', 'Nf6'], ['d3', 'g6', 'e4', 'e5', 'Nc3', 'd6', 'Be3', 'Nf6', 'Nf3', 'Ng4'], ['d4', 'd5', 'f4', 'Nf6', 'e3', 'Nc6', 'Nc3', 'e6', 'g4', 'Bb4'], ['e4', 'e5', 'Nf3', 'f6', 'Nc3', 'g5', 'd4', 'g4', 'Ng1', 'exd4'], ['e4', 'c5', 'Nf3', 'f5', 'exf5', 'Nh6', 'Bd3', 'd5', 'c3', 'Nxf5'], ['e4', 'c6', 'Nc3', 'd5', 'd3', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'f5'], ['e4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'Bg4', 'd4', 'e6', 'h3', 'Bxf3'], ['e4', 'e5', 'Bc4', 'd5', 'exd5', 'c6', 'dxc6', 'Nxc6', 'Qf3', 'Nf6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qf5', 'd3', 'b5'], ['e4', 'e6', 'd4', 'f5', 'exf5', 'Nf6', 'fxe6', 'dxe6', 'Nf3', 'Bd6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'c5', 'dxc5', 'Qxd1+', 'Nxd1', 'Nd7'], ['d4', 'd5', 'c4', 'c5', 'dxc5', 'd4', 'Nf3', 'e5', 'Nxe5', 'Bxc5'], ['e4', 'c6', 'Nf3', 'd5', 'd4', 'dxe4', 'Ng5', 'f6', 'Nxe4', 'e5'], ['e4', 'e5', 'd4', 'd6', 'd5', 'f5', 'Nc3', 'fxe4', 'Nxe4', 'Nf6'], ['d4', 'b6', 'e4', 'Nf6', 'e5', 'Ng8', 'Nf3', 'd6', 'Nc3', 'dxe5'], ['c4', 'd5', 'cxd5', 'Bf5', 'e3', 'Nf6', 'Bb5+', 'c6', 'dxc6', 'Nxc6'], ['d4', 'a6', 'b3', 'e6', 'e4', 'Qh4', 'e5', 'd5', 'Nf3', 'Qe4+'], ['e4', 'e5', 'f4'], ['e4', 'e5', 'd3', 'd5', 'Nc3', 'd4', 'Nb1', 'g5', 'g3', 'Bb4+'], ['f4', 'd5', 'd4', 'Bf5', 'Nc3', 'Nf6', 'Nf3', 'h6', 'b4', 'e6'], ['f4', 'e6', 'Nf3', 'd5', 'g4', 'Nf6', 'g5', 'Ne4', 'Nc3', 'Nc5'], ['c4', 'e5', 'Nf3', 'Nc6', 'g4', 'd6', 'Rg1', 'g6', 'e4', 'Nf6'], ['f4', 'b6', 'e4', 'Bb7', 'Nc3', 'e6', 'Nf3', 'Ne7', 'g4', 'a6'], ['e4', 'd6', 'f4', 'e5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'g3', 'Ngf6'], ['f4', 'd5', 'd4', 'Bf5', 'Nf3', 'Nf6', 'Nc3', 'h6', 'b4', 'e6'], ['f4', 'e6', 'Nf3', 'Nc6', 'e4', 'Nf6', 'e5', 'Nh5', 'g3', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'g4', 'g6', 'Nc3', 'd6', 'Rg1', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bb4+', 'Bd2', 'a5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'Bg4', 'h4', 'Qf6'], ['e4', 'e6', 'c4', 'Bc5', 'Qg4', 'Qf6', 'f4', 'Nh6', 'Qh5', 'Qxf4'], ['d4', 'd5', 'f4', 'Nf6', 'Nc3', 'Bf5', 'Nf3', 'e6', 'h4', 'Nc6'], ['c4', 'e6', 'e4', 'd6', 'd4', 'b6', 'g4', 'Ba6', 'b4', 'Qh4'], ['f4', 'd5', 'd4', 'Bf5', 'Nf3', 'e6', 'Nc3', 'Nf6', 'h4', 'c5'], ['e4', 'Nc6', 'd4', 'd5', 'exd5', 'Qxd5', 'Be3', 'e5', 'Nc3', 'Qa5'], ['f4', 'd5', 'd4', 'e6', 'Nf3', 'c5', 'Nc3', 'Ne7', 'dxc5', 'f5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'Bxc6', 'bxc6'], ['f4', 'd5', 'Nc3', 'Nc6', 'Nxd5', 'Qxd5', 'Nf3', 'e5', 'd3', 'exf4'], ['d4', 'd5', 'e3', 'Nd7', 'Bb5', 'c6', 'Ba4', 'b5', 'Bb3', 'a5'], ['f4', 'd5', 'd4', 'Nf6', 'b4', 'Nc6', 'b5', 'Na5', 'Bd2', 'Nc4'], ['d4', 'd5', 'c4', 'Nc6', 'cxd5', 'Qxd5', 'Nf3', 'f5', 'Nc3', 'Qc4'], ['c4', 'e5', 'g3', 'g6', 'Bg2', 'Nf6', 'Nc3', 'Bg7', 'Nf3', 'Nc6'], ['e4', 'e5', 'g3', 'Nf6', 'Bg2', 'Bc5', 'Nf3', 'Nxe4', 'Nxe5', 'Nxf2'], ['e4', 'e5', 'Nf3', 'Bd6', 'd4', 'exd4', 'Bg5', 'Nf6', 'e5', 'Bb4+'], ['e4', 'c6', 'g3', 'd5', 'Bg2', 'dxe4', 'Bxe4', 'Nf6', 'Bg2', 'Bg4'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Be6', 'e4', 'c6', 'Nf3', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'g6', 'Nf3', 'Bg7'], ['e4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Qd4', 'f3', 'Qd8', 'Bb5+', 'c6'], ['d4', 'd5', 'Nf3', 'f6', 'g3', 'b6', 'Bg2', 'Bb7', 'O-O', 'Nc6'], ['h3', 'c5', 'Nf3', 'e6', 'e4', 'Nc6', 'Ng5', 'Qxg5', 'Ke2', 'Nd4+'], ['h4', 'e5', 'h5', 'd5', 'Rh3', 'f6', 'Nf3', 'c5', 'e4', 'dxe4'], ['b3', 'a5', 'c3', 'Ra6', 'c4', 'Rc6', 'e3', 'Rxc4', 'bxc4', 'a4'], ['e4', 'e5', 'Nf3', 'Bd6', 'Bb5', 'Nf6', 'd4', 'Nxe4', 'dxe5', 'Bxe5'], ['e4', 'e5', 'Bd3', 'Nf6', 'Nf3', 'Bb4', 'O-O', 'd6', 'c3', 'Bc5'], ['e4', 'e5', 'Qh5', 'd6', 'Bc4', 'g6', 'Qe2', 'Nf6', 'd3', 'a6'], ['d4', 'e6', 'c4', 'c5', 'd5', 'Qa5+', 'Nc3', 'Qb4', 'a3', 'Qxc4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Nge2', 'Nf6', 'd4', 'Qe4'], ['e4', 'd5', 'd3', 'dxe4', 'Qh5', 'Nf6', 'Qb5+', 'c6', 'Qe5', 'Nbd7'], ['d4', 'Nc6', 'Nf3', 'd5', 'Nc3', 'Nf6', 'Bf4', 'e6', 'e3', 'Ne4'], ['e4', 'Na6', 'Qf3', 'Nc5', 'd4', 'Na4', 'Bc4', 'Nh6', 'Bxh6', 'gxh6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bd3', 'Nf6', 'O-O', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qf3', 'Nf6', 'a3', 'Nd4', 'Qd3', 'Nxe4'], ['e4', 'e5', 'Bd3', 'Nf6', 'Nf3', 'Nc6', 'O-O', 'Bc5', 'a3', 'Nd4'], ['e4', 'e5', 'Bd3', 'Nf6', 'Nf3', 'Nc6', 'O-O', 'Bc5', 'Nc3', 'd5'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'd6', 'exd6', 'Bxd6', 'e4', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'd5', 'exd5', 'Nd4'], ['d4', 'd6', 'e4', 'Nf6', 'f3', 'Nc6', 'Bc4', 'e5', 'c3', 'exd4'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'e6', 'Nc3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Ne5', 'Nc3', 'Bc5'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nd4', 'Be3', 'Bc5', 'c3', 'Nc2+'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'a6', 'Nf3', 'b5', 'Bd5', 'c6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'a3', 'Nf6', 'Nc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Bb4+', 'c3', 'Bd6', 'Nbd2', 'Nf6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nh6'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nd4', 'c3', 'Qh4', 'cxd4', 'Qxe4+'], ['e4', 'e5', 'd4', 'Qh4', 'Nc3', 'Bb4', 'dxe5', 'Bxc3+', 'bxc3', 'Qxe4+'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'Nc3', 'Bb4'], ['d4', 'e5', 'dxe5', 'd6', 'exd6', 'cxd6', 'h3', 'd5', 'Nf3', 'Nf6'], ['e4', 'e5', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8', 'Bg5+', 'f6'], ['e4', 'e5', 'd4', 'd5', 'dxe5', 'Qh4', 'exd5', 'Qe4+', 'Be2', 'Qxg2'], ['e4', 'g6', 'd4', 'Nc6', 'd5', 'Ne5', 'f4', 'Nc6', 'dxc6', 'dxc6'], ['e4', 'e5'], ['e4', 'e5', 'Nf3'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Bg5', 'h6', 'Bh4', 'Na5'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'e6', 'e3', 'f5', 'Bd3', 'Nf6'], ['d4', 'Nf6', 'Nf3', 'g6', 'c4', 'Bg7', 'g3', 'O-O', 'Bg2', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'd6'], ['c4', 'e5', 'Nc3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'Bd6', 'Nf3', 'e4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'h6', 'Bc4', 'Nc6', 'd4'], ['f4', 'd5', 'Nf3', 'c5', 'd4', 'Nf6', 'Nc3', 'e6', 'e3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['d4', 'd5', 'Nf3', 'Nc6', 'c4', 'dxc4', 'd5', 'Na5', 'Qa4+', 'c6'], ['e4', 'e5', 'd4', 'Qe7', 'd5', 'Qb4+', 'Nc3', 'Nf6', 'Bd2', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'a3', 'd6', 'b4', 'Bd4'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nd4', 'c3', 'Bc5', 'cxd4', 'Bxd4'], ['e4', 'e5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'Bc4', 'h6', 'O-O', 'Bc5'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'c5', 'cxd4', 'cxd4', 'Qxd4', 'Nc6'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nd4', 'Nf3', 'Nxf3+', 'Qxf3', 'Bb4+'], ['b3', 'e5', 'Bb2', 'Nc6', 'g3', 'f5', 'Bg2', 'Nge7', 'c4', 'Ng6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'Bc5', 'Nf3', 'Nc6'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Qe7', 'Qxc7', 'Qxe4+', 'Be2', 'Qxe2+'], ['e4', 'e6', 'f3', 'Qg5', 'Qe2', 'Qh4+', 'Kd1', 'Qe1+', 'Qxe1', 'Bc5'], ['f4', 'c6'], ['e3', 'e6', 'f3', 'Qf6', 'g3', 'Qxf3', 'Nxf3', 'Bb4', 'Qe2', 'Bxd2+'], ['e4', 'd6', 'f4', 'c5', 'b3', 'b6', 'Qg4', 'f6', 'Qh5+', 'Kd7'], ['e4', 'e5', 'c4', 'f6', 'b3', 'Nh6', 'Nc3', 'Bb4', 'Nd5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bd6', 'd5', 'Nce7', 'Bc4', 'Ng6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'Bf5', 'd3', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'd5'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Qc7'], ['e4', 'e5', 'd3', 'Nf6', 'g4', 'Nc6', 'g5', 'Ng8', 'h4', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'exd4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'f5', 'exf5', 'd6', 'Bd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Qh4', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'c3', 'Bg7'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nc6', 'Nc3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['e4', 'Nc6', 'd4', 'd5', 'e5', 'e6', 'Nf3', 'Bb4+', 'c3', 'Ba5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'Nc6', 'd4', 'Nb4', 'a3', 'Na6', 'Bxa6', 'bxa6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'h3', 'h5', 'Nd5', 'Nxe4'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nb5', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'O-O', 'Be2', 'b6'], ['e4', 'e6', 'd4', 'd6', 'Nf3', 'h6', 'Nc3', 'a6', 'Bd3', 'Bd7'], ['e4', 'Nc6', 'c4', 'e5', 'Nc3', 'Nf6', 'f3', 'Bc5', 'Nd5', 'Nxe4'], ['Nf3', 'd5', 'c4', 'e6', 'b3', 'c6', 'e3', 'f6', 'd4', 'Qa5+'], ['e4', 'b6', 'd3', 'Nc6', 'c4', 'Ba6', 'Nf3', 'e5', 'Be2', 'Bb4+'], ['e4', 'b6', 'd4', 'e6', 'Nc3', 'Bb4', 'Bd3', 'c5', 'dxc5', 'Bxc3+'], ['f4', 'e6', 'Nc3', 'Qh4+', 'g3', 'Qg4', 'Nf3', 'Nf6', 'Ne5', 'Qf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bc4', 'f6', 'O-O', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'bxc6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Nc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Ng5', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Bb4+', 'Bd2', 'Bxd2+', 'Qxd2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Nxd8'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Nxd8'], ['c4', 'e5', 'b4', 'Nf6', 'a3', 'd5', 'cxd5', 'Nxd5', 'Nf3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nxd4', 'Nxd4', 'exd4', 'Qxd4', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nf6', 'Nc3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'b3', 'Nf6', 'Bb2', 'd6'], ['e4', 'e5', 'd3', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'Nc6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Nxd5', 'Qxd5', 'd3', 'e5'], ['e3', 'e5', 'd4', 'd6', 'c4', 'Nc6', 'd5', 'Nce7', 'b4', 'b6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'exd4', 'Nxd4', 'Nxe4', 'Bc4', 'd6'], ['e4', 'e5', 'd3', 'Nf6', 'Nf3', 'Nc6', 'Bg5', 'h6', 'Bh4', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'a3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'f6', 'Nh4', 'Bc5', 'Nf5', 'Kf8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bb5', 'Ne7', 'd3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Bc5', 'Nxf7', 'Qe7'], ['e4', 'e5', 'Nc3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'a6', 'Bxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Bc5', 'd4', 'exd4', 'Nxd4', 'Nxe4'], ['Nc3', 'e5', 'e4', 'd6', 'Nf3', 'Nf6', 'Bc4', 'Be6', 'd3', 'g6'], ['e4', 'e5', 'c3', 'Nc6', 'd3', 'Nf6', 'f3', 'Bc5', 'Ne2', 'd6'], ['e4', 'e5', 'Nf3', 'c6', 'Bc4', 'd5', 'exd5', 'Ne7', 'Nc3', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'd3', 'Nf6', 'Ng5', 'Qe7'], ['d4', 'e6', 'c3', 'Nf6', 'e3', 'd5', 'Nf3', 'Bd6', 'Qa4+', 'Bd7'], ['e4', 'e5', 'Qh5', 'd6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'Nc3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'Qf6', 'O-O', 'Ne7', 'd4', 'c6'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Qe7', 'Qxh8', 'Qxe4+', 'Ne2', 'Qxc2'], ['d4', 'e6', 'Nf3', 'Qf6', 'b3', 'Bb4+', 'Nbd2', 'Nc6', 'Bb2', 'd5'], ['d4', 'd5', 'e3', 'f6', 'f4', 'e5', 'fxe5', 'fxe5', 'h3', 'Bb4+'], ['d4', 'b6', 'e4', 'Bb7', 'Bd3', 'Nf6', 'Nf3', 'Nxe4', 'O-O', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bb6', 'c3', 'Nf6'], ['e4', 'e5', 'f4', 'Qf6', 'Nc3', 'Bc5', 'Nd5', 'Qd6', 'Qg4', 'g6'], ['e4', 'c5', 'e5', 'Nc6', 'Nf3', 'Qc7', 'Qe2', 'f6', 'exf6', 'Nxf6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'cxd5', 'cxd5', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'd6', 'd4', 'exd4'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd6', 'Nd5', 'Bd7'], ['e4', 'c5', 'Nc3', 'd6', 'Nf3', 'Nf6', 'd4', 'cxd4', 'Nxd4', 'g6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'cxd5', 'exd5', 'e3', 'Bb4'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'Qg5', 'Nxe4', 'Qxg7', 'Bf6'], ['e4', 'e5', 'Nf3', 'Bd6', 'd3', 'h5', 'Nc3', 'h4', 'h3', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'd3', 'd6', 'Be2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'f6', 'Bxg8', 'Rxg8', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nc3', 'Bxf2+', 'Kxf2', 'Nf6', 'Nxe5', 'd6'], ['e4', 'e5', 'd3', 'Nc6', 'c3', 'Nf6', 'Be2', 'Bc5', 'Be3', 'Bxe3'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'd3', 'Bc5', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'd6', 'd5', 'Na5'], ['e4', 'e5', 'Nc3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Bg5', 'h6'], ['e4', 'e5', 'Nc3', 'Nf6', 'f3', 'Nc6', 'Bd3', 'd5', 'Qe2', 'd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nxc6', 'bxc6'], ['e4', 'e6', 'd4', 'Qh4', 'Qe2', 'b6', 'Nc3', 'Ba6', 'Nf3', 'Qf6'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e6', 'Bxc4', 'Nc6', 'Nf3', 'f6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'h6', 'd4', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Bg4', 'h3', 'Bxe2'], ['e4', 'e5', 'Nf3', 'd5', 'Nc3', 'd4', 'Nd5', 'f6', 'Bc4', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'a6', 'c3', 'Na5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'g6', 'Bc4', 'e6', 'O-O', 'Na5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'a6', 'Bc4', 'e6', 'a3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nc6', 'd4', 'Nf6', 'h3', 'g6'], ['e4', 'b6', 'Nf3', 'e6', 'Nc3', 'Bb7', 'd3', 'Nf6', 'Bg5', 'Be7'], ['d4', 'd5', 'e3', 'c5', 'c3', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Qe2', 'a6', 'Bxd7+', 'Qxd7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c5', 'Nf3', 'Nf6', 'Bg5', 'Nc6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nf6', 'Nc3', 'Nc6'], ['d4', 'd5', 'Bf4', 'e6', 'c3', 'c5', 'e3', 'Nc6', 'Nf3', 'Nf6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Bc4', 'e6', 'Nf3', 'Nxc3'], ['c4', 'e6', 'd4', 'c5', 'Nf3', 'd5', 'e3', 'Nc6', 'Nc3', 'Nf6'], ['e4', 'e6', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'Nf6', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'd4', 'exd4', 'Nxd4', 'Bxc3+'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Nf3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Qg4', 'c4', 'b3', 'cxb3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'd6', 'dxe5', 'dxe5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c5', 'cxd5', 'cxd4', 'Qxd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'f5', 'd4', 'fxe4', 'Nxe4', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Bb5+', 'Bd7', 'Nc3', 'Qe7'], ['e4', 'c6', 'Nc3', 'd5', 'Nf3', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'e5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'exd5', 'exd5', 'Bd2', 'Nf6'], ['c4', 'Nf6', 'Nf3', 'd5', 'cxd5', 'Nxd5', 'Nc3', 'Nxc3', 'bxc3', 'e6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nc6', 'Bb5', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'exd4', 'Nxd4', 'Bc5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nc6', 'Bb5', 'Bg4'], ['f4', 'd5', 'b3', 'e6', 'Nf3', 'c5', 'e3', 'Nf6', 'Bb2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'exd4', 'Nxd4', 'Bb4'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'a3', 'Bxc3+'], ['d4', 'e6', 'e3', 'd5', 'Bd3', 'Nf6', 'Nd2', 'Be7', 'f4', 'Nbd7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'dxc5', 'Bxc5', 'exd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'f5', 'd3', 'f4', 'Nc3', 'd6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Bxf7+', 'Kxf7'], ['Nf3', 'd5', 'd4', 'Bg4', 'c4', 'dxc4', 'Qa4+', 'c6', 'Qxc4', 'Bxf3'], ['Nf3', 'd5', 'd4', 'c5', 'c4', 'dxc4', 'Nc3', 'cxd4', 'Nxd4', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'b5', 'Bxb5', 'Qc7', 'd4', 'e6'], ['Nf3', 'Nc6', 'd4', 'd5', 'c4', 'Nf6', 'Nc3', 'dxc4', 'e4', 'e5'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'd5', 'e5', 'Qc7', 'd4', 'f6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'Qc7', 'Nc3', 'Nf6', 'Nd5', 'Qb8'], ['d4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bd2', 'O-O', 'a3', 'Bxc3'], ['Nf3', 'e6', 'e4', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'c4', 'Nf6'], ['e4', 'c5', 'Qh5', 'd6', 'Bc4', 'g6', 'Qd5', 'Be6', 'Qxb7', 'Bxc4'], ['Nf3', 'd5', 'd4', 'Nc6', 'c4', 'Bg4', 'cxd5', 'Qxd5', 'Nc3', 'Qd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e5', 'd4', 'Nf6', 'dxe5', 'Ng4'], ['Nf3', 'd5', 'e4', 'dxe4', 'Ng5', 'Nf6', 'd3', 'h6', 'Nxf7', 'Kxf7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'e5', 'd5', 'Nd4', 'Nxe5', 'd6'], ['Nf3', 'Nc6', 'e4', 'e5', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'Qc7', 'd4', 'e5', 'd5', 'Qd6'], ['Nf3', 'e6', 'Nc3', 'd5', 'd4', 'Bb4', 'Bd2', 'Ne7', 'e3', 'O-O'], ['d4', 'Nf6', 'c4', 'd5', 'b3', 'c5', 'e3', 'Bf5', 'Nc3', 'Nc6'], ['e4', 'c5', 'Qh5', 'Qc7', 'Bc4', 'e6', 'd3', 'Nc6', 'Bg5', 'Be7'], ['Nc3', 'c5', 'e4', 'Nc6', 'Nf3', 'e5', 'Bb5', 'Nf6', 'd3', 'd5'], ['Nf3', 'd5', 'd4', 'h5', 'c4', 'dxc4', 'Nc3', 'e6', 'e4', 'c6'], ['Nf3', 'd5', 'd4', 'Nf6', 'c4', 'e6', 'Nc3', 'Be7', 'Qc2', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Be6'], ['e4', 'Nc6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'e5', 'Nc3', 'Bb4'], ['e4', 'e6', 'Nc3', 'd5', 'd4', 'Nf6', 'Bg5', 'Be7', 'e5', 'Nfd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'Ng4', 'h3', 'Nxf2'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Be7', 'a3', 'd6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Be7', 'Qe2', 'd5', 'exd5', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'Bd3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'c3', 'a6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'dxc4', 'e3', 'b5', 'a4', 'b4'], ['e4', 'e5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bd7', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd4', 'exd4', 'Nxd4', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Qd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'd4', 'Bb4+', 'c3', 'Bd6', 'Nf3', 'Nc6', 'd5', 'Nce7'], ['e4', 'e5', 'Bc4', 'Na6', 'd3', 'Nf6', 'Nf3', 'Nc5', 'Nxe5', 'Bd6'], ['d4', 'Nf6', 'e3', 'd5', 'Nc3', 'Nc6', 'Nf3', 'Bg4', 'Be2', 'e5'], ['d4', 'd5', 'e3', 'Nf6', 'Nc3', 'c6', 'Nf3', 'Bg4', 'Be2', 'Bxf3'], ['e3', 'e5', 'd4', 'd6', 'Bc4', 'Nc6', 'Qf3', 'h5', 'Qxf7#'], ['d4', 'Nf6', 'e3', 'g6', 'Nc3', 'Bg7', 'Nf3', 'O-O', 'Bd2', 'd6'], ['b4', 'e5', 'Bb2', 'd6', 'e3', 'f5', 'g3', 'f4', 'gxf4', 'exf4'], ['Nf3', 'e5', 'd4', 'exd4', 'c3', 'Nc6', 'cxd4', 'Bb4+', 'Nc3', 'Bxc3+'], ['e4', 'Nc6', 'd3', 'e5', 'Nf3', 'd6', 'h3', 'Nf6', 'a3', 'h6'], ['d4', 'd5', 'e3', 'e6', 'Nf3', 'Nf6', 'Nc3', 'e5', 'dxe5', 'Ne4'], ['e4', 'e5', 'Nf3', 'd6', 'h4', 'Nc6', 'c3', 'Nf6', 'Ng5', 'Nxe4'], ['d4', 'd5', 'Nc3', 'c6', 'e3', 'Nf6', 'Nf3', 'Ne4', 'Bd3', 'e6'], ['e4', 'Nc6', 'c3', 'Nf6', 'f3', 'e5', 'd4', 'd6', 'dxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Nf6', 'Nxe5', 'Nxd5', 'd4', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bc4', 'Bxc3', 'bxc3', 'Nc6'], ['e4', 'Nh6', 'Bb5', 'c6', 'Bc4', 'e6', 'Nc3', 'b5', 'Bb3', 'd6'], ['d4', 'Nf6', 'Bg5', 'e6', 'Bxf6', 'Qxf6', 'Nf3', 'Bb4+', 'c3', 'Be7'], ['Nc3', 'd5', 'd4', 'Nf6', 'Nf3', 'Bf5', 'Bf4', 'e6', 'Qd2', 'Bb4'], ['d4', 'Nf6', 'Nc3', 'd5', 'e4', 'dxe4', 'Bg5', 'h6', 'Bxf6', 'exf6'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Nf6', 'd3', 'Nc6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nc3', 'Nf6', 'd3', 'h6', 'Nxe5', 'd6'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'd3', 'c5'], ['e4', 'd5', 'Nc3', 'd4', 'Nd5', 'e6', 'Bb5+', 'c6', 'd3', 'cxb5'], ['d4', 'Nc6', 'e3', 'd5', 'Nf3', 'Nf6', 'Nbd2', 'Be6', 'b3', 'Ne4'], ['e4', 'e5', 'f4', 'Nf6', 'fxe5', 'Nxe4', 'Nf3', 'Nc6', 'Bc4', 'Nxe5'], ['d4', 'd5', 'c4', 'Nc6', 'Nc3', 'Nxd4', 'Qxd4', 'e5', 'Qd1', 'Bb4'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c5', 'Nf3', 'Nf6', 'e5', 'Nfd7'], ['d4', 'd5', 'e3', 'Nf6', 'Nf3', 'Nc6', 'a3', 'Bf5', 'g3', 'e6'], ['e4', 'e5', 'Nc3', 'c6', 'Nf3', 'd6', 'Bc4', 'b5', 'Bd3', 'b4'], ['e4', 'd5', 'Nc3', 'Qd6', 'd4', 'Qe6', 'f3', 'dxe4', 'fxe4', 'Qf6'], ['d4', 'e6', 'e3', 'b6', 'Nf3', 'Nf6', 'Ne5', 'Bd6', 'Be2', 'Bxe5'], ['d4', 'e6', 'e4', 'b6', 'Bd3', 'Nf6', 'Bf4', 'Bb7', 'Ne2', 'Bxe4'], ['d3', 'e5', 'e4', 'Bd6', 'd4', 'f6', 'd5', 'Ne7', 'Be3', 'c5'], ['e4', 'e6', 'd3', 'Bc5', 'Nf3', 'd5', 'd4', 'Bd6', 'Bd3', 'Nc6'], ['e4', 'f6', 'd3', 'e5', 'f3', 'Ne7', 'c4', 'f5', 'exf5', 'Nxf5'], ['e4', 'e6', 'Nf3', 'Bd6', 'g3', 'b6', 'Nc3', 'Bb7', 'd3', 'f5'], ['e4', 'e6', 'd4', 'b5', 'Bxb5', 'c6', 'Be2', 'g6', 'b3', 'd5'], ['d3', 'd5', 'Be3', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd4', 'Bg5', 'Be7'], ['e4', 'e6', 'd4', 'Bb4+', 'c3', 'Bd6', 'Nf3', 'f6', 'Bd3', 'e5'], ['e4', 'e6', 'd3', 'c6', 'Ne2', 'g6', 'g4', 'Nf6', 'h3', 'Qe7'], ['e4', 'g5', 'g4', 'Bg7', 'c3', 'Nf6', 'd3', 'h5', 'Nf3', 'hxg4'], ['e4', 'e6', 'd3', 'g6', 'f3', 'f5', 'b3', 'Nf6', 'a4', 'b6'], ['d4', 'd5', 'e3', 'Nf6', 'Nf3', 'Bf5', 'Nc3', 'e6', 'Ne5', 'Nbd7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Ng4', 'Nf3', 'c6'], ['e3', 'e5', 'Bc4', 'd5', 'Bd3', 'e4', 'Be2', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e6', 'Bc4', 'Nf6', 'd4', 'Nxe4', 'f4', 'Bb4+', 'c3', 'Bd6'], ['e4', 'e6', 'Nf3', 'Be7', 'Bc4', 'b6', 'Nc3', 'Nc6', 'd4', 'd6'], ['d4', 'd5', 'Bf4', 'Nc6', 'g3', 'f5', 'Nc3', 'Nf6', 'Nf3', 'Ne4'], ['e4', 'd6', 'd4', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'Bg4', 'd5', 'Ne5'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'f6', 'Nc3', 'e5', 'Bg3', 'Qe7'], ['d4', 'e6', 'e4', 'Bb4+', 'c3', 'Be7', 'd5', 'Bc5', 'dxe6', 'dxe6'], ['d4', 'e5', 'Nf3', 'e4', 'Bg5', 'f6', 'e3', 'fxg5', 'Nfd2', 'd5'], ['d4', 'Nf6', 'Nf3', 'h6', 'h4', 'Nc6', 'Nc3', 'a6', 'Bf4', 'b5'], ['e3', 'Nc6', 'g3', 'Nf6', 'Bc4', 'd5', 'Bb5', 'a6', 'Bd3', 'Ne5'], ['d4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'b6', 'Ne5', 'Bb7', 'e3', 'Bd6'], ['e4', 'e6', 'Qh5', 'g6', 'Qe5', 'Bd6', 'Qxh8', 'Qf6', 'Qxg8+', 'Bf8'], ['e4', 'e6', 'Nf3', 'Nf6', 'Bc4', 'Nxe4', 'd3', 'Nd6', 'Bg5', 'f6'], ['d4', 'd5', 'e3', 'c5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'dxc5', 'Nxc5'], ['e3', 'e5', 'f4', 'exf4', 'exf4', 'Qf6', 'g3', 'Bc5', 'Nc3', 'g5'], ['d4', 'e6', 'e3', 'Nc6', 'Nc3', 'Bd6', 'Nf3', 'Nb4', 'Ng5', 'c5'], ['d4', 'd5', 'b3', 'Nc6', 'Bb2', 'e5', 'e3', 'exd4', 'exd4', 'Nf6'], ['e4', 'e6', 'd4', 'Nf6', 'd5', 'Nxe4', 'dxe6', 'fxe6', 'Qe2', 'd5'], ['e4', 'e6', 'Nf3', 'Nf6', 'e5', 'Ne4', 'd4', 'd5', 'Bg5', 'Nxg5'], ['e4', 'e6', 'd3', 'Nf6', 'g3', 'b6', 'Nf3', 'Bb7', 'Be2', 'Bb4+'], ['d4', 'd5', 'Nc3', 'e6', 'Bf4', 'c6', 'e3', 'Na6', 'Nf3', 'g6'], ['e4', 'd6', 'd3', 'Nf6', 'Be3', 'Bg4', 'Be2', 'e6', 'Bxg4', 'Nxg4'], ['f4', 'e6', 'e4', 'g6', 'c4', 'Bc5', 'Nf3', 'Nf6', 'd4', 'Bb4+'], ['d4', 'f5', 'Nf3', 'd5', 'Be3', 'Nf6', 'g3', 'Nc6', 'Bg2', 'e5'], ['e4', 'e6', 'Nc3', 'Nf6', 'f4', 'Bd6', 'd4', 'Bb4', 'e5', 'Nd5'], ['d4', 'b6', 'Bf4', 'Ba6', 'b3', 'c5', 'dxc5', 'bxc5', 'g3', 'Nc6'], ['e4', 'e6', 'd4', 'Qe7', 'Bd2', 'Nc6', 'Nf3', 'Qd6', 'Bc4', 'Nxd4'], ['e3', 'g6', 'b3', 'Bh6', 'Bb2', 'Bg7', 'Bxg7', 'e5', 'Bxh8', 'd6'], ['e4', 'e6', 'd4', 'Nc6', 'Be3', 'b6', 'Bc4', 'Bb4+', 'Bd2', 'Bxd2+'], ['d4', 'e6', 'Nc3', 'd5', 'Nf3', 'Nf6', 'Bg5', 'Be7', 'Bf4', 'O-O'], ['e4', 'e6', 'd4', 'Nf6', 'Nc3', 'Nc6', 'Bf4', 'Be7', 'Nf3', 'O-O'], ['d4', 'Nf6', 'Bg5', 'd5', 'Bxf6', 'gxf6', 'e3', 'c6', 'Bd3', 'e6'], ['e4', 'd6', 'd4', 'Be6', 'Nc3', 'Bb3', 'axb3', 'Nf6', 'Bc4', 'Qd7'], ['g4', 'd5', 'Nf3', 'Bxg4', 'Rg1', 'Bxf3', 'exf3', 'Nf6', 'Rxg7', 'Bxg7'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'e6', 'e3', 'c5', 'c3', 'Bd6'], ['d4', 'd5', 'Nf3', 'Bf5', 'Bf4', 'Nc6', 'c3', 'e6', 'e3', 'a6'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Bg4', 'Nbd2', 'e6', 'h3', 'Bh5'], ['e4', 'e5', 'Bc4', 'Nc6', 'd3', 'Bc5', 'Ne2', 'h6', 'O-O', 'Nge7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'd6', 'Nxd4', 'Nxd4'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bf4', 'Bg7', 'e3', 'O-O', 'c3', 'd5'], ['d4', 'd5', 'Nf3', 'Nd7', 'g3', 'Nb6', 'Bg2', 'Nf6', 'O-O', 'Bf5'], ['d4', 'd5', 'Nf3', 'f6', 'Bf4', 'Bf5', 'e3', 'Nc6', 'Be2', 'e6'], ['d4', 'g6', 'Nf3', 'Bg7', 'Bf4', 'd6', 'e3', 'Nc6', 'c3', 'Bg4'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Bf5', 'e3', 'Nbd7', 'Nf3', 'e6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nd7', 'e4', 'Nb6', 'Nf3', 'Nf6'], ['d4', 'Nf6', 'Nf3', 'e6', 'Bf4', 'd5', 'e3', 'h6', 'h3', 'Nc6'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'Bf5', 'c3', 'f6', 'e3', 'g5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'Ng6', 'd4', 'exd4'], ['d4', 'c5', 'c3', 'd6', 'Nf3', 'Nc6', 'Nbd2', 'cxd4', 'cxd4', 'Nf6'], ['d4', 'e6', 'Nf3', 'c5', 'c3', 'Nc6', 'd5', 'exd5', 'Qxd5', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'c3', 'Qf6'], ['d4', 'Nf6', 'Nf3', 'c5', 'c3', 'cxd4', 'cxd4', 'd6', 'Nbd2', 'Bf5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Nf6', 'Be2', 'Bf5', 'd4', 'e6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Bc5', 'c3', 'Qf6', 'a3', 'a6'], ['d4', 'Nf6', 'Nf3', 'e6', 'Bf4', 'c5', 'c3', 'Nd5', 'Bg3', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'Ng6', 'Nc3', 'Bc5'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bf4', 'Bg7', 'e3', 'O-O', 'h3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'c3', 'Bg4'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bf4', 'Bg7', 'e3', 'd6', 'h3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Ne7'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Bf5', 'e3', 'e6', 'Nbd2', 'Nbd7'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Nc6', 'e3', 'Bg4', 'Be2', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Qf6', 'O-O', 'h6'], ['e4', 'd5', 'exd5', 'Qxd5', 'd4', 'Nf6', 'Be3', 'Bf5', 'c4', 'Qd8'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bf4', 'Bg7', 'e3', 'Nh5', 'Bg5', 'O-O'], ['d4', 'Nf6', 'Nf3', 'c5', 'Bf4', 'e6', 'e3', 'Nc6', 'c3', 'd5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nd7', 'Nc3', 'Nb6', 'Nf3', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nf6', 'h3', 'Bf5'], ['d4', 'd5', 'Nf3', 'Bf5', 'Bf4', 'e6', 'e3', 'Nf6', 'c3', 'h6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Nf6', 'Bc4', 'Bf5'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Nc6', 'e3', 'a6', 'c3', 'Bg4'], ['d4', 'c6', 'Nf3', 'd6', 'Bf4', 'g6', 'e3', 'Bg7', 'c3', 'Nf6'], ['e4', 'e5', 'd3', 'Nc6', 'Nf3', 'Nf6', 'Bg5', 'Bc5', 'Qd2', 'h6'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bc4', 'd6', 'd3', 'a5', 'Ng5', 'Be6'], ['c3', 'e5', 'e4', 'Nf6', 'Qb3', 'Nxe4', 'd4', 'Qf6', 'Nf3', 'exd4'], ['e3', 'e5', 'c3', 'd5', 'Bb5+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Bc5', 'd3', 'Nge7'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'h4', 'Bc5', 'd3', 'Ng4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'h6', 'O-O', 'd6'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nc3', 'Bf5', 'a3', 'Nf6', 'Nb5', 'Rc8'], ['e4', 'c5', 'Nc3', 'e6', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6'], ['e4', 'h5', 'd4', 'a6', 'Bc4', 'b6', 'Qf3', 'e6', 'd5', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'Nc3', 'Bc5', 'h3', 'O-O'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nxd4'], ['e4', 'Nf6', 'e5', 'Ng8', 'Nf3', 'Nc6', 'Bc4', 'Nh6', 'd4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Ke7', 'Nxf7'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'Nf6', 'Nc3', 'Bc5', 'Qe2', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'd5', 'Bb5', 'dxe4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Ne7', 'd4', 'Bg4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Ne7', 'Ng5', 'h6', 'Nxf7', 'Qd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Nc3', 'd6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'Qe2+', 'Qe7'], ['e4', 'Nf6', 'e5', 'Ne4', 'Qf3', 'Ng5', 'Qf5', 'e6', 'Qg4', 'Nc6'], ['e4', 'e6', 'Nf3', 'b6', 'd4', 'Bb7', 'Nc3', 'd5', 'Bd3', 'h6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Bc5', 'O-O', 'Nxe4', 'd3', 'Nxf2'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'd6', 'Bb5', 'Bd7', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qc5', 'd4', 'Qf5', 'Bd3', 'Qe6+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['d4', 'd5', 'c4', 'Nf6', 'Nf3', 'Nc6', 'Nc3', 'Qd6', 'cxd5', 'e5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bxe6', 'fxe6', 'd4', 'd5'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nf3', 'Bf5', 'e3', 'Nb4', 'Bb5+', 'c6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'Bf5', 'Bf4', 'Nc6', 'g3', 'Nb4'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Nh6', 'd3', 'g6', 'Qf3', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'c6', 'Nc3', 'd5', 'exd5', 'cxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'Nc3', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Nf6', 'Nf3', 'Qd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Qb6', 'Nb3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'Bg4', 'exd6', 'Bxd6'], ['d4', 'd5', 'e3', 'Nc6', 'c4', 'Nf6', 'c5', 'e5', 'Bb5', 'Qd7'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'a3', 'Bg4', 'Be2', 'Bxf3'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Bc5', 'Bb5', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'c4', 'Bxc4', 'Qa5+', 'Bd2', 'Qb6'], ['e4', 'd6', 'd4', 'e6', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Be3', 'g6'], ['e4', 'e6', 'd4', 'd6', 'Nf3', 'Nc6', 'c4', 'Be7', 'Nc3', 'e5'], ['e4', 'c5', 'd3', 'd6', 'Nc3', 'Nf6', 'a3', 'g6', 'Nf3', 'Bg7'], ['d4', 'd6', 'Bf4', 'e6', 'Nf3', 'c6', 'e3', 'Nf6', 'Be2', 'h6'], ['e4', 'e6', 'd4', 'Qe7', 'f3', 'b6', 'Nc3', 'Bb7', 'Bb5', 'Nc6'], ['e4', 'g6', 'Nf3', 'Bg7', 'c3', 'b6', 'Bc4', 'Bb7', 'd3', 'e6'], ['e4', 'e5', 'Nf3', 'd6', 'c3', 'c6', 'd4', 'f6', 'd5', 'Be7'], ['e4', 'e6', 'd4', 'd6', 'Nf3', 'Qe7', 'Nc3', 'Nf6', 'Bg5', 'd5'], ['e4', 'e5', 'd3', 'Bc5', 'Nf3', 'd6', 'c3', 'Nf6', 'd4', 'exd4'], ['g3', 'd6', 'Bg2', 'e6', 'b3', 'Nf6', 'Bb2', 'Nc6', 'e3', 'd5'], ['d4', 'e6', 'c4', 'd6', 'Nc3', 'c6', 'Nf3', 'd5', 'Bf4', 'Bd6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'Be6', 'Bxe6', 'fxe6'], ['e4', 'e6', 'c4', 'd6', 'd4', 'Nf6', 'Nc3', 'c6', 'd5', 'cxd5'], ['e4', 'd6', 'd4', 'e6', 'Nf3', 'Qe7', 'Bc4', 'd5', 'exd5', 'exd5+'], ['d4', 'e6', 'c4', 'd6', 'Nc3', 'c6', 'Nf3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'd6', 'd3', 'Nc6', 'Nc3', 'Be6', 'a3', 'g6'], ['e4', 'd5', 'e5', 'c5', 'Bb5+', 'Bd7', 'Nc3', 'a6', 'Bxd7+', 'Nxd7'], ['e4', 'd6', 'd4', 'e6', 'c4', 'Nf6', 'Nc3', 'd5', 'e5', 'Ne4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Nc3', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'c5', 'Nc3', 'd6', 'Nf3', 'Nc6', 'Bc4', 'e6', 'O-O', 'Be7'], ['c4', 'e5', 'Nc3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'Bc5', 'e3', 'd6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nf6', 'e4', 'Nc6', 'd5', 'Na5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Nxd5', 'Qxd5'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'h6', 'Nc3', 'c6', 'O-O', 'b5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Nc3', 'Bd7', 'd4', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'a6', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'c6', 'Nc3', 'Bc5', 'Bc4', 'Nf6', 'h3', 'Qa5'], ['e4', 'e5', 'Nf3', 'Qh4', 'Nxe5', 'Qxe4+', 'Qe2', 'Qxc2', 'Ng6+', 'Be7'], ['e4', 'c5', 'Nc3', 'g6', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Bg5', 'Be7', 'Nf3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Be2', 'Nf6', 'd3', 'Bc5', 'a3', 'O-O'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'e6', 'Bc4', 'g6', 'd4', 'cxd4'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'Bf5', 'e3', 'Bg4'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'd6', 'Bc4', 'e6', 'O-O', 'Nd7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Be2', 'e6', 'Nf3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'Re1', 'Be7'], ['d4', 'd5', 'c3', 'Nf6', 'Bf4', 'Bf5', 'e3', 'Nbd7', 'Qb3', 'Rb8'], ['e4', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Nxd5', 'Qxd5', 'Nf3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Ne7', 'd4', 'Bd7'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd5', 'e5', 'f6', 'd4', 'fxe5'], ['e4', 'c5', 'Nc3', 'e6', 'Bc4', 'Nc6', 'Nf3', 'd6', 'O-O', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nf6', 'Bf4', 'b5', 'Nxb5', 'Qd5'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'a6', 'Qd3', 'Nc6', 'Nf3', 'Nb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Nf6', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'Bd6', 'Nc3', 'Nf6', 'Bc4', 'O-O', 'd4', 'exd4'], ['e4', 'd6', 'Nc3', 'Nf6', 'Nf3', 'c6', 'd4', 'g6', 'Bg5', 'Bg7'], ['Nf3', 'd5', 'd4', 'Nf6', 'Nc3', 'Nc6', 'h3', 'h6', 'Bf4', 'Bf5'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Nc6', 'Bb5', 'Bd7', 'Bxc6', 'bxc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Bg4', 'Be2', 'Bxf3'], ['Nf3', 'd5', 'd4', 'Nf6', 'Bf4', 'Nc6', 'Nc3', 'Bf5', 'a3', 'e6'], ['e4', 'e6', 'Nf3', 'c5', 'Nc3', 'd6', 'Bc4', 'Nc6', 'O-O', 'Nge7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Nf6'], ['Nf3', 'Nf6', 'Nc3', 'd5', 'd4'], ['e4', 'b6', 'd4', 'Bb7', 'Bd3', 'd5', 'e5', 'e6', 'Nf3', 'c5'], ['d4', 'Nf6', 'Nf3', 'g6', 'c4', 'd5', 'e3', 'c6', 'cxd5', 'cxd5'], ['c3', 'e5', 'f4', 'd6', 'fxe5', 'dxe5', 'e4', 'Be7', 'Nf3', 'Nd7'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qf3', 'Nf6', 'Nc3', 'Nb4', 'Qd1', 'a6'], ['e4', 'e5', 'd4', 'f6', 'd5', 'd6', 'Nf3', 'g6', 'Be2', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd3', 'd6', 'Nc3', 'Bg4'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qh5', 'Nh6', 'Qxe5+', 'Be7', 'd3', 'O-O'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'Bb4', 'Ng5', 'O-O'], ['d4', 'Nf6', 'Bg5', 'e6', 'e4', 'h6', 'Bxf6', 'Qxf6', 'e5', 'Qe7'], ['d4', 'c5', 'd5', 'd6', 'e4', 'e6', 'Nc3', 'Nf6', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'O-O', 'Nf6', 'Re1', 'O-O'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Bd3', 'Nf6'], ['Nf3', 'Nf6', 'b3', 'e6', 'Bb2', 'b6', 'e3', 'Bb7', 'Be2', 'Be7'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'd6', 'Bc4', 'Nc6', 'd3', 'Be7'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'Nf3', 'Nf6', 'Bd3', 'Bb4'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'O-O', 'a3', 'Be7'], ['e4', 'd6', 'd4', 'c6', 'Nf3', 'Nd7', 'Nc3', 'Ngf6', 'Be2', 'g6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'c3', 'a6', 'd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'e6', 'd3', 'g6', 'g3', 'Bg7', 'Bg2', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['d4', 'Nf6', 'Nf3', 'e6', 'h3', 'b6', 'Bf4', 'Bb7', 'Nbd2', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nc3', 'Bg7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'e5', 'Nd5'], ['Nf3', 'Nf6', 'd3', 'e6', 'a3', 'b6', 'e4', 'Bb7', 'Bg5', 'Be7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'c6', 'd4', 'Bf5'], ['d4', 'Nf6', 'd5', 'e6', 'dxe6', 'fxe6', 'Bg5', 'Be7', 'c3'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'Nc3', 'exd4', 'Nxd4', 'a5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'Nc3', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'e5', 'Nf3', 'Bd6', 'Nc3', 'Nf6', 'd4', 'Qe7', 'd5', 'a6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'Nxe4', 'Nxe5', 'Qe7', 'Qf3', 'd6'], ['e4', 'Nc6', 'Nf3', 'e5', 'd4', 'Bd6', 'Nc3', 'a6', 'Nd5', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nf6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd7', 'd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'f6', 'd5', 'Nb4', 'Nxe5', 'fxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Qe7', 'Nc3', 'Nxd4'], ['e4', 'e5', 'Nf3', 'c5', 'Nc3', 'd6', 'Bb5+', 'Nc6', 'd3', 'a6'], ['e4', 'a6', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Qe2', 'Qxe2+'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'Bb5', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd2', 'd6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'a6', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'd5', 'e5', 'c5', 'Bb5+', 'Bd7', 'Nc3', 'e6', 'Nf3', 'a6'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'd4', 'Bd6', 'Bc4', 'Qe7'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c6', 'd4', 'Qa5+', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'Nc3', 'Nf6', 'Bc4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'd6', 'd5', 'Nb8'], ['e4', 'e5', 'Nf3', 'c5', 'Nxe5', 'd6', 'Nc4', 'Nc6', 'g3', 'Be7'], ['e4', 'e6', 'Nc3', 'd5', 'Nf3', 'c5', 'Bb5+', 'Bd7', 'd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Bd6', 'Nc3', 'b6', 'd4', 'Qe7', 'Nd5', 'Qe6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'd5', 'Bb5', 'Bd7'], ['e4', 'c5', 'Nc3', 'd6', 'Nf3', 'Nf6', 'd4', 'cxd4', 'Nxd4', 'g6'], ['e4', 'Nc6', 'Nf3', 'e5', 'd4', 'd6', 'd5', 'Nb4', 'Nc3', 'Nf6'], ['e4', 'e6', 'Nc3', 'd5', 'e5', 'd4', 'Nce2', 'Nc6', 'Nf3', 'Bc5'], ['e4', 'd6', 'Nc3', 'Nf6', 'Nf3', 'c6', 'd4', 'h6', 'g3', 'g5'], ['e4', 'Nf6', 'Nc3', 'g6', 'd4', 'Bg7', 'Nf3', 'O-O', 'Bc4', 'd5'], ['e4', 'd5', 'Qf3', 'd4', 'Bc4', 'Nf6', 'c3', 'Bg4', 'Qf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'd5', 'Nc3', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'h6', 'd4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'exd4', 'Nxd4', 'Bb4'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'g3', 'Nf6', 'Bg2', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'e3', 'O-O', 'Bd3', 'c5'], ['e4', 'd5', 'd4', 'dxe4', 'Nc3', 'e6', 'Nxe4', 'Nc6', 'c3'], ['d3', 'd5', 'e4', 'dxe4', 'Nc3', 'e5', 'dxe4', 'Qxd1+', 'Nxd1', 'Nf6'], ['c3', 'd5', 'd4', 'e5', 'dxe5', 'f6', 'e4', 'dxe4', 'Qxd8+', 'Kxd8'], ['c3', 'd5', 'd4', 'e6', 'Nf3', 'Nf6', 'Bf4', 'Bd6', 'e3', 'Bxf4'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'dxc4'], ['e4', 'b6', 'Nf3', 'Ba6', 'Bxa6', 'Nxa6', 'Qe2', 'Nc5', 'd4', 'Ne6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'Bc5', 'O-O', 'd6'], ['g3', 'e5', 'Bh3', 'b6', 'f4', 'Bb7', 'f5', 'Bxh1', 'e3', 'Nf6'], ['c3', 'd5', 'd4', 'Nf6', 'Nf3', 'Bf5', 'h3', 'e6', 'g4', 'Bg6'], ['c3', 'Nf6', 'd4', 'e6', 'Bf4', 'Nh5', 'Be3', 'Be7', 'Nf3', 'b6'], ['e4', 'd5', 'Bd3', 'dxe4', 'Bxe4', 'Nf6', 'Nc3', 'Qd6', 'd3', 'Nc6'], ['f3', 'e5', 'g4', 'd5', 'Bh3', 'e4', 'g5', 'Bxh3', 'Nxh3', 'exf3'], ['d4', 'd5', 'c3', 'Nc6', 'b3', 'a6', 'a3', 'e6', 'e3', 'Nf6'], ['e4', 'd5', 'Nc3', 'd4', 'Nd5', 'e6', 'Nf4', 'Qf6', 'd3', 'Bb4+'], ['e4', 'd6', 'd4', 'g6', 'Qf3', 'Bh6', 'Bc4', 'e6', 'Bxh6', 'Nxh6'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'Bg4', 'Ne5', 'e6', 'Bg5', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['c3', 'Nf6', 'h3', 'e5', 'd4', 'exd4', 'cxd4', 'd5', 'Nc3', 'c6'], ['a3', 'd5', 'c3', 'e5', 'd4', 'e4', 'e3', 'f5', 'c4', 'c6'], ['d4', 'Nf6', 'Nf3', 'd5', 'Bg5', 'h6', 'Bxf6', 'exf6', 'e3', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['a3', 'g6', 'b4', 'Bg7', 'Nc3', 'd5', 'd4', 'Nf6', 'e3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Be2', 'Bc5', 'h4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Nd5', 'd6', 'Be2', 'Nge7'], ['e4', 'e5', 'Nf3', 'Nf6', 'g4', 'Be7', 'Nxe5', 'h5', 'g5', 'Nxe4'], ['e4', 'Nc6', 'Nf3', 'd6', 'd4', 'd5', 'e5', 'Bg4', 'Be3', 'e6'], ['e4', 'e6', 'd4', 'Ne7', 'c4', 'd5', 'e5', 'dxc4', 'Nc3', 'b5'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'a6', 'Bc4', 'd6'], ['d4', 'Nf6', 'c4', 'd5', 'Nc3', 'c6', 'e3', 'e6', 'Qb3', 'Be7'], ['e4', 'c5', 'Nc3', 'a6', 'a3', 'd6', 'Bc4', 'Nf6', 'd3', 'e6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'd5', 'exd5', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'c3', 'a6', 'Ba4', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'd5'], ['d4', 'Nf6', 'c4', 'd5', 'Nc3', 'c6', 'Nf3', 'Bf5', 'Bf4', 'e6'], ['e4', 'e6', 'Nf3', 'Bc5', 'd4', 'Bb6', 'c4', 'c5', 'd5', 'exd5'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'Nc3', 'Nf6', 'd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'g6', 'd4', 'Bg7', 'd5', 'c6', 'c4', 'Qa5+'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nge7', 'Nc3', 'Ne5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nce7', 'c4', 'Nf6'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'Nf6', 'Ng5', 'e6', 'O-O', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'a6', 'd4', 'cxd4'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'c5', 'e3', 'Nc6', 'c4', 'Bf5'], ['e4', 'e6', 'Nf3', 'Nc6', 'd4', 'd5', 'e5', 'Bd7', 'Be3', 'a6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bd6', 'd5', 'Nce7', 'c4', 'Nf6'], ['e4', 'c5', 'Bc4', 'd6', 'd3', 'Nf6', 'Nc3', 'a6', 'a3', 'Bd7'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bc4', 'f5', 'exf5', 'd5', 'Bb5', 'Bxf5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bg4', 'e3', 'e6'], ['e4', 'Nc6', 'd4', 'e6', 'Nf3', 'b6', 'c4', 'Bb7', 'Bd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'c6', 'Nc3', 'd5', 'e5', 'e6', 'd4', 'Nd7', 'f4', 'Nb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'f6', 'd5', 'Bb4+', 'c3', 'Ba5'], ['e4', 'c5', 'Nf3', 'd6', 'g3', 'a6', 'Bg2', 'Nc6', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'a6', 'd4', 'd6', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Be7'], ['e4', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'Qf3', 'e5', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'b6', 'd5', 'Bg4', 'Be2', 'Nd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nce7', 'c4', 'Nf6'], ['e4', 'e5', 'd4', 'exd4', 'Nf3', 'c5', 'c3', 'Nf6', 'e5', 'Nd5'], ['e4', 'c5', 'Bc4', 'd6', 'c3', 'Nf6', 'd3', 'e6', 'Bg5', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Be2', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd6', 'd4', 'exd4', 'Nxd4', 'c5'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'e6', 'Nc3', 'a6', 'a3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bd6', 'd5', 'Nce7', 'c4', 'c6'], ['e4', 'c5', 'b3', 'Nc6', 'Bb2', 'd6', 'Bb5', 'Bd7', 'Nf3', 'a6'], ['e4', 'c5', 'e5', 'e6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qf4', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'c3', 'Qf6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'e6', 'Qb3', 'd6'], ['d4', 'Nf6', 'c3', 'd5', 'Bf4', 'c5', 'dxc5', 'Nc6', 'e3', 'e5'], ['e4', 'c6', 'b3', 'd5', 'exd5', 'cxd5', 'Bb2', 'Nc6', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Bc4', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'Qe7', 'Qxe4', 'd5'], ['e4', 'c5', 'b4', 'e5', 'bxc5', 'Bxc5', 'Ba3', 'Bxa3', 'Nxa3', 'Nf6'], ['e4', 'e5', 'f4', 'd5', 'd4', 'exf4', 'Bxf4', 'dxe4', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'd5', 'exd5', 'Qxd5', 'd3', 'Bg4'], ['d3', 'f5', 'e3', 'Nf6', 'Be2', 'b6', 'Bf3', 'd5', 'Bh5+', 'g6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'Nxe5', 'Nxe5', 'dxe5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Bd7'], ['d3', 'a5', 'Nf3', 'b6', 'e4', 'Ra6', 'Be2', 'a4', 'O-O', 'b5'], ['d4', 'd5', 'Bf4', 'e6', 'e3', 'c5', 'c3', 'cxd4', 'exd4', 'Nc6'], ['d4', 'a6', 'c4', 'b5', 'cxb5', 'axb5', 'Nf3', 'Bb7', 'e3', 'c6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Bb5', 'Bd7'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'O-O', 'Bg5', 'h6'], ['d4', 'e6', 'c4', 'c5', 'dxc5', 'Bxc5', 'Bf4', 'Nc6', 'e3', 'Nf6'], ['e4', 'c5', 'Nc3', 'd6', 'Nf3', 'Nc6', 'Bc4', 'Bg4', 'd3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e5', 'c3', 'Nf6', 'Qb3', 'Be6'], ['d4', 'd6', 'c4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Bg5', 'O-O'], ['c4', 'e6', 'Nc3', 'c5', 'g3', 'Nf6', 'Bg2', 'd5', 'cxd5', 'Nxd5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'O-O', 'e3', 'd5'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Bf5', 'e4', 'Bg6', 'f4', 'h6'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Nc3', 'Nxe5', 'e3', 'Nbc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'g6'], ['d4', 'c6', 'c4', 'Qc7', 'Nc3', 'd6', 'Bf4', 'Nd7', 'e3', 'e5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'Bf5', 'Qb3', 'e6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'O-O', 'a3', 'Be7'], ['d4', 'Nf6', 'c4', 'b6', 'Nc3', 'Bb7', 'e3', 'g6', 'Nf3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'Bg4'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'Nc3', 'Nc6', 'Nf3', 'e6'], ['e4', 'c5', 'c3', 'd6', 'd4', 'cxd4', 'cxd4', 'g6', 'Nc3', 'Bg7'], ['e3', 'e6', 'Qf3', 'g6', 'Bc4', 'Bh6', 'd4', 'Qg5', 'd5', 'Nf6'], ['a4', 'e6', 'a5', 'Qf6', 'Nc3', 'Bc5', 'd4', 'Bd6', 'Nb5', 'Bb4+'], ['e3', 'e5', 'Qf3', 'Nf6', 'g4', 'h5', 'g5', 'Ng4', 'Bc4', 'Nc6'], ['a4', 'd5', 'b3', 'e5', 'c4', 'Qf6', 'Ba3', 'Bc5', 'Bxc5', 'b6'], ['Nc3', 'f5', 'd4', 'e6', 'Nf3', 'Nf6', 'Bg5', 'h6', 'Bxf6', 'Qxf6'], ['e4', 'Nf6', 'Nc3', 'e5', 'd3', 'Nc6', 'g3', 'b6', 'Bg2', 'Bb7'], ['d4', 'Nf6', 'c4', 'Nc6', 'e3', 'e6', 'Nf3', 'b6', 'Nc3', 'Bb7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'O-O', 'Nf6', 'Nc3', 'e6'], ['e4', 'c5', 'Nf3', 'a6', 'd4', 'e6', 'Be3', 'Qc7', 'Be2', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'h6', 'Nf3', 'Nc6', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3'], ['e4', 'e5', 'Bc4', 'c6', 'Nf3', 'h6', 'Nc3', 'd6', 'h3', 'Nf6'], ['d4', 'f6', 'b3', 'c6', 'Bb2', 'Kf7', 'e3', 'd6', 'Qh5+', 'g6'], ['e4', 'e5', 'Bb5', 'c6', 'Ba4', 'Nf6', 'Nc3', 'Be7', 'Nf3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'a3', 'Bxc3', 'dxc3', 'Nf6'], ['e4', 'e5', 'Bc4', 'c6', 'Bxf7+', 'Kxf7', 'Qf3+', 'Qf6', 'Qb3+', 'Ke8'], ['e4', 'e5', 'Nf3', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4', 'cxd4', 'Bb4+'], ['e4', 'e6', 'd4', 'Bb4+', 'Bd2', 'Bxd2+', 'Nxd2', 'Nh6', 'h3', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'a3', 'd6', 'h3', 'Nf6'], ['e4', 'Nc6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Bf5', 'Nc3', 'e6'], ['e4', 'e5', 'Bb5', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'd6', 'd4', 'f5'], ['e3', 'e5', 'd4', 'exd4', 'exd4', 'h6', 'Bc4', 'd5', 'Bb3', 'Nf6'], ['d4', 'd5', 'Nf3', 'h6', 'c4', 'Nf6', 'e3', 'Be6', 'c5', 'Nc6'], ['e4', 'd6', 'd4', 'Bd7', 'Nf3', 'h6', 'Nc3', 'Nf6', 'e5', 'dxe5'], ['e4', 'e5', 'Nf3', 'Qf6', 'c3', 'd6', 'h3', 'h6', 'd4', 'Nc6'], ['e4', 'e5', 'd4', 'exd4', 'Bd3', 'Nc6', 'c3', 'd5', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'Bd6', 'O-O', 'O-O'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Bd2', 'e6'], ['e4', 'e5', 'd3', 'd5', 'f4', 'Nc6', 'f5', 'g6', 'g4', 'dxe4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Bd2', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'O-O'], ['e4', 'a6', 'Nf3', 'd6', 'd4', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nxd4', 'Bc4', 'Nxf3+', 'Qxf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'Nd5', 'Nf6', 'Nxb4', 'Nxb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'h6', 'a3', 'a6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Qf3', 'Nxc3', 'dxc3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'h3', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'a6', 'Nc3', 'b5', 'Bb3', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'd5', 'exd5', 'Qxd5', 'Qb3', 'Nf6'], ['e4', 'e5', 'Nf3', 'f6', 'Nxe5', 'fxe5', 'Qh5+', 'Ke7', 'Qxe5+', 'Kf7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'a6', 'Bf4', 'Bg4'], ['c3', 'e5', 'd3', 'd5', 'Nf3', 'Nc6', 'Qb3', 'Nf6', 'e4', 'Na5'], ['d4', 'd5', 'e3'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Qe4+', 'Be2', 'Nc6', 'Nc3', 'Qe6'], ['d4', 'd5', 'Nf3', 'e6', 'Nc3', 'Nf6', 'g3', 'Bb4', 'Bd2', 'Qe7'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'e5', 'Ng4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'f6', 'dxe5', 'fxe5'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'Nf3', 'Qe7'], ['d4', 'd5', 'c3', 'Nf6', 'Bf4', 'Nc6', 'Qb3', 'e5', 'dxe5', 'Nxe5'], ['d4', 'e6', 'c3', 'd5', 'e3', 'Bd6', 'h3', 'Nc6', 'a3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'h3', 'Bd7', 'Bxc6', 'Bxc6'], ['e4', 'c6', 'Nf3', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'd4', 'e6'], ['d4', 'g6', 'h3', 'Bg7', 'Nf3', 'd5', 'Bf4', 'Nc6', 'e3', 'Nf6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'Nc3', 'Nge7', 'a3', 'g6'], ['d4', 'c6', 'Bg5', 'h6', 'Bh4', 'Nf6', 'e3', 'd6', 'Nf3', 'Nbd7'], ['e4', 'c6', 'Bc4', 'g6', 'Ne2', 'd5', 'exd5', 'cxd5', 'Bb3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'Nf6', 'Ng5', 'Bxf2+', 'Kxf2', 'Nxe4+'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'd5', 'exd5', 'Nxd5', 'Nxe5', 'Qf6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nc3', 'Nf6', 'Nxe5', 'Qe7', 'Nf3', 'Ng4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'h6', 'O-O', 'Bc5'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'd5', 'exd5', 'exd5'], ['e4', 'e5', 'd3', 'Nc6', 'c3', 'Nf6', 'h3', 'd5', 'Nd2', 'dxe4'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nxe5', 'Qh4', 'Nd3', 'Qxe4+', 'Qe2', 'Nf6'], ['e4', 'e5', 'Nc3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'Bb4', 'Nge2', 'Nd4'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Nh6', 'd3', 'a6', 'Bxh6', 'g6'], ['e4', 'd5', 'exd5', 'e6', 'dxe6', 'Bxe6', 'Nf3', 'Nf6', 'd4', 'c6'], ['e4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'a6', 'd4', 'h6', 'a3', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'Bd6', 'd5', 'Na5'], ['e4', 'e5', 'Qh5', 'Nc6', 'Nf3', 'd6', 'Bb5', 'g6', 'Qg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'a6', 'Ng5', 'Qxg5', 'd4', 'Qxg2'], ['d4', 'd5', 'a3', 'Nc6', 'h3', 'e5', 'c3', 'e4', 'e3', 'f5'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nxe5', 'Qh4', 'd4', 'Qxe4+', 'Be3', 'd6'], ['d4', 'd6', 'e4', 'Nf6', 'e5', 'dxe5', 'dxe5', 'Qxd1+', 'Kxd1', 'Ng4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'Nc3', 'Bc5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be7', 'Qe5', 'f6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qf3', 'Nf6', 'Nc3', 'a6', 'a3', 'c6'], ['e4', 'e6', 'Nc3', 'd6', 'd4', 'Be7', 'Bc4', 'c6', 'Bf4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'c3', 'Bd7', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Bc5', 'c3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Qf3', 'a6', 'a3', 'Bc5', 'Nc3', 'd6'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'f6', 'Nc3', 'Nge7', 'Bb5', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'O-O', 'Bg4', 'h3', 'Bh5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'O-O', 'a6', 'c3', 'Nd7'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'h6', 'Ne2', 'd5', 'exd5', 'Nxd5'], ['e4', 'f5', 'f3', 'fxe4', 'fxe4', 'Nf6', 'e5', 'Nd5', 'Nf3', 'e6'], ['e4', 'd5', 'exd5', 'e6', 'dxe6', 'Bxe6', 'Nf3', 'Nc6', 'Qe2', 'Nf6'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nce7', 'Nf3', 'Ng6', 'Nc3', 'h6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Bb4', 'exd5', 'Qxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Be7', 'O-O', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nc3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Na5', 'Bb3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Nxe4', 'Nxe4', 'd5'], ['Nc3', 'd5', 'd4', 'g6', 'Bf4', 'Bg7', 'e3', 'Nf6', 'Be2', 'O-O'], ['e4', 'e5', 'f4', 'exf4', 'd4', 'Qh4+', 'Ke2', 'Qe7', 'Nc3', 'Nf6'], ['e4', 'e5', 'Qf3', 'Nc6', 'c3', 'Nf6', 'Bc4', 'Be7', 'h3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Be6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd5', 'Nf6', 'Qf5', 'e6'], ['e3', 'e5', 'd4', 'exd4', 'exd4', 'd5', 'Nc3', 'c6', 'Bf4', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nf3', 'd6', 'c3', 'Bb6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'h3', 'd5'], ['Nf3', 'e6', 'g3', 'd5', 'Bg2', 'Nf6', 'c4', 'c5', 'cxd5', 'Nxd5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'Bf4', 'Be7'], ['Nf3', 'Nf6', 'g3', 'd5', 'Bg2', 'g6', 'c4', 'Bg7', 'cxd5', 'Nxd5'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'c5', 'c3', 'Qb6', 'b3', 'Bf5'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Nxd5', 'Nf3', 'Bg4', 'Be2', 'e6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'e6', 'O-O', 'a6', 'Bxc6', 'dxc6'], ['Nf3', 'd5', 'd4', 'Nc6', 'g3', 'Nf6', 'Bg2', 'e5', 'dxe5', 'Ng4'], ['f3', 'e5', 'c3', 'd5', 'g3', 'Nf6', 'e3', 'Nc6', 'd4', 'Bd6'], ['Nf3', 'c5', 'c4', 'Nc6', 'Nc3', 'Nf6', 'e3', 'g6', 'd4', 'cxd4'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'g6', 'Be2', 'Bg7', 'b3', 'O-O'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb3', 'Nc6', 'd4', 'Nf6'], ['e4', 'c5', 'Bd3', 'Nc6', 'Nf3', 'e5', 'O-O', 'a6', 'h3', 'b5'], ['e4', 'e5', 'Bd3', 'Nc6', 'Nf3', 'Nf6', 'O-O', 'd5', 'exd5', 'Nxd5'], ['e4', 'd5', 'd4', 'dxe4', 'Nh3', 'f5', 'Ng5', 'h6', 'h4', 'hxg5'], ['e4', 'e5', 'd4', 'Bd6', 'Bd2', 'exd4', 'Nf3', 'f6', 'Bc4', 'Bc5'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'f5', 'd4', 'h6', 'Qh5+', 'g6'], ['e4', 'c5', 'Bd3', 'Nc6', 'Nf3', 'f6', 'O-O', 'h6', 'h3', 'e5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Qe2', 'Qf5', 'd3', 'a6'], ['e4', 'c5', 'Bd3', 'Nc6', 'Nf3', 'h6', 'O-O', 'e5', 'h3', 'd6'], ['e4', 'c5', 'Bd3', 'a6', 'Nf3', 'Nc6', 'O-O', 'd6', 'h3', 'b5'], ['Nf3', 'd5', 'g3', 'Be6', 'Bg2', 'Nc6', 'O-O', 'Qd6', 'd3', 'O-O-O'], ['e4', 'c5', 'Bd3', 'e6', 'Nf3', 'a6', 'O-O', 'b5', 'h3', 'Bb7'], ['e4', 'd5', 'e5', 'Nc6', 'd4', 'Be6', 'h3', 'Qd7', 'Nf3', 'O-O-O'], ['e4', 'c5', 'd4', 'e5', 'd5', 'Nf6', 'Bb5', 'a6', 'Bc4', 'b5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Nge2', 'Nh6', 'd4', 'Ng4'], ['e4', 'd5', 'Nc3', 'd4', 'Nd5', 'Nf6', 'Nxf6+', 'gxf6', 'Nf3', 'e5'], ['d4', 'd5', 'g4', 'c5', 'f3', 'Nc6', 'Be3', 'e5', 'dxc5', 'd4'], ['d4', 'g6', 'e3', 'Bg7', 'Nf3', 'Nf6', 'Nc3', 'd6', 'Bd3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['d4', 'Nf6', 'e3', 'd5', 'Nf3', 'Nc6', 'c3', 'b5', 'Bd3', 'e6'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bc4', 'b5', 'Bxf7+', 'Kxf7'], ['e4', 'e5', 'Bc4', 'f5', 'exf5', 'd6', 'Bxg8', 'Rxg8', 'Qh5+', 'g6'], ['d4', 'c5', 'dxc5', 'Qa5+', 'Nc3', 'Qxc5', 'Nf3', 'Nf6', 'Bf4', 'd6'], ['e3', 'd5', 'd3', 'e5', 'h3', 'c5', 'Qh5', 'Nc6', 'a3', 'Nf6'], ['e3', 'e5', 'd3', 'd5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'Qg3', 'O-O'], ['d4', 'e6', 'e4', 'd6', 'c4', 'b6', 'f4', 'Bb7', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'h3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Bc5', 'h3', 'Nc6', 'Bc4', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Be2', 'c6', 'Nf3', 'Bg4'], ['d4', 'd5', 'Bf4', 'Nf6', 'h3', 'Bf5', 'e3', 'e6', 'c4', 'Bb4+'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'e5', 'Bc4', 'Nc6', 'a3', 'Nf6', 'd3', 'a6', 'Bg5', 'Be7'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'Bg5', 'Bb4', 'Qa4+', 'Nc6'], ['e4', 'c5', 'Bc4', 'Nc6', 'a3', 'e6', 'Nc3', 'Nge7', 'Qf3', 'g6'], ['e4', 'd5', 'Bc4', 'dxc4', 'Nf3', 'Nc6', 'b3', 'cxb3', 'cxb3', 'Bg4'], ['e4', 'e5', 'Bc4', 'Bc5', 'd3', 'Nc6', 'a3', 'Nf6', 'Nc3', 'O-O'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Bc4', 'Nf6', 'd3', 'Bg4'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'g6', 'Bg5', 'Bg7', 'Nc3', 'O-O'], ['e4', 'd5', 'd4', 'dxe4', 'd5', 'h6', 'Nc3', 'Nf6', 'Bb5+', 'c6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Bd2', 'Qc7'], ['e4', 'd5', 'e5', 'c5', 'c3', 'Bf5', 'd4', 'cxd4', 'cxd4', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'c6', 'Bc4', 'Bg4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'Nf3', 'd6', 'O-O', 'h6'], ['d4', 'd5', 'e4', 'dxe4'], ['e4', 'e5', 'Bc4', 'Bc5', 'd3', 'h6', 'Nf3', 'd6', 'O-O', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'c6', 'Bg5', 'Be7', 'Nf3', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Nf3', 'Bg4'], ['e4', 'd5', 'e5', 'c5', 'c4', 'd4', 'Na3', 'Nc6', 'Nf3', 'Bg4'], ['e4', 'e5', 'Bc4', 'Nc6', 'a3', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['d4', 'd5', 'Bf4', 'Nf6', 'h3', 'g6', 'e3', 'Bg7', 'c4', 'dxc4'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'Nc6', 'd3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'c6', 'Nc3', 'd5', 'exd5', 'cxd5', 'Be2', 'e5', 'd3', 'Bc5'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'Nc3', 'd6', 'f4', 'dxe5'], ['e4', 'd6', 'd4', 'e5', 'd5', 'f5', 'exf5', 'Bxf5', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd3', 'Bg4', 'h3', 'Bh5'], ['d4', 'd5', 'c4', 'Nc6', 'e3', 'dxc4', 'Bxc4', 'h5', 'Nf3', 'Bg4'], ['e4', 'e6', 'Nf3', 'd5', 'Ng5', 'Qxg5', 'Qf3', 'e5', 'Bb5+', 'c6'], ['e4', 'd5', 'Bb5+', 'c6', 'Ba4', 'dxe4', 'f3', 'exf3', 'Qxf3', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Qf3', 'Qxf3', 'gxf3', 'Nf6', 'Bh3', 'Bxh3'], ['d4', 'e5', 'dxe5', 'f6', 'Nf3', 'c6', 'Nc3', 'b5', 'e3', 'Bb4'], ['g3', 'e6', 'Bg2', 'Bc5', 'd4', 'Bxd4', 'Qxd4', 'd5', 'Qxg7', 'Qf6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'Nf6', 'Ng5', 'Nh5', 'Nxf7', 'Qe7'], ['e4', 'e6', 'Bc4', 'Qh4', 'Qf3', 'Nf6', 'Nc3', 'e5', 'Qg3', 'Qf4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Ng5', 'Be6', 'Bb3', 'd5'], ['d4', 'd5', 'e3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Ng5', 'Be7', 'Nxf7', 'O-O'], ['e4', 'e5', 'Nf3', 'Bd6', 'Bc4', 'c5', 'Ng5', 'Qa5', 'Nxf7', 'Nf6'], ['c4', 'c5', 'Nc3', 'e5', 'd3', 'Nf6', 'Nh3', 'h6', 'f4', 'g5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'b3', 'Bb4', 'Na3', 'O-O'], ['e4', 'd5', 'exd5', 'Bf5', 'Nc3', 'e6', 'g4', 'Bg6', 'dxe6', 'fxe6'], ['f4', 'd5', 'Nf3', 'Nf6', 'h3', 'Ne4', 'd3', 'Nf6', 'Rg1', 'e6'], ['f3', 'e5', 'd4', 'd6', 'dxe5', 'dxe5', 'Nc3', 'Qxd1+', 'Nxd1', 'Be7'], ['e4', 'd6', 'Qf3', 'Nf6', 'h3', 'Be6', 'c4', 'Nc6', 'Qe3', 'h5'], ['Nc3', 'a6', 'Nf3', 'b5', 'a3', 'Bb7', 'e4', 'Qc8', 'd4', 'c5'], ['g3', 'd5', 'Bg2', 'Nf6', 'Bf3', 'a6', 'd4', 'e6', 'Bd2', 'Nbd7'], ['e4', 'd6', 'b3', 'Nf6', 'Nc3', 'Be6', 'Bb2', 'd5', 'Bd3', 'dxe4'], ['e4', 'c5', 'd4', 'e6', 'e5', 'Qc7', 'Bd3', 'cxd4', 'Nf3', 'Nc6'], ['c4', 'c5', 'Nc3', 'a6', 'Ne4', 'f5', 'Nxc5', 'e5', 'Nd3', 'e4'], ['d4', 'd6', 'c4', 'd5', 'Nc3', 'dxc4', 'Nf3', 'Bg4', 'e4', 'f6'], ['e4', 'e5', 'f3', 'Bc5', 'Ne2', 'Bb6', 'd4', 'exd4', 'Nxd4', 'Qh4+'], ['e4', 'f6', 'd4', 'e6', 'c4', 'Ne7', 'Nc3', 'c5', 'd5', 'exd5'], ['c3', 'd5', 'b4', 'b5', 'a4', 'c6', 'axb5', 'cxb5', 'e3', 'a5'], ['d4', 'Na6', 'e4', 'b6', 'c3', 'd5', 'e5', 'Nb8', 'Bd3', 'Bd7'], ['e4', 'c5', 'c3', 'e5', 'd4', 'Nc6', 'dxe5', 'Nxe5', 'f4', 'Nc6'], ['e4', 'b6', 'd4', 'Bb7', 'd5', 'c6', 'dxc6', 'Bxc6', 'Nc3', 'a6'], ['e4', 'f6', 'Nf3', 'c5', 'Bc4', 'e6', 'd4', 'd5', 'exd5', 'exd5'], ['Nf3', 'd5', 'd4', 'c6', 'Bf4', 'Na6', 'h3', 'h6', 'h4', 'Qb6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Qb6', 'b3', 'e5'], ['d4', 'e6', 'd5', 'exd5', 'Qxd5', 'Nf6', 'Qe5+', 'Be7', 'Nf3', 'O-O'], ['Nf3', 'd5', 'b3', 'Nc6', 'Bb2', 'e5', 'd4', 'e4', 'Nfd2', 'Bf5'], ['e4', 'a6', 'g3', 'c6'], ['f3', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qf2', 'Nf6', 'Bd2', 'e6'], ['d4', 'e6', 'e4', 'Bb4+', 'Bd2', 'Bxd2+', 'Nxd2', 'd5', 'Ngf3', 'Ne7'], ['e4', 'g6', 'd3', 'Nf6', 'Nf3', 'h6', 'Be2', 'Nc6', 'Nc3', 'e5'], ['e4', 'e5', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8', 'Bc4', 'Nf6'], ['f4', 'd5', 'e3', 'e5', 'd4', 'f6', 'dxe5', 'fxe5', 'Qh5+', 'g6'], ['e4', 'b6', 'd4', 'c5', 'd5', 'Bb7', 'Nf3', 'Qc7', 'c4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'Nd6', 'Nc6+', 'Qe7'], ['e4', 'Na6', 'd4', 'b6', 'Nc3', 'c6', 'Nf3', 'Bb7', 'Be2', 'Nc7'], ['f4', 'd5', 'Nf3', 'c5', 'd4', 'e6', 'Qd3', 'c4', 'Qe3', 'Nf6'], ['Nf3', 'd6', 'd4', 'Bf5', 'Nc3', 'd5', 'e3', 'Nc6', 'h3', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'b3', 'Nf6', 'Qe2', 'Bc5', 'Bb2', 'd6'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng1', 'Bf5', 'Bc4', 'Nd7', 'Nc3', 'Ne5'], ['f3', 'e6', 'd3', 'c6', 'a3', 'd5', 'b4', 'a6', 'Bb2', 'Be7'], ['b3', 'e5', 'Bb2', 'f6', 'e3', 'Bd6', 'Nf3', 'Nc6', 'Nh4', 'Nge7'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd6', 'Qe2', 'f6'], ['e4', 'Nc6', 'Nf3', 'a6', 'Bc4', 'Na5', 'Qe2', 'b5', 'Bd3', 'Bb7'], ['Nf3', 'd5', 'd4', 'Nc6', 'h3', 'Nf6', 'Nbd2', 'Qd6', 'e3', 'e5'], ['e4', 'g6', 'Nf3', 'Bg7', 'Bd3', 'd5', 'e5', 'Bg4', 'Qe2', 'Nc6'], ['d4', 'c6', 'Bf4', 'e6', 'a3', 'g5', 'Bg3', 'Qb6', 'b4', 'Bg7'], ['e4', 'Nc6', 'Nf3', 'e5', 'd4', 'Qe7', 'd5', 'Nd8', 'a3', 'h6'], ['d4', 'd5', 'Nd2', 'e6', 'e3', 'c5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['e4', 'c5', 'Bc4', 'f5', 'exf5', 'h5', 'd3', 'd5', 'Bb3', 'Bxf5'], ['e4', 'g5', 'd4', 'Nf6', 'Nc3', 'h6', 'Be3', 'Nc6', 'Bc4', 'Na5'], ['g3', 'd5', 'Bg2', 'Nf6', 'Bf3', 'e5', 'd3', 'Nc6', 'c3', 'Bc5'], ['e4', 'e5', 'd3', 'h6', 'g3', 'Nf6', 'Ne2', 'Bc5', 'Qd2', 'Ng4'], ['d4', 'd5', 'c4', 'Nf6', 'c5', 'b6', 'Qc2', 'bxc5', 'Qxc5', 'e6'], ['e4', 'd6', 'd4', 'h5', 'h4', 'b6', 'Be2', 'g6', 'Nc3', 'c6'], ['e4', 'a5', 'Nf3', 'd6', 'd4', 'f5', 'e5', 'dxe5', 'Nxe5', 'Qd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'cxd4'], ['e4', 'e6', 'd4', 'f5', 'exf5', 'exf5', 'Nf3', 'Nf6', 'Bc4', 'd5'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'c5', 'e3', 'd5', 'cxd5', 'exd5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Bd2', 'Qb6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e5', 'Nfd7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'dxe4', 'Nxe4', 'Be7'], ['d4', 'Nf6', 'Nf3', 'g6', 'h3', 'Bg7', 'Bf4', 'O-O', 'e3', 'd6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nc6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bc4', 'e6', 'd3', 'Nge7', 'Nf3', 'g6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nd7', 'Nf3', 'Ngf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'O-O', 'd5', 'exd5', 'exd5'], ['d4', 'Nf6', 'Bf4', 'e6', 'e3', 'c5', 'c3', 'Nc6', 'Nf3', 'Be7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'g6', 'e5', 'Bg7', 'Qe2', 'Qc7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'Bb5', 'Bd7', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nxc6', 'bxc6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'f5', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'c6', 'd4', 'exd4', 'Qxd4', 'b6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'O-O', 'Bg5', 'h6'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'b3', 'd6', 'e3', 'bxc4'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'a3', 'Bxc3+'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'd6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e5', 'Nfd7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'a3', 'cxd4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'Nc3', 'g6', 'd4', 'cxd4'], ['e4', 'c5', 'b3', 'Nc6', 'Bb2', 'e6', 'Bb5', 'Nf6', 'Bxf6', 'Qxf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Qf6', 'O-O', 'h6'], ['e4', 'c5', 'c4', 'Nc6', 'a4', 'Nf6', 'Nc3', 'g6', 'b3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Nge7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd3', 'g6', 'g3', 'Bg7', 'Bg2', 'e6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'e6', 'd4', 'cxd4', 'Ne2', 'Bc5'], ['e4', 'e6', 'd4', 'c5', 'c3', 'Be7', 'Nf3', 'd6', 'Bd3', 'Nd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'd6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'd3', 'h6', 'Be3', 'Bb4'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'e6', 'Bg5', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nc3', 'Nf6'], ['e4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bc5', 'd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Bc5', 'd4', 'exd4', 'cxd4', 'Bb4+'], ['d4', 'd5', 'e3', 'Bf5', 'Bd3', 'Qd7', 'Bxf5', 'Qxf5', 'Nf3', 'Nc6'], ['d4', 'Nf6', 'e3', 'g6', 'Nf3', 'Bg7', 'a3', 'd6', 'c3', 'O-O'], ['d4', 'e6', 'e3', 'Nf6', 'Nf3', 'c6', 'b3', 'd5', 'a3', 'Ne4'], ['d4', 'e6', 'c4', 'd6', 'e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f5', 'dxe5', 'fxe4', 'Ng5', 'h6'], ['d4', 'Nf6', 'e3', 'd5', 'Bd3', 'Bg4', 'Nf3', 'e6', 'h3', 'Bh5'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'c6', 'Nf3', 'Bf5', 'Bd3', 'Bxd3'], ['d4', 'd5', 'e3', 'e6', 'c4', 'a6', 'a3', 'dxc4', 'Bxc4', 'b5'], ['d4', 'c5', 'e3', 'cxd4', 'exd4', 'e6', 'c3', 'Be7', 'Nf3', 'h6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Qe7', 'c3', 'f6', 'O-O', 'Nc6'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'e6', 'c5', 'Nc6', 'Bd3', 'e5'], ['d4', 'd6', 'e3', 'c5', 'Nf3', 'Nc6', 'c3', 'c4', 'g3', 'd5'], ['d4', 'Nf6', 'Nf3', 'e6', 'Nc3', 'Bb4', 'Be3', 'Nc6', 'a3', 'Ba5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nc3', 'f5'], ['Nc3', 'Nc6', 'Nf3', 'e5', 'Nxe5', 'Nxe5', 'Nd5', 'd6', 'Nxc7+', 'Qxc7'], ['e4', 'e5', 'd3', 'Nf6', 'Bg5', 'h6', 'Bh4', 'g5', 'Bg3', 'Nh5'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bd3', 'Qh4', 'Nxh4', 'Bxf2+', 'Kxf2', 'Nf6'], ['e4', 'e5', 'Nc3', 'Bb4', 'Nf3', 'Nc6', 'a3', 'Bxc3', 'dxc3', 'Nf6'], ['d4', 'e5', 'c4', 'exd4', 'Qxd4', 'Nc6', 'Qe4+', 'Be7', 'Bg5', 'Nf6'], ['e4', 'e5', 'Bc4', 'd6', 'Qf3', 'Qe7', 'Bxf7+', 'Qxf7', 'Qxf7+', 'Kxf7'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Bg4', 'Nge2', 'e6', 'dxe6', 'g6'], ['b4', 'd5', 'e4', 'e6', 'exd5', 'Bxb4', 'dxe6', 'fxe6', 'Bb5+', 'Bd7'], ['d4', 'e6', 'e4', 'Bb4+', 'c3', 'Ba5', 'Bd2', 'd5', 'e5', 'Nc6'], ['e4', 'c5', 'Qg4', 'e6', 'd3', 'Nc6', 'Bg5', 'f6', 'Bf4', 'Be7'], ['Nc3', 'c5', 'Nf3', 'Nc6', 'Nd5', 'e6', 'Nf4', 'g6', 'e4', 'e5'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'a5', 'fxe5', 'f6', 'd4', 'fxe5'], ['e4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Bd7', 'c3', 'e6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'c5', 'Bc4', 'Nf6'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7', 'Nc3', 'Nc6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qa4', 'Nf6', 'Be3', 'g6'], ['e4', 'c5', 'c4', 'g6', 'Nc3', 'Bg7', 'Nd5', 'e6', 'Ne3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'b3', 'Nf6', 'd3', 'Bc5', 'Bb2', 'Ng4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Bc4', 'Nxf3+', 'Qxf3', 'Bc5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'c6', 'd4', 'd5', 'exd5', 'cxd5'], ['e4', 'e6', 'd4', 'Qh4', 'a3', 'Qxe4+', 'Ne2', 'Nf6', 'Nc3', 'Qf5'], ['d4', 'Nc6', 'e4', 'e5', 'd5', 'Nd4', 'c3', 'Nb5', 'Bxb5', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Bd3', 'e5'], ['Nc3', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'g6', 'Nc3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'c3', 'f5', 'exf5', 'Bxf5'], ['e4', 'd5', 'e5', 'Nc6', 'Bb5', 'Bd7', 'Nc3', 'Nxe5', 'Qe2', 'c6'], ['e4', 'e5', 'Qf3', 'Nc6', 'Bc4', 'Nf6', 'Qc3', 'Nxe4', 'Qb3', 'Qf6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nf6', 'Bg5', 'c5', 'Qa4', 'b6'], ['e4', 'e5', 'd4', 'Bd6', 'Nf3', 'Nc6', 'Bg5', 'Nf6', 'Bc4', 'b6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'dxe4', 'Bb5+', 'c6'], ['e4', 'e5', 'd4', 'd6', 'Bb5+', 'c6', 'Bc4', 'Nf6', 'Nc3', 'exd4'], ['e3', 'd5', 'd4', 'e6', 'Qd3', 'Nf6', 'Be2', 'Be7', 'f4', 'O-O'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nce7', 'Nf3', 'c6', 'Nxe5', 'cxd5'], ['e4', 'e5', 'd3', 'Nc6', 'Nf3', 'Nf6', 'h3', 'd5', 'exd5', 'Nxd5'], ['d4', 'Nf6', 'h3', 'd5', 'g4', 'Nc6', 'Bg2', 'e5', 'c3', 'Be7'], ['e4', 'g6', 'Nc3', 'Nf6', 'd4', 'e6', 'Bc4', 'Bb4', 'Bf4', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qf6', 'O-O', 'a6', 'Bxc6', 'Qxc6'], ['d4', 'd5', 'Qd3', 'c6', 'e4', 'e5', 'dxe5', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c4', 'Nf6', 'Nc3', 'b6', 'a3', 'Bb7'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qa4', 'e6', 'a3', 'Nf6'], ['g3', 'e5', 'Bg2', 'Nf6', 'Nh3', 'g6', 'O-O', 'Bg7', 'c3', 'd6'], ['d4', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Nc6', 'Nf5', 'e6', 'Nd6+', 'Bxd6'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'c6', 'c5', 'b6', 'cxb6', 'Qxb6'], ['d4', 'd5', 'e4', 'e5', 'Nf3', 'dxe4', 'Nc3', 'exf3', 'Qxf3', 'exd4'], ['d4', 'g6', 'c4', 'Bg7', 'Nc3', 'e6', 'Bf4', 'Ne7', 'Nb5', 'd6'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Nc6', 'e3', 'g6', 'Bb5', 'Bg7'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'Bb5', 'Bg4'], ['e4', 'c5', 'b3', 'd6', 'Bb2', 'Nc6', 'Nc3', 'Nf6', 'Qe2', 'Bg4'], ['d4', 'd5', 'e4', 'Qd6', 'Nc3', 'e6', 'g3', 'Nc6', 'Bf4', 'Qb4'], ['d4', 'c5', 'Nf3', 'Na6', 'g3', 'Nf6', 'Bg2', 'd6', 'O-O', 'Bg4'], ['d4', 'd5', 'e4', 'e6', 'Nc3', 'dxe4', 'Nf3', 'exf3', 'Qxf3', 'Qxd4'], ['e3', 'd5', 'Be2', 'Nf6', 'f3', 'Nc6', 'c3', 'g6', 'g4', 'Bg7'], ['e4', 'c5', 'd4', 'e6', 'Nf3', 'Nc6', 'd5', 'Nb4', 'Ne5', 'Nh6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e5', 'Bc4', 'd6', 'd3', 'Be7'], ['d4', 'c5', 'e3', 'Nc6', 'dxc5', 'Qa5+', 'Nc3', 'Qxc5', 'Nf3', 'Nb4'], ['d4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'd5', 'g3', 'Bg7', 'Bg2', 'O-O'], ['d4', 'Nf6', 'e3', 'd5', 'Nc3', 'g6', 'h3', 'Bg7', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['Nc3', 'Nf6', 'e4', 'e5', 'd4', 'Nc6', 'Nf3', 'exd4', 'Nxd4', 'Ne5'], ['e4', 'e5', 'Nf3', 'Nc6', 'g3', 'd6', 'Bg2', 'Nf6', 'Nc3', 'Be7'], ['d4', 'e6', 'e4', 'Nf6', 'Nc3', 'Bb4', 'e5', 'Ne4', 'Bd2', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'e6', 'c3', 'Nf6', 'Bg5', 'Be7'], ['d4', 'd5', 'e4', 'e6', 'Nc3', 'Nc6', 'e5', 'Bb4', 'a3', 'Bxc3+'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'Bb5', 'a6'], ['e4', 'c5', 'Bc4', 'e6', 'd4', 'Nc6', 'd5', 'exd5', 'Bxd5', 'Ne5'], ['d4', 'Nf6', 'Nf3', 'd6', 'Nc3', 'g6', 'e4', 'e6', 'Bg5', 'Be7'], ['c3', 'd5', 'e3', 'Nc6', 'Bd3', 'Nf6', 'Ne2', 'e6', 'Qc2', 'Bd6'], ['d4', 'd5', 'e4', 'Nf6', 'e5', 'Ne4', 'Be3', 'f5', 'Nf3', 'e6'], ['c4', 'Nc6', 'Nc3', 'Nf6', 'e4', 'e5', 'a3', 'g6', 'Nf3', 'Bg7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'c3', 'Nc6', 'd4', 'g6'], ['e4', 'c5', 'd4', 'Nc6', 'dxc5', 'Qa5+', 'Nc3', 'Qxc5', 'Be3', 'Qb4'], ['d4', 'd6', 'Nf3', 'c5', 'c3', 'Nf6', 'Nbd2', 'Be6', 'g3', 'd5'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'Nf3', 'exf3', 'Qxf3', 'Qxd4'], ['d4', 'e5', 'Nf3', 'f5', 'dxe5', 'Bc5', 'e3', 'd6', 'Nc3', 'Nc6'], ['e4', 'c5', 'f4', 'Nc6', 'Nf3', 'g6', 'Bc4', 'Bg7', 'Ng5', 'e6'], ['d4', 'e5', 'Nf3', 'f5', 'dxe5', 'Bc5', 'g3', 'Ne7', 'Bg2', 'c6'], ['d4', 'e5', 'dxe5', 'c5', 'e3', 'Qa5+', 'Bd2'], ['e4', 'c5', 'Bc4', 'Nc6', 'Qh5', 'e6', 'Bb5', 'Nf6', 'Qf3', 'Nd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd3', 'e5', 'g3', 'Nf6', 'Bg2', 'g6'], ['e4', 'c5', 'c3', 'Nc6', 'd4', 'e5', 'd5', 'Nce7', 'Nf3', 'd6'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'Nf3', 'Bg4', 'h3', 'Bh5'], ['Nf3', 'Nc6', 'Na3', 'g6', 'g3', 'Bg7', 'c3', 'e5', 'd4', 'e4'], ['d4', 'd5', 'e3', 'Nf6', 'Nf3', 'Nc6', 'Bd3', 'g6', 'Nc3', 'Bg7'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Bf5', 'Nf3', 'exf3', 'Qxf3', 'Bc8'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'd3', 'Bg4', 'h3', 'Bh5'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'f5', 'Nf3', 'e6', 'g3', 'Bb4'], ['e4', 'Nc6', 'Nf3', 'e5', 'Nc3', 'Nf6', 'Bb5', 'g6', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'Qe7', 'Qxe4', 'Qc5'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Be7', 'Qxh8', 'Bf8', 'Qxg8'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3'], ['e3', 'e5', 'd3', 'd5', 'Bd2', 'Nc6', 'Be2', 'Nf6', 'Nf3', 'h6'], ['e3', 'e5', 'Bc4', 'Nf6', 'Qh5', 'Nxh5'], ['g4', 'e5', 'Nf3', 'd6', 'Bg2', 'f6', 'h4', 'c5', 'Nc3', 'b6'], ['e3', 'e5', 'd3', 'd5', 'Bd2', 'Nf6', 'Be2', 'Bc5', 'Nf3', 'Nc6'], ['d4', 'e6', 'e4', 'Bb4+', 'c3', 'Bf8', 'Bd2', 'd6', 'c4', 'c6'], ['e4', 'e5', 'Nf3', 'Bb4', 'Bc4', 'Qh4', 'O-O', 'Qd8', 'Nxe5', 'Bf8'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'cxd4', 'Bd3', 'e5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nxd4'], ['d4', 'c6', 'c4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'Bf5', 'e3', 'e6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'e6', 'Nf3', 'Bb4', 'a3', 'Ba5'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'Bd7', 'Bg5', 'Bd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'cxd4', 'c3', 'a6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'e6', 'Bf4', 'a6', 'e3', 'g5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'h6', 'Bf4', 'e6'], ['d4', 'e6', 'c4', 'Nf6', 'Nc3', 'd5', 'Nf3', 'Be7', 'Bf4', 'O-O'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'd4', 'Nf3', 'Nc6', 'e3', 'Bb4+'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e5', 'cxd5', 'exd4', 'Qxd4', 'Nf6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'c5'], ['e4', 'g6', 'Nf3', 'Bg7', 'Bc4', 'Nh6', 'd3', 'O-O', 'Nc3', 'd6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'e6', 'd3', 'g6', 'Nc3', 'Bg7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'h6', 'Bf4', 'a6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'e6', 'd3', 'd6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'a6', 'Ba4', 'Nxe4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'cxd4', 'd3', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'cxd4', 'O-O', 'a6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'Nf3', 'Bb4', 'Qb3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'Re1', 'Nc5'], ['g3', 'd5', 'Bg2', 'c5', 'e3', 'Nc6', 'Nc3', 'Nf6', 'Nf3', 'Bg4'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Be6', 'Ng5', 'Qd7'], ['e4', 'c5', 'g3', 'Nc6', 'Bg2', 'd6', 'Nc3', 'g6', 'Nf3', 'Bg7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'a5', 'O-O', 'Nd4', 'Nxd4', 'cxd4'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nc3', 'd6', 'd3', 'Nf6', 'Bg5', 'Nd7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bf5', 'Qb3', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'a3', 'a6', 'Bxc6', 'bxc6'], ['b3', 'd5', 'Bb2', 'c5', 'e3', 'Nc6', 'Nf3', 'Bg4', 'Be2', 'Qc7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'O-O', 'e4', 'd6'], ['d4', 'd5', 'Bf4', 'c5', 'e3', 'Nc6', 'c3', 'Qa5', 'Bd3', 'cxd4'], ['e4', 'c5', 'Bc4', 'Nc6', 'h3', 'g6', 'Nc3', 'Bg7', 'Nd5', 'e6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'e6', 'b3', 'a6'], ['c4', 'c6', 'Nc3', 'e5', 'e4', 'Nf6', 'Be2', 'd5', 'cxd5', 'cxd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'd3', 'a5', 'Nc3', 'Rb8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'h6', 'a3', 'Nf6', 'd3', 'a6'], ['Nf3', 'd5', 'b3', 'Bf5', 'Bb2', 'e6', 'Nd4', 'Bg6', 'e3', 'Nf6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'b3', 'e6', 'Bb2', 'Bb4+'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'Nc6', 'Bf4', 'Qe7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'Nf3', 'Bg7', 'Bg5', 'Ne4'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'e6', 'Qb3', 'a6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'e6', 'Nc3', 'g6', 'd3', 'Bg7'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'd4', 'a3', 'Nc6', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'c3', 'Nf6', 'Qb3', 'Qe7'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Bd3', 'Bg7', 'Nf3', 'Ng4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'f4', 'Bg7', 'e5', 'dxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'c3', 'Bg4', 'Qb3', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'a3', 'Nf6', 'Nc3', 'Bc5'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'Qb3', 'Nd4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Qe2+', 'Ne7', 'Qb5+', 'c6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bb5', 'Nf6', 'Qf5', 'g6', 'Qf3', 'Nd4'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Nh6', 'd4', 'exd4', 'Bxh6', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'a3', 'a6', 'Ba4', 'Nxe4'], ['e4', 'e5', 'Qh5', 'Qe7', 'Nf3', 'Nf6', 'Qxe5', 'Qxe5', 'Nxe5', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'd5', 'Bd3', 'Nf6', 'Qe2', 'Bg4'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'dxe6', 'Bxe6', 'Nc3', 'Qe7'], ['e4', 'e6', 'd4', 'f6', 'Nc3', 'Bb4', 'Bd2', 'Ne7', 'a3', 'Bxc3'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'g3', 'Nf6', 'Bg2', 'e5'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'Nc3', 'Nd4'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'exf4', 'Bc4', 'Nf6', 'd3', 'Bb4+'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'd4', 'Nc6', 'Qf4', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'f3', 'Nf6', 'Bb5', 'Qe7'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Qf6', 'Qxf6', 'Nxf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'Nxe4'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'Qb3', 'd5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'h6', 'a3', 'Nc6', 'c3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'd3', 'a6'], ['e4', 'e5', 'Qh5', 'd6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'Qb3', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'dxc6', 'Nxe5', 'Nxe4'], ['d4', 'd5', 'e4', 'dxe4'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Qe7', 'Qxh8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'Bc5', 'd4', 'exd4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bb5+', 'Bd7'], ['e4', 'Nf6', 'Nc3', 'd5', 'e5', 'd4', 'exf6', 'dxc3', 'Nf3', 'exf6'], ['e3', 'e5', 'Nc3', 'd5', 'Nf3', 'e4', 'Ne5', 'd4', 'exd4', 'Qxd4'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Nh6', 'd4', 'exd4', 'Bxh6', 'g6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be7', 'Qh5', 'Nf6'], ['d4', 'Nf6', 'Nc3', 'e6', 'e4', 'Bb4', 'e5', 'Ne4', 'Bd2', 'Nxc3'], ['d4', 'Nf6', 'Nc3', 'd6', 'e4', 'g6', 'Bg5', 'Bg7', 'Bd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'f6', 'a3', 'Nge7', 'd3', 'g6'], ['e4', 'd6', 'd4', 'Qd7', 'Nf3', 'Na6', 'Bxa6', 'bxa6', 'Nc3', 'Qg4'], ['d4', 'Nc6', 'c4', 'e6', 'a3', 'Qe7', 'b4', 'Nxd4', 'Qxd4', 'Qxb4+'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'Qe7', 'Qxe4', 'Qxe5'], ['e4', 'd5', 'exd5', 'Nf6', 'Bc4', 'Bf5', 'Nc3', 'a6', 'Nf3', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'bxc6', 'Nc3', 'd5'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'Bc4', 'Bb4', 'f3', 'Bxc3+'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'a6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'h6', 'e3', 'c5', 'dxc5', 'Bxc5'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e5', 'Bxc4', 'exd4', 'Qf3', 'Bb4+'], ['d4', 'Nf6', 'c4', 'e6', 'Bg5', 'h6', 'Bxf6', 'Qxf6', 'Nf3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'b5'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'g6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'e6', 'e3', 'Nbd7'], ['e4', 'e6', 'd4', 'd6', 'c4', 'b6', 'Nc3', 'Nd7', 'Nge2', 'Bb7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nc3', 'g6', 'g3', 'Bg7', 'Bg2', 'Nc6', 'd3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'd4', 'cxd4'], ['e4', 'c5', 'Nc3', 'a6', 'g3', 'b5', 'Bg2', 'Bb7', 'd3', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'c4', 'Nb6', 'exd6', 'cxd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nc3', 'e6', 'g3', 'd5', 'd3', 'Nc6', 'Bg2', 'd4'], ['e4', 'c5', 'Nc3', 'e6', 'g3', 'Nf6', 'Bg2', 'Be7', 'Nge2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'f5', 'd3', 'Nf6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'd3', 'd6', 'Bb5', 'Bd7'], ['e4', 'c5', 'Nf3', 'd6', 'd3', 'Nc6', 'Nc3', 'Nf6', 'Be3', 'g6'], ['e4', 'e5', 'Nf3', 'Bd6', 'c3', 'Nc6', 'd4', 'exd4', 'cxd4', 'Nb4'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd3', 'd5', 'Nbd2', 'Bc5'], ['e4', 'c5', 'Bc4', 'Nf6', 'd3', 'e6', 'Nf3', 'd6', 'Be3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'c3', 'Bg4'], ['d4', 'd5', 'Bf4', 'f6', 'Nf3', 'Nc6', 'e3', 'Bg4', 'Be2', 'Bxf3'], ['e4', 'g6', 'Nc3', 'Bg7', 'd4', 'd6', 'Be3', 'Nf6', 'Nge2', 'O-O'], ['h4', 'e5', 'Nf3', 'Nc6', 'a4', 'Nf6', 'c4', 'd5', 'b3', 'Be6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Qc7', 'd3', 'e6', 'Nc3', 'a6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'a6', 'e3', 'e6', 'Nf3', 'Bb4'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'e6', 'Nf3', 'Nc6', 'Qd1', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Be7'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'c6', 'c4', 'd5', 'cxd5', 'cxd5'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'f6', 'e3', 'Bg4', 'h3', 'Bh5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'O-O', 'c6'], ['e4', 'c5', 'a3', 'e6', 'f4', 'd6', 'Nc3', 'a6', 'd4', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['d4', 'd5', 'Nc3', 'f6', 'a3', 'e5', 'e4', 'Ne7', 'Be3', 'Nbc6'], ['e3', 'c5', 'Bc4', 'Nf6', 'Qf3', 'e6', 'Nh3', 'Be7', 'Ng5', 'O-O'], ['d4', 'd5', 'Nf3', 'Nf6', 'Nc3', 'Bg4', 'e3', 'e6', 'a3', 'Bd6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nf3', 'e6', 'Nc3', 'dxc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'Re1', 'Nd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'Nf6', 'Nc3', 'O-O'], ['e4', 'c5', 'Nf3', 'e6', 'c4', 'Nf6', 'Nc3', 'd6', 'd3', 'Be7'], ['e4', 'c5', 'Qf3', 'Nf6', 'h3', 'e6', 'Bc4', 'd6', 'd3', 'a6'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Bf4', 'd6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'e6', 'Nc3', 'a6', 'Nf3', 'Nf6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'e6', 'Nc3', 'd6', 'Nf3', 'Nf6'], ['d4', 'd5', 'Nf3', 'Bg4', 'e3', 'Nc6', 'Be2', 'Nf6', 'O-O', 'e6'], ['e4', 'c5', 'Nc3', 'e6', 'Bc4', 'Nf6', 'd4', 'cxd4', 'Qxd4', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bd3', 'h6', 'O-O', 'Nc6', 'Nc3', 'a6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'e6', 'Bg5', 'Be7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Nf6'], ['Nc3', 'e5', 'Na4', 'Nc6', 'b4', 'Bxb4', 'Nb2', 'Bd6', 'a3', 'Nf6'], ['f4', 'e5', 'g4', 'Qh4#'], ['h4', 'd5', 'Rh3', 'Bxh3', 'Nxh3', 'f6', 'g4', 'Qd7', 'e3', 'g5'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb3', 'a5', 'Qf3', 'Nf6'], ['d4', 'd5', 'Bf4', 'c6', 'Nf3', 'Nf6', 'h3', 'Bf5', 'e3', 'Nbd7'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'e6', 'e3', 'Be7', 'Nf3', 'O-O'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'g3', 'Nf6', 'Bg2', 'c6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nc6', 'Bxc4', 'e5', 'Nf3', 'e4'], ['e4', 'e6', 'f4', 'd5', 'e5', 'c5', 'd4', 'Nc6', 'dxc5', 'Bxc5'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'f5', 'e3', 'Nf6', 'Nbd2', 'e6'], ['e4', 'e6', 'e5', 'd6', 'exd6', 'Bxd6', 'Nf3', 'Nf6', 'Bc4', 'b6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'Nf3', 'c5'], ['d4', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Nc6', 'Nxc6', 'bxc6', 'g3', 'e5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be7', 'b3', 'Nf6'], ['d4', 'b6', 'Nf3', 'Bb7', 'e3', 'e6', 'Be2', 'c5', 'O-O', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Be3', 'Qb6', 'b3', 'cxd4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Bd3', 'Bd6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Bf5', 'Nc3', 'e6', 'e3', 'Nd7'], ['d4', 'd5', 'e3', 'Bf5', 'Bd3', 'e6', 'f4', 'Nf6', 'Nf3', 'Nbd7'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'e3', 'b6', 'Nc3', 'Bb7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Be3', 'Qxb2'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Bf5', 'Nc3', 'Nf6', 'Nf3', 'Ne4'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Bf5', 'e3', 'e6', 'Qb3', 'b6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'd4', 'Qb6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c4', 'cxd4', 'Qxd4', 'Nc6'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'e6', 'Nc3', 'Bb4', 'Bd2', 'Nc6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'a3', 'Nf6', 'Bb5+', 'c6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'Nc3', 'a6', 'Qf3', 'c6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'd4', 'Qb6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bf5', 'Bg5', 'e6'], ['d4', 'd6', 'g3', 'c6', 'Bg2', 'h6', 'e4', 'g5', 'b3', 'Bg7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nc3', 'c6'], ['d4', 'e6', 'c4', 'c5', 'Nf3', 'd5', 'cxd5', 'exd5', 'e3', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'Nc3', 'a6', 'Qa4+', 'Nc6'], ['e4', 'e6', 'e5', 'd5', 'd4', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'c6', 'Qf3', 'Bb7'], ['d4', 'd6', 'c4', 'Nf6', 'Nf3', 'Bg4', 'e3', 'e6', 'Be2', 'c6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'Qxd5', 'Be3', 'Nf6', 'c4', 'Bb4+'], ['d4', 'd5', 'Bf4', 'e6', 'e4', 'dxe4', 'Nc3', 'Bd6', 'Bxd6', 'cxd6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qc4', 'Nf6', 'Bf4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6'], ['d4', 'd5', 'e3', 'Nc6', 'h3', 'e6', 'Nf3', 'g6', 'Be2', 'Bg7'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'e6', 'Be2', 'c6', 'Nf3', 'Bd7'], ['d4', 'd5', 'c4', 'e6', 'a3', 'Nf6', 'Nf3', 'b6', 'Bg5', 'Be7'], ['d4', 'd5', 'Nc3', 'Nc6', 'Nf3', 'b6', 'e3', 'Nf6', 'g3', 'Bg4'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'b6', 'e3', 'Bb7'], ['d4', 'Nf6', 'Nc3', 'd5', 'Nf3', 'g6', 'e3', 'Bg7', 'Bb5+', 'c6'], ['c4', 'c5', 'Nc3', 'b6', 'Nf3', 'a5', 'e4', 'Ra7', 'd4', 'Rc7'], ['e4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'd6'], ['d4', 'd5', 'Nc3', 'Nf6'], ['e4', 'Nf6', 'e5', 'Nd5', 'Nf3', 'e6', 'd4', 'Nc6', 'c4', 'Bb4+'], ['d4', 'd5', 'c4', 'c5', 'e4', 'e5', 'dxe5', 'dxe4', 'Qxd8+', 'Kxd8'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Na6', 'e3', 'Be6', 'cxd5', 'Nxd5'], ['e4', 'e6', 'd3', 'Bb4+', 'Bd2', 'Bxd2+', 'Qxd2', 'Nf6', 'Nf3', 'Ng4'], ['e3', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd5'], ['e4', 'e6', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'Bb4', 'd4', 'Bxc3+'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Qg4', 'cxd4', 'Nf3', 'Nc6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Bc4', 'd6', 'Nf3', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'e3', 'c5', 'Ne2', 'd5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nd7', 'Nf3', 'Ngf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'd5', 'exd5', 'e4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bb5', 'Nf6', 'Bxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bd3', 'Bxc3', 'bxc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'bxc6', 'Nxe5', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Bd6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Be2', 'Bc5', 'O-O', 'Nh6', 'Nc3', 'd6'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nd4', 'Be3', 'c5', 'dxc6', 'dxc6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nf6', 'Bf4', 'Nc6'], ['d4', 'd5', 'Bf4', 'e6', 'Nc3', 'Nc6', 'e3', 'Nf6', 'f3', 'Bb4'], ['e4', 'c5', 'b3', 'd6', 'Bb2', 'Nc6', 'Nf3', 'Nf6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd5', 'dxe5', 'dxe4', 'Qxd8+', 'Kxd8'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'g3', 'dxc4', 'Qa4+', 'Bd7'], ['e4', 'e6', 'd4', 'Nf6', 'e5', 'Ne4', 'Bd3', 'd5', 'Nd2', 'f5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'd6', 'd4', 'Bb6'], ['e4', 'd6', 'd4', 'g6', 'c4', 'Bg7', 'Nf3', 'Nc6', 'Nc3', 'Bg4'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'd6', 'Nf3', 'Nc6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'Qb6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'g6', 'Nc3', 'Bg7'], ['d4', 'd5', 'g3', 'Nf6', 'Bg2', 'c6', 'Nf3', 'Nbd7', 'O-O', 'Qc7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Bc4', 'e6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Bg4', 'f3', 'Bf5'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Qc7'], ['e4', 'e6', 'd4', 'Qf6', 'Nf3', 'g6', 'Bg5', 'Qg7', 'Bc4', 'h6'], ['e4', 'b6', 'd4', 'Bb7', 'f3', 'e6', 'Ne2', 'g6', 'b3', 'Bg7'], ['e4', 'c5', 'd3', 'e6', 'Nf3', 'Nc6', 'g3', 'Nf6', 'b3', 'Be7'], ['e4', 'e6', 'd4', 'Ne7', 'Nf3', 'd6', 'c4', 'Nd7', 'Nc3', 'g6'], ['d3', 'e5', 'Nd2', 'd5', 'b4', 'Bxb4', 'Bb2', 'd4', 'g3', 'Qd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'd6', 'd4', 'e6', 'Nf3', 'a6', 'Nc3', 'c6', 'Bc4', 'b5'], ['d4', 'd5', 'c4', 'c5', 'dxc5', 'e6', 'cxd5', 'Bxc5', 'e3', 'exd5'], ['d4', 'c5', 'dxc5', 'Qa5+', 'c3', 'Qxc5', 'Nf3', 'Nf6', 'e3', 'e5'], ['a3', 'd5', 'b4', 'e5', 'Bb2', 'Nd7', 'e3', 'c5', 'bxc5', 'Bxc5'], ['d4', 'e6', 'c4', 'c5', 'd5', 'd6', 'Nc3', 'exd5', 'cxd5', 'a6'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'a6', 'a4', 'Nc6', 'Nf3', 'd6'], ['d4', 'd5', 'c4', 'Bf5', 'Nc3', 'e6', 'cxd5', 'exd5', 'Nf3', 'Nc6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nc6', 'Nf3', 'd6'], ['e4', 'c5', 'c4', 'Nc6', 'g3', 'g6', 'Bg2', 'Bg7', 'Ne2', 'Nf6'], ['e4', 'c5', 'e5', 'e6', 'Nf3', 'Qc7', 'Nc3', 'Nc6', 'd4', 'cxd4'], ['d4', 'd5', 'c4', 'c5', 'dxc5', 'e5', 'cxd5', 'Bxc5', 'e3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'b5', 'cxd5', 'Qxd5', 'e3', 'Nf6'], ['d4', 'd5', 'Nf3', 'e6', 'e3', 'c5', 'c3', 'Nf6', 'Be2', 'Be7'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'e4', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'e6', 'e5', 'dxe5', 'Nxe5', 'Qc7'], ['d4', 'f5', 'c4', 'd6', 'e3', 'e5', 'Qh5+', 'g6', 'Qd1', 'e4'], ['d4', 'd5', 'c4', 'e6', 'c5', 'b6', 'b4', 'Ba6', 'Nf3', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Qd5', 'a3', 'Bf5', 'Nc3', 'Qa5'], ['e4', 'c5', 'Nf3', 'd6', 'h3', 'Nf6', 'e5', 'dxe5', 'Nxe5', 'Nbd7'], ['d4', 'd5', 'Nc3', 'e6', 'a3', 'c5', 'Nf3', 'a6', 'Bg5', 'Be7'], ['d4', 'd5', 'Nc3', 'e6', 'a3', 'c5', 'Nf3', 'Nc6', 'Bf4', 'Nf6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f4', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'd4', 'e3', 'Bb4+', 'Bd2', 'dxe3'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'd4', 'e3', 'Bb4+', 'Bd2', 'dxe3'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Be7', 'e3', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'c5', 'dxc5', 'Nc6'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'a6', 'e5', 'Nc6', 'Ne4', 'Nxe5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'Nxd5', 'e3', 'Nxc3'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'e3', 'b6', 'Nc3', 'Ba6'], ['e4', 'c5', 'c4', 'Nc6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'g3', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'dxc4', 'e3', 'Be7'], ['c4', 'd5', 'Nc3', 'dxc4', 'Qa4+', 'c6', 'Qxc4', 'Nf6', 'g3', 'Nbd7'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'Nc6', 'cxd5', 'Nxe5', 'e3', 'Bb4+'], ['d4', 'd6', 'c4', 'Nf6', 'Nc3', 'b6', 'e4', 'Bg4', 'Be2', 'Bd7'], ['d4', 'd5', 'c4', 'e6', 'c5', 'b6', 'b4', 'Be7', 'Bf4', 'Nf6'], ['e4', 'c5', 'e5', 'e6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe4', 'Qc7'], ['e4', 'c5', 'c4', 'Nc6', 'Nf3', 'g6', 'e5', 'Bg7', 'd4', 'cxd4'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'dxc4', 'e3', 'Be6', 'Nbd2', 'b5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f4', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['b4', 'd5', 'g3', 'e5', 'Bg2', 'Nf6', 'Nc3', 'Bxb4'], ['c4', 'e5', 'Nc3', 'Bc5', 'g3', 'Qf6', 'Bg2', 'Qxf2#'], ['b3', 'e5', 'Bb2', 'd6', 'e3', 'Be7', 'f4', 'Bf6', 'Ne2', 'e4'], ['b3', 'c5', 'Bb2', 'Nc6', 'e3', 'Nf6', 'Bb5', 'a6', 'Bc4', 'b5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd3', 'Nf6', 'Bd2', 'c6'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'a6', 'Nc3', 'Nf6', 'Bc4', 'b5'], ['b3', 'd5', 'Bb2', 'Nc6', 'e3', 'e5', 'Bb5', 'Bd7', 'f4', 'exf4'], ['b3', 'e5', 'Bb2', 'f6', 'e3', 'd5', 'f4', 'e4', 'Nc3', 'Be6'], ['b3', 'd5', 'Bb2', 'd4', 'e3', 'Nc6', 'Bb5', 'dxe3', 'fxe3', 'Bd7'], ['b3', 'Nc6', 'Bb2', 'e5', 'e3', 'f6', 'Bb5', 'Bb4', 'Qg4', 'g6'], ['b3', 'd5', 'Bb2', 'f6', 'g3', 'Nc6', 'Bg2', 'e5', 'e3', 'Be7'], ['c4', 'e5', 'Nc3', 'Bb4', 'g3', 'Bxc3', 'dxc3', 'Nf6', 'Bg2', 'd6'], ['d4', 'd5', 'c4', 'e6', 'cxd5', 'exd5', 'Nc3', 'Nf6', 'Bf4', 'Bb4'], ['d4', 'd5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'b3', 'Bg4', 'Bb2', 'g6'], ['c4', 'e5', 'Nc3', 'Bc5', 'g3', 'Nf6', 'Bg2', 'O-O', 'd3', 'Nc6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'e3', 'Bf5', 'Bd3', 'Bxd3'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Nf3', 'Nf6'], ['c4', 'd5', 'cxd5', 'e6', 'Nc3', 'Nf6', 'g3', 'exd5', 'Bg2', 'c6'], ['d4', 'Nf6', 'h3', 'c5', 'd5', 'e6', 'dxe6', 'fxe6', 'Bg5', 'd5'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'e6', 'Bg5', 'exd5', 'cxd5', 'Be7'], ['e4', 'e6', 'd4', 'g6', 'f4', 'Bg7', 'Nf3', 'h6', 'Nc3', 'd6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nb5', 'a6'], ['d4', 'd5', 'c4', 'Nc6', 'Nc3', 'e6', 'Nf3', 'Nf6', 'Bg5', 'Be7'], ['d4', 'd6', 'Nf3', 'g6', 'Bg5', 'Bg7', 'h3', 'Nf6', 'Nbd2', 'O-O'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bg5', 'h6', 'Bh4', 'Bf5', 'a3', 'Nf6'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'dxc4', 'e3', 'Bb4', 'Qa4+', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'cxd5', 'exd5', 'Nf3', 'Nc6', 'Nc3', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'e3', 'Bb4'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nc6', 'e3', 'e5', 'Bxc4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Bc5', 'Nc3', 'Nf6', 'b4', 'Bd4'], ['e4', 'b6', 'Nf3', 'Nc6', 'd4', 'e6', 'Ng5', 'Nh6', 'Qf3', 'Bb4+'], ['Nc3', 'e5', 'Nf3', 'd6', 'e4', 'Nc6', 'Bb5', 'Bd7', 'd3', 'g6'], ['e4', 'e6', 'Bc4', 'Qh4', 'd4', 'Qxe4+', 'Ne2', 'Qxg2', 'Ng3', 'Qc6'], ['e4', 'g6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Bf5', 'Qf3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'Qe7', 'Bc4', 'exd4'], ['e4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'Nc6', 'b3', 'Bc5', 'Bc4', 'Ng4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd4', 'Bxd4', 'Nxd4', 'Nxd4'], ['e4', 'c5', 'c4', 'Nf6', 'd3', 'e6', 'e5', 'Ng4', 'f3', 'Nxe5'], ['e4', 'e5', 'Nf3'], ['e4', 'e5', 'Nf3', 'f6', 'c3', 'Nc6', 'Bc4', 'Nge7', 'Qb3', 'Ng6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Qf3', 'e5', 'Qxf7#'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'd4', 'Bxd4', 'Nxe5', 'Bxe5'], ['e4', 'c5', 'Qh5', 'Nc6', 'Qxc5', 'g6', 'Bc4', 'Bg7', 'Qd5', 'Qb6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'Ng5', 'h6', 'Nxf7', 'Kxf7'], ['e4', 'c5', 'Bc4', 'g6', 'Qf3', 'Nf6', 'e5', 'Nh5', 'Qxf7#'], ['e4', 'c5', 'Nf3', 'g6', 'c3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'Bg7'], ['e4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Bb5+', 'c6', 'Nd6+', 'Qxd6'], ['d4', 'e5', 'dxe5', 'Nc6', 'f4', 'Qh4+', 'g3', 'Bb4+', 'c3', 'Qg4'], ['e4', 'e5', 'Qh5', 'Qf6', 'Nf3', 'Bc5', 'Nc3', 'Nh6', 'Nd5', 'Qc6'], ['e4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'Bc4', 'd5', 'Bb3', 'Bc5'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'Ng5', 'h6', 'Nxf7', 'Qe7'], ['e4', 'e6', 'd3', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Ng5', 'Nxe5'], ['e4', 'e6', 'f4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'd3', 'Qb6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bd6', 'c4', 'c6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'g6', 'Bxc4', 'Bg7', 'Nc3', 'Nf6'], ['d4', 'e6', 'c4', 'Nf6', 'Nc3', 'h6', 'e3', 'c6', 'Nf3', 'Bb4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'Qxd5', 'd4', 'Qd8', 'c4', 'Nd7'], ['d4', 'd6', 'c4', 'Nd7', 'e3', 'e6', 'Nc3', 'Ne7', 'Nf3', 'g6'], ['d4', 'd5', 'c4', 'e5', 'cxd5', 'Qxd5', 'Nc3', 'Bb4', 'Qa4+', 'Nc6'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'c6', 'Nf3', 'f5', 'Bg5', 'Nf6'], ['d4', 'e6', 'e4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nd7', 'Nf3', 'Ngf6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'e6', 'Nc3', 'Bd7', 'Nf3', 'Bb4'], ['e4', 'e6', 'Nf3', 'd5', 'd4', 'dxe4', 'Ne5', 'Nf6', 'Bc4', 'Nbd7'], ['d4', 'd6', 'c4', 'e5', 'dxe5', 'Nc6', 'exd6', 'Bxd6', 'Nf3', 'Bg4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'Qxd5', 'c4', 'Qd8', 'Nc3', 'Nf6'], ['d4', 'e6', 'c4', 'c5', 'e3', 'd5', 'cxd5', 'exd5', 'Nf3', 'c4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'Qxd5', 'Be3', 'Qd8', 'c4', 'Nf6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'e3', 'c5', 'Nf3', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nd7', 'Nf3', 'Ngf6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'e3', 'O-O', 'Nf3', 'c5'], ['e4', 'e6', 'f4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Bb5', 'Qb6'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'Bb4', 'e3', 'Nf6', 'Nf3', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Nf6'], ['d4', 'Nf6', 'c4', 'd5', 'e3', 'c6', 'Nc3', 'Bf5', 'Nf3', 'e6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e3', 'O-O', 'Nf3', 'd5'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Bb5', 'Qb6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Bd3', 'Qb6'], ['d4', 'e6', 'c4', 'd5', 'e3', 'Nf6', 'Nc3', 'Bb4', 'Nf3', 'O-O'], ['d4', 'e6', 'Nc3', 'f5', 'Nf3', 'Nf6', 'Bg5', 'c6', 'Ne5', 'd6'], ['d4', 'Nf6', 'c4', 'a6', 'Nc3', 'd5', 'e3', 'g6', 'Nf3', 'Bg7'], ['d4', 'Nf6', 'c4', 'c5', 'e3', 'a6', 'Nc3', 'b6', 'Nf3', 'Bb7'], ['d4', 'Nf6', 'c4', 'g6', 'e3', 'Bg7', 'Nc3', 'c6', 'Nf3', 'd5'], ['d4', 'e6', 'c4', 'd5', 'cxd5', 'exd5', 'Nc3', 'c6', 'Nf3', 'f5'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nf6', 'Nc3', 'Be7', 'Nf3', 'O-O'], ['d4', 'e6', 'c4', 'b6', 'Nc3', 'Bb7', 'e3', 'Nf6', 'Nf3', 'd5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nd7', 'f4', 'Ngf6'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'd4', 'Nf3', 'Nc6', 'a3', 'Bg4'], ['e4', 'e6', 'Nf3', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nd7', 'd3', 'Ngf6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nc6', 'Bxc4', 'Bf5', 'Nf3', 'e6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'd4', 'Nc6', 'Bb5', 'Qb6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Bc4', 'Nd7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'e3', 'Bg7', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nh6', 'd3', 'Bc5', 'Bxh6', 'gxh6'], ['e4', 'e6', 'Nc3', 'Na6', 'Bc4', 'Nc5', 'Nf3', 'Bd6', 'O-O', 'f5'], ['e3', 'e5', 'Nc3', 'Nc6', 'Bb5', 'a6', 'Bc4', 'Nf6', 'Nf3', 'd5'], ['d4', 'b6', 'Nc3', 'Ba6', 'Bf4', 'd6', 'e4', 'e5', 'dxe5', 'dxe5'], ['e4', 'e5', 'f4', 'f6', 'fxe5', 'fxe5', 'Qh5+', 'g6', 'Qxe5+', 'Ne7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'Be2', 'Qe7', 'd5', 'Nd7'], ['d3', 'c5', 'c4', 'Nc6', 'a3', 'b6', 'b4', 'cxb4', 'axb4', 'Nxb4'], ['e4', 'f6', 'Nc3', 'e5', 'Nf3', 'Nc6', 'd4', 'Nxd4', 'Nxd4', 'exd4'], ['d4', 'd5', 'e3', 'Nf6', 'Be2', 'e6', 'Nf3', 'Bb4+', 'Bd2', 'Bd6'], ['e4', 'g6', 'd4', 'Bg7', 'e5', 'd6', 'Nf3', 'Nc6', 'Bb5', 'b6'], ['g4', 'g6', 'h3', 'Bg7', 'Nf3', 'c5', 'b3', 'Bxa1', 'Ba3', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'Nxe5', 'Bd6'], ['e4', 'Nc6', 'Nf3', 'b6', 'd4', 'Ba6', 'Bxa6', 'Nf6', 'Nbd2', 'e5'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd2', 'd6', 'b3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'g6', 'Nd5', 'Bg7', 'd4', 'Nxd4'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Nd5', 'Nxe4'], ['e3', 'd5', 'Bb5+', 'c6', 'Bd3', 'Bd7', 'Bf1', 'Qb6', 'd3', 'Qc7'], ['e4', 'e5', 'd3', 'Qe7', 'Qh5', 'Qe6', 'Qf3', 'Qa6', 'Qe3', 'Qg6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'exd5'], ['e3', 'd5', 'd4', 'e6', 'Qe2', 'Nf6', 'h3', 'Nc6', 'Nf3', 'b6'], ['c4', 'e5', 'e4', 'Nf6', 'd3', 'Bb4+', 'Bd2', 'Bxd2+', 'Qxd2', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'd3', 'a6', 'Bg5', 'h6'], ['e4', 'e5', 'd3', 'Nf6', 'h3', 'Bc5', 'a3', 'O-O', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h5', 'O-O', 'f6', 'Nc3', 'g5'], ['e4', 'c5', 'Qh5', 'e5', 'Qxe5+', 'Qe7', 'Qc7', 'Qd8', 'Qe5+', 'Ne7'], ['c3', 'd5', 'd4', 'Nf6', 'e3', 'e6', 'f3', 'Bd6', 'Bd3', 'e5'], ['c3', 'd6', 'e4', 'Nf6', 'd3', 'g6', 'Be3', 'Ng4', 'e5', 'Nxe3'], ['b3', 'f6', 'Nc3', 'c6', 'd4', 'd5', 'Rb1', 'Bf5', 'Bf4', 'Na6'], ['e3', 'd5', 'Qf3', 'e6', 'e4', 'd4', 'e5', 'c5', 'Ba6', 'Nc6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'a6', 'Bc4', 'c6', 'dxc6', 'Nxc6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qf3', 'Nf6', 'd3', 'Nc6', 'c3', 'd6'], ['b3', 'd5', 'Bb2', 'e6', 'c4', 'f5', 'Nf3', 'Nf6', 'g3', 'Bd6'], ['b3', 'e5', 'Bb2', 'Nc6', 'c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qd4'], ['e4', 'c5', 'Nc3', 'd6', 'Bc4', 'e6', 'd3', 'Nf6', 'Bg5', 'Be7'], ['b3', 'd5', 'Bb2', 'Bg4', 'h3', 'Bh5', 'g4', 'Bg6', 'Nf3', 'f6'], ['b3', 'c5', 'c4', 'g6', 'Bb2', 'Nf6', 'Nf3', 'Bg7', 'd4', 'cxd4'], ['b3', 'Nc6', 'c4', 'e5', 'e4', 'Bc5', 'Bb2', 'Nf6', 'Bd3', 'd6'], ['b3', 'e5', 'e4', 'd6', 'Bb2', 'Nf6', 'Nc3', 'c6', 'Nf3', 'h6'], ['c4', 'e5', 'Nc3', 'Nc6', 'Nf3', 'Bb4', 'Qc2', 'Nf6', 'd3', 'O-O'], ['b3', 'e5', 'e4', 'Nf6', 'Nc3', 'Bb4', 'Bd3', 'O-O', 'Bb2', 'Nc6'], ['e4', 'c5', 'Nc3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'Nf3', 'e6'], ['c4', 'Nf6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nxc3', 'bxc3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'Qxf3', 'dxe5'], ['Nf3', 'Nf6', 'd4', 'e6', 'Bg5', 'd5', 'e3', 'c5', 'c4', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'f4', 'e6', 'Nf3', 'h5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Bg4', 'd3', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'e3', 'c5', 'dxc5', 'Bxc5', 'cxd5', 'exd5'], ['e4', 'g6', 'Nf3', 'Bg7', 'd4', 'd6', 'h3', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'c4', 'Bxc4'], ['d4', 'Nf6', 'c4', 'e6', 'Bg5', 'Be7', 'e3', 'O-O', 'Bxf6', 'Bxf6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c3', 'Nf6', 'Nf3', 'h6'], ['d4', 'd5', 'Nc3', 'c6', 'Bf4', 'Bf5', 'e3', 'h6', 'Bd3', 'Bxd3'], ['b4', 'b6', 'Bb2', 'Bb7', 'b5', 'c6', 'c4', 'cxb5', 'cxb5', 'd5'], ['d4', 'Nf6', 'c4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'd5', 'cxd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Bc5', 'O-O', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'b3', 'e6', 'Bb2', 'd5', 'exd5', 'exd5'], ['c4', 'Nf6', 'g3', 'c6', 'Bg2', 'e6', 'Nc3', 'd5', 'Rb1', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bb4', 'O-O', 'Bxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'd6', 'dxe5', 'dxe5', 'Bc4', 'Bc5'], ['e4', 'e6', 'Nf3', 'c6', 'g3', 'd5', 'e5', 'Qd7', 'd4', 'Qc7'], ['e3', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'c3', 'Bc5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Nf3', 'Bc5', 'Nc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bb5', 'a6', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'Bb4', 'Bxc6', 'Bxc3'], ['e4', 'c5', 'Nf3', 'e6', 'c4', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nge7'], ['e4', 'd5', 'Nf3', 'dxe4', 'Nh4'], ['d4', 'd5', 'e3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'Bf5', 'Bf1', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'a6', 'Bxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'g3', 'b6', 'Bg2', 'Nf6', 'Ne2', 'd5', 'f3', 'd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'Bb4', 'Bd2', 'O-O'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'e4', 'Nd4', 'Qxd5', 'c3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'Ng5', 'Bd6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'a6', 'Bc4', 'd6', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'f6', 'Nc3', 'c6', 'd3', 'd5', 'exd5', 'cxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bb5', 'Nb8', 'Nxe5', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'Bb4', 'd3', 'Bxc3+'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Bg4', 'Nbd2', 'Nf6', 'Ne5', 'Nbd7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Nf6', 'd4', 'c6', 'c4', 'Qa5+'], ['e4', 'd5', 'e5', 'c5', 'd4', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'g3', 'Be7', 'Bg2', 'c6'], ['e4', 'd5', 'exd5', 'Qxd5', 'd4', 'e5', 'Nf3', 'exd4', 'Qxd4', 'Qxd4'], ['d4', 'd5', 'Nf3', 'Bf5', 'c4', 'e6', 'Nc3', 'c6', 'Qb3', 'Qb6'], ['Nf3', 'Nf6', 'c4', 'c5', 'Nc3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'c6', 'Nc3', 'e6', 'Bf4', 'Bd6'], ['g4', 'd5', 'Bg2', 'c5', 'h3', 'Nc6', 'c3', 'e5', 'd3', 'h5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'O-O'], ['d4', 'd5'], ['d4', 'd5', 'Bf4', 'Bf5', 'c4', 'dxc4', 'e3', 'Nc6', 'Bxc4', 'e6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Bg5', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'b6'], ['Nf3', 'Nc6', 'd4', 'f6', 'Bf4', 'd6', 'e3', 'e5', 'Bg3', 'e4'], ['e4', 'c5', 'c3', 'Nc6', 'Nf3', 'e5', 'd4', 'cxd4', 'cxd4', 'exd4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nge7', 'Be3', 'b6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'Bb5', 'a6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'e5', 'dxe5', 'Qxe5+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'h6'], ['b3', 'd5', 'Bb2', 'Nc6', 'Nf3', 'Qd6', 'd3', 'e5', 'c4', 'd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'O-O', 'd6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'g6', 'a4', 'Bg7'], ['e4', 'e5', 'g3', 'Nf6', 'Bg2', 'c6', 'Ne2', 'd5', 'd3', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Qe7', 'O-O', 'd6', 'c3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd3', 'd5', 'exd5', 'Qxd5'], ['d4', 'd5', 'h3', 'Nc6', 'a3', 'Bf5', 'Bf4', 'f6', 'Nc3', 'e5'], ['d4', 'd5', 'g3', 'Nc6', 'Nf3', 'Bf5', 'c3', 'e5', 'dxe5', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'Nf6', 'Bxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'd4', 'exd4', 'Nxd4', 'Bc5'], ['e3', 'e5', 'd4', 'Nc6', 'Bb5', 'Bd6', 'Bxc6', 'bxc6', 'd5', 'cxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'd6', 'd5', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'c3', 'Nf6', 'd3', 'd5'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'cxd5', 'cxd5', 'Bg5', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'Ng5', 'O-O'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nc6', 'd4', 'Bd6', 'Bg5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'd4', 'd6', 'Nf3', 'Qxe4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'O-O', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Re1', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd4', 'exd4', 'Ng5', 'Nh6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'd4', 'Nf6', 'dxe5', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb3', 'c5', 'a3', 'c4'], ['e3', 'e5', 'Bc4', 'Bc5', 'Qh5', 'Qf6', 'd3', 'd6', 'e4', 'Qxf2+'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Qe2', 'Nc6', 'Nf3', 'Qxe2+'], ['d4', 'c5', 'e3', 'cxd4', 'exd4', 'Nf6', 'Nf3', 'Qa5+', 'Bd2', 'Qb6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'a6', 'a3', 'b5', 'Ba2', 'c5'], ['e4', 'e5', 'Qf3', 'Nc6', 'Bc4', 'Qf6', 'Qd3', 'Bc5', 'f3', 'd6'], ['e4', 'c5', 'a3', 'Nc6', 'Bc4', 'e5', 'd3', 'd6', 'h3', 'a6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Bc5', 'd4', 'Bb6', 'Bc4', 'h6'], ['e4', 'e6', 'Bc4', 'c6', 'd3', 'd5', 'exd5', 'exd5', 'Bb3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bxb4', 'c3', 'Bc5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'h6', 'h3', 'a6', 'a3', 'Nc6'], ['e4', 'e5', 'c4', 'Bc5', 'd3', 'd6', 'Nf3', 'Bg4', 'Be2', 'h6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qf3', 'Qf6', 'Nh3', 'd6', 'd3', 'Bxh3'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'd3', 'Bf6', 'h3', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Nxe5', 'Nxe5', 'd4', 'Bxd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Qf3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nc6', 'd3', 'Qf6', 'c3', 'h6', 'Qf3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd4', 'exd4', 'Ng5', 'Nh6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bd7', 'Bc4', 'a6'], ['e4', 'e5', 'Bc4', 'Qe7', 'Nf3', 'f6', 'd3', 'c6', 'a3', 'b5'], ['e4', 'd6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Nf3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Bc5', 'g3', 'h6', 'Bg2', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['e4', 'e5', 'Bc4', 'Nh6', 'd3', 'd6', 'Bxh6', 'gxh6', 'Qd2', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bxb4', 'c3', 'Bc5'], ['d4', 'e6', 'e4', 'd5', 'e5', 'f6', 'Nf3', 'fxe5', 'Nxe5', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'd6', 'h3', 'h6'], ['e4', 'e5', 'Bc4', 'Nc6', 'd3', 'd6', 'h3', 'Nce7', 'Nf3', 'c5'], ['e4', 'c5', 'a3', 'g6', 'Bc4', 'Bg7', 'd3', 'e6', 'Nc3', 'Ne7'], ['b3', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Na4', 'Bb6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'd4', 'Nd7', 'dxe5', 'Nb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Qf6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nc3', 'd6', 'd3', 'a6', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bb6', 'c3', 'a6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'c3', 'Na5', 'Bb3', 'd6'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'Bc5', 'd3', 'd6', 'h3', 'Qe7'], ['e4', 'g6', 'Bc4', 'Bg7', 'd3', 'a5', 'a3', 'b6', 'Qf3', 'Bb7'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nh3', 'Bc5', 'd3', 'd6', 'Ng5', 'Nh6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'c3', 'Bc5', 'Bg5', 'h6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'Bd3', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'd4', 'Nd6'], ['e4', 'c5', 'Nc3', 'e6', 'Nf3', 'a6', 'Be2', 'Nc6', 'd4', 'cxd4'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'Ne7', 'a3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Qd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nd4', 'Nxd4', 'exd4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'h6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'h6', 'Nc3', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c5', 'cxd5', 'exd5', 'Nf3', 'Nc6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'e5', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'a6', 'd4', 'h6'], ['e4', 'Nf6', 'd3', 'e5', 'Nf3', 'Bb4+', 'c3', 'Ba5', 'b4', 'Bb6'], ['d4', 'e6', 'c4', 'Bb4+', 'Bd2', 'Nc6', 'Bxb4', 'Nxb4', 'a3', 'Nc6'], ['e4', 'g6', 'd4', 'd6', 'Nf3', 'b6', 'Nc3', 'Bg7', 'Bf4', 'Bb7'], ['b4', 'd5', 'Bb2', 'a6', 'e3', 'Nc6', 'a3', 'e5', 'b5', 'axb5'], ['e4', 'c6', 'Nf3', 'd5', 'Nc3', 'e6', 'd3', 'dxe4', 'dxe4', 'Bb4'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nc6', 'd4', 'd5', 'exd5', 'Qxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxd4', 'exd4', 'Qh5', 'g6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nc3', 'e6', 'Bf4', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd3', 'Nf6', 'Nc3', 'g6', 'Be3', 'Bg7'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'd5', 'cxd5', 'Nxd5', 'Bg2', 'Be6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'c5', 'Ne4', 'Nxe4', 'dxe4'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb3', 'e5', 'c3', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd3', 'g6', 'Be3', 'd6', 'Be2', 'Bg7'], ['e4', 'c5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qf5', 'Bc4', 'Qf4'], ['Nf3', 'Nf6', 'e3', 'd5', 'd4', 'Nc6', 'Nc3', 'e6', 'Bb5', 'Bd7'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Nc5', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'b6', 'Be3', 'Nd7', 'Bb5', 'a6'], ['e4', 'd5', 'exd5', 'c6', 'dxc6', 'bxc6', 'd4', 'Bb7', 'Nc3', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'e6', 'Nf3', 'c5', 'c3', 'cxd4'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'e5', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bxb4', 'c3', 'Bc5'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'Nc6', 'Bc4', 'e6', 'e5', 'd5'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'd5', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Bxf7+', 'Kxf7', 'Nxe5+', 'Ke8'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nc6', 'Nc3', 'Nf6'], ['d4', 'Nf6', 'c3', 'g6', 'h3', 'd5', 'Bg5', 'Bg7', 'Bxf6', 'Bxf6'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nd4', 'c3', 'Bc5', 'cxd4', 'Bxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nd4', 'd3', 'Nxf3+'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'a6', 'Bd2', 'Qb6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'd3', 'Nc6', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'a4', 'a6', 'Bxd7+', 'Nxd7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be6'], ['e4', 'd6', 'Nf3', 'e5', 'd4', 'Nc6', 'd5', 'Nd4', 'Nxd4', 'exd4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'e6', 'Bb5+', 'Bd7'], ['c4', 'Nc6', 'b3', 'e5', 'g4', 'Nf6', 'Bg2', 'Nxg4', 'Bxc6', 'bxc6'], ['d3', 'e5', 'g3', 'd5', 'Bg2', 'Nf6', 'c4', 'dxc4', 'Qa4+', 'Bd7'], ['d4', 'Nf6', 'Nf3', 'e6', 'e3', 'b6', 'Bd3', 'Bb7', 'O-O', 'c5'], ['e4', 'c5', 'f4', 'Nc6', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'O-O', 'Nf6', 'Re1', 'e6'], ['d4', 'g6', 'Bf4', 'Bg7', 'e3', 'e6', 'Nf3', 'Nf6', 'c4', 'd5'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'c3', 'Nd7', 'b3', 'Ne7'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'Nf3', 'd6', 'c4', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nd7', 'Bb5', 'a6'], ['d4', 'd6', 'Bf4', 'f6', 'e3', 'h5', 'h3', 'g5', 'Bh2', 'Be6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bd7', 'Nf3', 'Bc6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bd7', 'Nf3', 'Bc6'], ['d4', 'e6', 'Nf3', 'd5', 'Bf4', 'Nc6', 'Nbd2', 'Bd7', 'e3', 'a6'], ['e4', 'e6', 'd3', 'd5', 'Nd2', 'Nf6', 'Ngf3', 'dxe4', 'dxe4', 'Nc6'], ['d4', 'e6', 'c4', 'd5', 'Nf3', 'Nf6', 'Bg5', 'Be7', 'Nc3', 'O-O'], ['d4', 'e6', 'c4', 'b6', 'Nc3', 'Bb4', 'Bd2', 'Bb7', 'Nf3', 'Nf6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bd6', 'Nc3', 'Ne7'], ['d4', 'c5', 'c3', 'cxd4', 'cxd4', 'Nf6', 'Nc3', 'g6', 'e4', 'd6'], ['d4', 'e6', 'e4', 'd5', 'f3', 'Nf6', 'Bg5', 'Be7', 'Bxf6', 'Bxf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Bd7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'Bf4', 'Bg7', 'e3', 'O-O'], ['Nf3', 'e6', 'c3', 'Nf6', 'd4', 'd5', 'Nbd2', 'Be7', 'Qc2', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bd6', 'c3', 'Nf6', 'O-O', 'Nxe4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'c4', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'd5', 'Bb5', 'f6', 'd4', 'dxe4'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nf3', 'Bf5', 'c5', 'e6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e6', 'Bxc4', 'Nf6', 'Nf3', 'Be7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e5', 'Nfd7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Be3', 'Qc7'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'e6', 'c4', 'Ne7', 'Nf3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nb3', 'Bb6'], ['e4', 'e6', 'd4', 'c5', 'd5', 'Nf6', 'd6', 'Nxe4', 'Bf4', 'Qa5+'], ['e4', 'e5', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'a3', 'd6', 'd3', 'Be6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'e3', 'c5', 'cxd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bb5', 'd6', 'd3', 'h6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'c4', 'c6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Bc4', 'f5', 'exf5', 'Nf6', 'Nf3', 'e4', 'Ng5', 'd5'], ['d4', 'Nf6', 'e3', 'e6', 'a3', 'c5', 'c3', 'd5', 'b4', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Bc5', 'Bxc6', 'dxc6'], ['Nf3', 'Nc6', 'd4', 'd5', 'c4', 'e6', 'e3', 'Be7', 'Be2', 'Nf6'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'Nc6', 'Bf4', 'Bb4+'], ['d4', 'e6', 'c4', 'd5', 'Nf3', 'c5', 'cxd5', 'exd5', 'e3', 'a6'], ['d3', 'd5', 'Nf3', 'c5', 'Bf4', 'Nf6', 'e3', 'Qa5+', 'Nc3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'O-O', 'd6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'c6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'Qc2', 'Bc5', 'b4', 'Bb6'], ['d4', 'c5', 'e4', 'cxd4', 'Qxd4', 'Nc6', 'Qd5', 'Nf6', 'Qd3', 'd6'], ['e4', 'e5', 'f4', 'f6', 'Nf3', 'Nc6', 'c3', 'Bc5', 'd4', 'Bb6'], ['e4', 'e6', 'Qf3', 'd5', 'd4', 'Nc6', 'c3', 'dxe4', 'Qxe4', 'Nf6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'Bg4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'g6', 'Bf4', 'Bg7', 'e3', 'f6'], ['d4', 'd6', 'c4', 'e5', 'd5', 'f5', 'Nc3', 'g5', 'Qd2', 'Bg7'], ['d4', 'e6', 'c4', 'd6', 'Nc3', 'Be7', 'Bf4', 'Nd7', 'e3', 'c6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['e4', 'c5', 'c4', 'd6', 'Nc3', 'Nc6', 'Nf3', 'Bg4', 'Be2', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'a3', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Be7'], ['d4', 'd5', 'Nc3', 'Nf6', 'g3', 'Nc6', 'Bg2', 'Bg4', 'Nf3', 'e6'], ['d4', 'Nf6', 'Nc3', 'e6', 'e4', 'd5', 'exd5', 'exd5', 'Nf3', 'c5'], ['e4', 'Nc6', 'Bb5', 'e5', 'Bxc6', 'bxc6', 'd3', 'd5', 'Nc3', 'Nf6'], ['e3', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['d4', 'Nf6', 'Nc3', 'd5', 'Nf3', 'h6', 'Qd3', 'e6', 'e3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'O-O', 'O-O'], ['e4', 'c5', 'd3', 'Nc6', 'Nf3', 'e5', 'Nbd2', 'Nf6', 'g3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4+', 'c3', 'Ba5'], ['d4', 'Nf6', 'Nc3', 'e6', 'e4', 'd5', 'e5', 'Nfd7', 'Nf3', 'c5'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nce7', 'Nf3', 'd6', 'c4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Qe2', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'O-O', 'Nc6', 'Ng5', 'd5'], ['e4', 'c5', 'c4', 'Nc6', 'Nc3', 'e5', 'Nf3', 'Nf6', 'Nd5', 'Nxe4'], ['e4', 'c6', 'c4', 'Na6', 'Nc3', 'Nc7', 'a3', 'b6', 'd4', 'Bb7'], ['e4', 'd6', 'Nf3', 'f6', 'd4', 'e5', 'Nh4', 'g5', 'Qh5+', 'Kd7'], ['f4', 'c5', 'c4', 'Nc6', 'd3', 'e5', 'Nf3', 'd6', 'b3', 'Be7'], ['e4', 'c5', 'd4', 'Nc6', 'c3', 'cxd4', 'cxd4', 'd5', 'exd5', 'Qxd5'], ['e4', 'e6', 'Nf3', 'Be7', 'd4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6'], ['d4', 'c5', 'c3', 'cxd4', 'cxd4', 'Nf6', 'Nf3', 'g6', 'Bd2', 'Bg7'], ['e4', 'c5', 'c4', 'Nc6', 'Nc3', 'e6', 'Nf3', 'Nge7', 'g3', 'Nd4'], ['e4', 'b6', 'Nc3', 'e6', 'Be2', 'a6', 'Bf3', 'd5', 'exd5', 'exd5'], ['e4', 'd5', 'exd5', 'c6', 'Nf3', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'a3', 'Bc5', 'h3', 'd5'], ['e4', 'e5', 'Nf3', 'Bb4', 'Nxe5', 'Nf6', 'c3', 'Bc5', 'd4', 'Bd6'], ['d4', 'Nf6', 'c4', 'c6', 'Nc3', 'd5', 'Qc2', 'Bg4', 'f3', 'Bh5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Bd3', 'Bd7'], ['e4', 'e5', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'd6', 'h3', 'Nc6', 'a3', 'Be6'], ['e4', 'c5', 'Qh5', 'Nf6', 'Qxc5', 'd6', 'Qe3', 'Nc6', 'a3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd4', 'Nxe4', 'O-O', 'Bd6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'c5', 'e3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'f5', 'd3', 'f4', 'Nc3', 'Nd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Nf3', 'Bc5', 'c3', 'Bb6'], ['e4', 'e6', 'd4', 'c6', 'Nc3', 'Ne7', 'Nf3', 'd6', 'Bc4', 'b5'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Be3', 'Bg7'], ['e4', 'e5', 'f3', 'Bc5', 'Nc3', 'Nf6', 'd4', 'exd4', 'Nd5', 'O-O'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Qd6', 'h3', 'Nf6'], ['e4', 'c5', 'Nc3'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'e5', 'dxe5', 'Bb4+', 'c3', 'Bc5'], ['e4', 'e5', 'Nf3', 'f6', 'Nc3', 'Nh6', 'Bc4', 'd5', 'exd5', 'f5'], ['e4', 'b6', 'Nf3', 'd6', 'Bc4', 'Nh6', 'd3', 'Bb7', 'Nc3', 'Nd7'], ['e4', 'e5', 'Nf3', 'f5', 'exf5', 'Bc5', 'Qe2', 'Nh6', 'Qxe5+', 'Qe7'], ['e4', 'e5', 'Nf3', 'f5', 'd4', 'd6', 'exf5', 'Bxf5', 'dxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'Nc6'], ['e3', 'e5', 'd4', 'e4', 'Nc3', 'd5', 'Qh5', 'Nf6', 'Qe5+', 'Be6'], ['e4', 'e6', 'e5', 'Qh4', 'Nf3', 'Qe4+', 'Be2', 'Nc6', 'd3', 'Qg6'], ['e4', 'd5', 'e5', 'Nc6', 'd4', 'e6', 'Nf3', 'Bb4+', 'c3', 'Ba5'], ['e4', 'Nc6', 'Bc4', 'e5', 'Nf3', 'a6', 'd4', 'b5', 'Bb3', 'exd4'], ['d4', 'Nc6', 'e4', 'b6', 'd5', 'Ne5', 'f4', 'Ng6', 'f5', 'Ne5'], ['e4', 'e5', 'd4', 'Bd6', 'd5', 'c6', 'Nc3', 'Nf6', 'Bg5', 'h6'], ['e4', 'h5', 'Be2', 'd5', 'Bxh5', 'g6', 'Bxg6', 'fxg6', 'exd5', 'Qxd5'], ['e4', 'e5', 'd3', 'Nf6', 'b3', 'd5', 'exd5', 'Nxd5', 'Bb2', 'f6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'd5', 'Nb4', 'Na3', 'Nxe4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'O-O', 'h6', 'Re1', 'c6'], ['e4', 'c5', 'Qh5', 'g6', 'Qxc5', 'Nc6', 'Qc3', 'Nf6', 'Bb5', 'a6'], ['d3', 'e5', 'd4', 'Qh4', 'e3', 'Bb4+', 'Bd2', 'Bxd2+', 'Nxd2', 'exd4'], ['e4', 'c5', 'Nf3', 'Nf6', 'Bc4', 'e6', 'd3', 'd5', 'exd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'h6', 'Bxc6', 'dxc6', 'd3', 'Bg4'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'Nf3', 'c5'], ['e4', 'c5', 'Nf3', 'e6', 'c4', 'a6', 'Nc3', 'Qc7', 'Be2', 'd6'], ['e4', 'c5', 'b4', 'cxb4', 'a3', 'e5', 'Nf3', 'bxa3', 'Bxa3', 'Bxa3'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'd5', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6'], ['e4', 'd6', 'd4', 'e6', 'Nf3', 'h6', 'Be3', 'a6', 'Be2', 'Be7'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'g6', 'd4', 'cxd4', 'cxd4', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Bd7'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bc4', 'g6', 'a3', 'Bg7', 'd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb3', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'g6', 'Ng5', 'e6', 'd3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nge7', 'Nc3', 'g6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'a3', 'Bxc3+'], ['e4', 'c5', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'cxd4', 'cxd4', 'Nc6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'Qc7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bd6', 'dxe5', 'Nxe5', 'Nxe5', 'Bxe5'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'Bf4', 'Be7', 'e3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'Nf6', 'Nf3', 'Bf5'], ['e4', 'g6', 'Nf3', 'Bg7', 'd4', 'b6', 'c4', 'Bb7', 'Nc3', 'Nc6'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nf3', 'e6', 'a3', 'b6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nce7', 'c4', 'Bg4'], ['e4', 'Nc6', 'Nf3', 'g6', 'd4', 'Bg7', 'Be3', 'e6', 'c4', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nc3', 'Bg7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'd3', 'g6', 'Ng5', 'Ne5'], ['e4', 'g6', 'Nf3', 'Bg7', 'd4', 'f5', 'exf5', 'gxf5', 'Ne5', 'Bxe5'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'd5', 'Bb5', 'Bd6', 'f4', 'Bd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['c4', 'Nf6', 'd3', 'e5', 'e4', 'c5', 'h3', 'Be7', 'Nf3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'Bf5', 'h3', 'e6', 'Bh2', 'Bb4'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'a3', 'Ba5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'O-O', 'd5', 'exd5', 'exd5'], ['e4', 'g6', 'd4', 'Bg7', 'Nc3', 'd6', 'Nf3', 'Nf6', 'Be3', 'Ng4'], ['e4', 'e5', 'Nf3', 'Bd6', 'c3', 'Nf6', 'd4', 'exd4', 'e5', 'Bc5'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bg5', 'e6', 'Bxf6', 'Qxf6', 'e3', 'c5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bg4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'h3', 'Nf6'], ['e4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5'], ['e4', 'Nf6', 'Nc3', 'd5', 'e5', 'Ne4', 'Nxe4', 'dxe4', 'd4', 'c5'], ['e3', 'c5', 'c3', 'e5', 'Qh5', 'd6', 'Bb5+', 'Nc6', 'Bxc6+', 'bxc6'], ['e4', 'e6', 'd4', 'c6', 'Nc3', 'Bb4', 'a3', 'Ba5', 'b4', 'Bb6'], ['d4', 'Nf6', 'Bf4', 'e6', 'Nf3', 'd5', 'e3', 'c5', 'c3', 'Be7'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Nc3', 'Bb4', 'Bd2', 'd6'], ['e4', 'd5', 'e5', 'Nc6', 'd4', 'Bf5', 'a3', 'e6', 'h3', 'Qh4'], ['c4', 'e5', 'g3', 'd6', 'Bg2', 'Nf6', 'Nc3', 'a6', 'Nf3', 'h6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'a3', 'd5', 'exd5', 'Nxd5'], ['g3', 'e5', 'Bg2', 'd5', 'e3', 'Nf6', 'Ne2', 'c6', 'O-O', 'h5'], ['g3', 'e5', 'd3', 'd5', 'Bg2', 'Nc6', 'e4', 'd4', 'Nf3', 'h6'], ['e4', 'Nc6', 'Bc4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Bb3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd3', 'Bd7', 'O-O', 'h6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Qf6', 'c3', 'g6', 'Qf3', 'Bh6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'e5', 'Nd5', 'Bc4', 'c6'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'O-O', 'Ngf6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'd3', 'h6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'h6', 'Bc4', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd3', 'Nf6', 'Nc3', 'Bb4'], ['g3', 'e5', 'Bg2', 'd5', 'd3', 'c6', 'c3', 'h6', 'h3', 'Nf6'], ['d4', 'd5', 'Nc3', 'e6', 'Bf4', 'a6', 'Nf3', 'Nc6', 'e4', 'h6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nf3', 'h6', 'O-O', 'Nc6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Qh4', 'Qf3', 'Nf6', 'd3', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'c5', 'Bc4', 'd6', 'd3', 'Nc6', 'h3', 'a6', 'a3', 'g6'], ['e4', 'e5', 'Nc3', 'Bc5', 'Nf3', 'd6', 'a3', 'Bg4', 'Bb5+', 'c6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Be7', 'h3', 'c6', 'Nc3', 'd5'], ['c4', 'e5', 'Nf3', 'Nc6', 'e3', 'Nf6', 'Nc3', 'b6', 'a3', 'Bb7'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'h6', 'Nc3', 'Nf6', 'h3', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'd4', 'exd4', 'c3', 'Nf6'], ['d4', 'd5', 'Nc3', 'e6', 'e4', 'dxe4', 'Nxe4', 'Nc6', 'Be3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'd3', 'Bc5', 'h3', 'b6'], ['d4', 'e6', 'e4', 'c6', 'Nf3', 'b5', 'Be2', 'Be7', 'O-O', 'Bb7'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'd6', 'Nc3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'd6', 'h3', 'h6', 'a3', 'Nf6'], ['e4', 'e5', 'Nc3', 'Nc6', 'h4', 'Bc5', 'Nf3', 'Nf6', 'Bb5', 'd5'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nc3', 'Nc6', 'Nf3', 'h6', 'O-O', 'd6'], ['e4', 'e5', 'd3', 'Bc5', 'c4', 'Nc6', 'Nf3', 'd6', 'Be2', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Nf3', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qf6', 'c3', 'Bc5', 'Bxc6', 'Qxc6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'c4', 'Nc6'], ['e4', 'c5', 'b4', 'd6', 'bxc5', 'dxc5', 'Nf3', 'a6', 'a4', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'f6'], ['Nf3', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'c3', 'Bb6'], ['Nf3', 'd5', 'd4', 'e6', 'c4', 'c5', 'e3', 'cxd4', 'Nxd4', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'c5', 'a3', 'Bxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Nxd5', 'Nf3', 'Bg4', 'c4', 'Nb6'], ['e4', 'e5', 'Nf3', 'Bd6', 'd4', 'exd4', 'Nxd4', 'Bb4+', 'c3', 'Bc5'], ['e4', 'd5', 'Qf3'], ['e4', 'd6', 'Bc4', 'f5', 'exf5', 'Nf6', 'd3', 'd5', 'Bb3', 'Bxf5'], ['e4', 'e5', 'Bc4', 'c6', 'Nf3', 'f6', 'd3', 'd5', 'exd5', 'cxd5'], ['d4', 'd5', 'e3', 'Nh6', 'Nc3', 'Ng4', 'Bb5+', 'c6', 'Be2', 'Na6'], ['e4', 'e5', 'Qf3', 'Nf6', 'Bc4', 'h5', 'Ne2', 'Ng4', 'O-O', 'Qh4'], ['g3', 'e5', 'Bg2', 'd5', 'Nf3', 'c5', 'Nxe5', 'a5', 'e3', 'f5'], ['e4', 'e6', 'Bc4', 'd5', 'Qh5', 'dxc4', 'Qf5', 'exf5', 'exf5', 'Qe7+'], ['e4', 'e5', 'Nc3', 'Bc5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Nxd8'], ['e3', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Be7', 'Qxh8'], ['e3', 'g6', 'b3', 'Bg7', 'c3', 'c5', 'Bb2', 'Nc6', 'h3', 'd5'], ['e3', 'c5', 'Qh5', 'e6', 'b3', 'Nf6', 'Qe2', 'd5', 'd3', 'Nc6'], ['e4', 'c5', 'd3', 'Nc6', 'g3', 'g6', 'Bg2', 'Bg7', 'Nf3', 'd6'], ['e4', 'c5', 'd3', 'Nc6', 'f4', 'g6', 'Nf3', 'Bg7', 'Be2', 'd6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Qc7'], ['e4', 'c5', 'd3', 'd6', 'Nd2', 'Nc6', 'Ngf3', 'Nf6', 'Be2', 'g6'], ['d4', 'Nf6', 'Bg5', 'd5', 'e3', 'c5', 'c3', 'Qb6', 'Qb3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'Be7', 'Be2', 'O-O'], ['d4', 'Nf6', 'Bf4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'h3', 'g6'], ['d4', 'Nf6', 'Nf3', 'g6', 'c4', 'c5', 'd5', 'Bg7', 'Nc3', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Bd2', 'b6', 'Nc3', 'Bb7', 'Qc2', 'Be7'], ['d4', 'Nf6', 'Nf3', 'g6', 'c4', 'c5', 'd5', 'b5', 'Nc3', 'b4'], ['d4', 'Nf6', 'Nf3', 'e6', 'g3', 'b6', 'Bg2', 'Bb7', 'O-O', 'Be7'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'b6', 'g3', 'Bb7', 'Bg2', 'd5'], ['d4', 'Nf6', 'Nf3', 'g6', 'c4', 'Bg7', 'Nc3', 'O-O', 'e4', 'd6'], ['d4', 'Nf6', 'e3', 'g6', 'f4', 'Bg7', 'Nf3', 'd6', 'Bd3', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'c6', 'Bg5', 'Nbd7'], ['d4', 'Nf6', 'Nc3', 'd5', 'e4', 'dxe4', 'f3', 'exf3', 'Nxf3', 'Bg4'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'Nf3', 'g6', 'cxb5', 'a6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'e6', 'g3', 'Nbd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bd3', 'a6'], ['c4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'e4', 'Nxe4', 'Nf6', 'Nxf6+', 'Qxf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'd6', 'O-O', 'Bg4'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nc6', 'c3', 'Nf6'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'b6', 'Nf3', 'Bb7', 'Bf4', 'e6'], ['d4', 'Nf6', 'c4', 'e6', 'a3', 'd5', 'Nc3', 'Be7', 'e3', 'O-O'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'd5', 'Bb5+', 'Nc6', 'Ne5', 'Bd7'], ['e4', 'c5', 'd4', 'd6', 'Nf3', 'g6', 'h4', 'Bg7', 'h5', 'cxd4'], ['e4', 'c5', 'Nc3', 'Nf6', 'Nf3', 'd6', 'd3', 'Nc6', 'a3', 'a6'], ['e4', 'c5', 'd4', 'b6', 'dxc5', 'bxc5', 'Bc4', 'Nc6', 'Qd5', 'e6'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Nc6', 'd3', 'a6'], ['d4', 'd6', 'e4', 'e5', 'dxe5', 'Bd7', 'Bf4', 'dxe5', 'Bxe5', 'Nc6'], ['Nf3', 'e6', 'e4', 'Bc5', 'd3', 'h6', 'g3', 'Bxf2+', 'Kxf2', 'c6'], ['e4', 'c6', 'Nc3', 'd5', 'exd5', 'cxd5', 'Nxd5', 'Qxd5', 'c3', 'Nc6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'e6', 'Nf3', 'g6', 'h3', 'f6'], ['d4', 'd5', 'c4', 'e6', 'a3', 'Nf6', 'Nc3', 'Nbd7', 'e3', 'a6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'a3', 'd5', 'exd5', 'Nxd5'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'e3', 'Bb4', 'a3', 'Bxc3+'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'a3', 'Nf6', 'e3', 'Nbd7'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb3', 'Nc6', 'd3', 'g6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nf6', 'e3', 'Bf5', 'h3', 'e6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'e6', 'Nf3', 'g6', 'Be3', 'Bg7'], ['d4', 'd6', 'c4', 'Nf6', 'Nc3', 'c5', 'e3', 'e6', 'Nf3', 'd5'], ['e4', 'c6', 'Nf3', 'd5', 'Nc3', 'a6', 'exd5', 'cxd5', 'Nd4', 'e6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'h3', 'a6', 'Nc3', 'Nf6'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'd4', 'Bc4', 'b5', 'Bd3', 'a6'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'Nc6', 'Nc3', 'e6', 'Nf3', 'Bb4'], ['d4', 'Nf6', 'c4', 'g6', 'e3', 'Bg7', 'Bd3', 'O-O', 'Nf3', 'd5'], ['d4', 'b6', 'e4', 'Bb7', 'Nc3', 'Nf6', 'Bd3', 'd5', 'f3', 'dxe4'], ['Nf3', 'c5', 'g3', 'Nf6', 'Bg2', 'Nc6', 'O-O', 'd5', 'd4', 'e6'], ['e3', 'c5', 'Bb5', 'Nc6', 'Qf3', 'd5', 'h4', 'Nf6', 'Rh3', 'g6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'e5', 'Nd5', 'd4', 'd6'], ['e4', 'e5', 'd3', 'Nf6', 'g3', 'Nc6', 'c3', 'Bc5', 'f3', 'O-O'], ['e4', 'e5', 'Nf3', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'd3', 'Bb4+'], ['e4', 'e5', 'd3', 'Nf6', 'Bg5', 'Nc6', 'Qd2', 'Bc5', 'c3', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'Nc3', 'Nc6', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nd4', 'Bc4', 'Nf6', 'Nxe5', 'Bc5'], ['e4', 'd5', 'exd5', 'Qxd5', 'd4', 'e5', 'Nf3', 'e4', 'Ne5', 'f6'], ['e4', 'd5', 'exd5', 'Qxd5', 'd4', 'Qe4+', 'Ne2', 'Bg4', 'h3', 'Bxe2'], ['e4', 'e5', 'f4', 'exf4', 'd4', 'd6', 'Bxf4', 'c5', 'Nf3', 'Nc6'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'Nc6', 'Nc3', 'e5', 'd5', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'Nc3', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nh6', 'd3', 'Bc5', 'h3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nf6', 'Nf3', 'e6'], ['e4', 'c5', 'd4', 'Nc6', 'dxc5', 'Nf6', 'Nf3', 'Nxe4', 'Bf4', 'Nxc5'], ['g3', 'e5', 'Nf3', 'Nc6', 'Bg2', 'Bc5', 'O-O', 'Nf6', 'c4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Bd3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'd3', 'Ng4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Nf6', 'd3', 'Bg4'], ['e4', 'Nc6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Bg4', 'Be3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'Bc5', 'Bd3', 'Nf6', 'h3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Nge2', 'Nf6', 'd4', 'Qa5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'c6', 'Bc4', 'a5', 'd3', 'h6'], ['e4', 'a5', 'd4', 'b6', 'Bc4', 'Bb7', 'Qf3', 'e6', 'd5', 'Ne7'], ['a4', 'e5', 'b3', 'd5', 'Bb2', 'e4', 'e3', 'Nf6', 'Ne2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'd6'], ['c4', 'e5', 'Nc3', 'Nc6', 'e4', 'Nf6', 'd3', 'd6', 'a3', 'g6'], ['d4', 'd6', 'e4', 'e6', 'Nf3', 'Qe7', 'e5', 'dxe5', 'dxe5', 'Nc6'], ['d4', 'd5', 'Nf3', 'e6', 'Bf4', 'Nc6', 'e3', 'h6', 'Bb5', 'Bd7'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nd4', 'c3', 'Nb5', 'Bxb5', 'c6'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'f6', 'e3', 'e5', 'dxe5', 'fxe5'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'e6', 'e3', 'Nf6', 'Bb5', 'Qd7'], ['d4', 'd5', 'Nf3', 'Nf6', 'Be3', 'Nc6', 'Ne5', 'Nxe5', 'dxe5', 'Ne4'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f3', 'Nbd7'], ['e4', 'd5', 'e5', 'e6', 'd4', 'Bb4+', 'c3', 'Ba5', 'b4', 'Bb6'], ['d4', 'e6', 'Nf3', 'd5', 'Bf4', 'Bd6', 'Ne5', 'Nf6', 'e3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd4', 'd5', 'dxe5', 'Nxe4'], ['e4', 'c5', 'Qf3', 'a6', 'Bc4', 'e6', 'd3', 'Nc6', 'Qg3', 'Nf6'], ['e4', 'b6', 'd4', 'Ba6', 'Nf3', 'Bxf1', 'Rxf1', 'Nf6', 'Bg5', 'Ng4'], ['e4', 'c5', 'Bc4', 'a6', 'Nf3', 'Nc6', 'Nc3', 'e6', 'd4', 'cxd4'], ['e4', 'e5', 'Bc4', 'Bb4', 'c3', 'Bc5', 'd4', 'exd4', 'cxd4', 'Bb4+'], ['e4', 'd6', 'd4', 'Nc6', 'Nf3', 'Bg4', 'h3', 'Bh5', 'Be2', 'Nf6'], ['e3', 'e5', 'Bc4', 'd5', 'Bb3', 'Nf6', 'Nf3', 'Bg4', 'h3', 'Bh5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Bf5', 'Nc3', 'e6', 'Bxc4', 'Bb4'], ['e4', 'c5', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'c4', 'd3', 'cxb3'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Ne4', 'Nxd5', 'e6', 'Nc3', 'Ng5'], ['e4', 'e6', 'h3', 'd5', 'e5', 'c5', 'd4', 'Nc6', 'c3', 'Qb6'], ['c4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'd4', 'O-O', 'g3', 'd6'], ['b4', 'Nf6', 'Bb2', 'e6', 'a3', 'a5', 'b5', 'c6', 'c4', 'd5'], ['c4', 'Nf6', 'Nc3', 'e6', 'd4', 'Bb4', 'g3', 'Bxc3+', 'bxc3', 'O-O'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Be2', 'Nf6', 'O-O', 'Bd6'], ['c4', 'e6', 'Nc3', 'Nf6', 'e4', 'd6', 'd4', 'Be7', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['c4', 'c5', 'Nc3', 'd6', 'Nf3', 'h6', 'g3', 'g5', 'Bg2', 'e6'], ['d4', 'Nf6', 'Nc3', 'd5', 'Bf4', 'c5', 'Nb5', 'Qa5+', 'Nc3', 'cxd4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Be2', 'Nf6', 'O-O', 'Bd6'], ['e3', 'e5', 'd3', 'd5', 'g4', 'h5', 'Bh3', 'Nf6', 'g5', 'Bxh3'], ['e4', 'c5', 'Nf3', 'e6', 'b3', 'Nc6', 'Bb2', 'Nf6', 'Qe2', 'd5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Nf6', 'Be2', 'e5', 'd3', 'c5'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'g3', 'Bb4', 'Bg2', 'Bxc3'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'Nf6', 'Be2', 'c6'], ['d4', 'Nf6', 'Nc3', 'd5', 'Nf3', 'c5', 'e3', 'Nc6', 'Bb5', 'e6'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'exf4', 'd4', 'd5', 'e5', 'Bg4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'cxd4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Be2', 'Nf6', 'Nf3', 'Bg4'], ['e4', 'f6', 'd4', 'Kf7', 'Nf3', 'b6', 'Bc4+', 'e6', 'O-O', 'Bb7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qh5', 'Qxh5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'a6', 'Bxc6', 'dxc6'], ['e4', 'e6', 'Nf3', 'd6', 'd4', 'g6', 'Be3', 'Bg7', 'Bd3', 'Ne7'], ['c4', 'f5', 'Nc3', 'Nf6', 'd3', 'e5', 'e4', 'Bb4', 'exf5', 'O-O'], ['e4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nd7', 'Nf3', 'Ngf6', 'Ng3', 'g6'], ['e4', 'e6', 'Qe2', 'g6', 'g3', 'Bg7', 'Bg2', 'd6', 'f4', 'h6'], ['e4', 'e5', 'Nf3'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'Nf6', 'Bc4', 'c6'], ['c4', 'Nf6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'Nf3', 'Nc6', 'e4', 'Nb6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'O-O', 'Bg5', 'd6'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'e3'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'Bg5', 'Be7'], ['c4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'Nc6', 'g3', 'Bc5', 'Bg2', 'd6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'Bd3', 'c5', 'exd5', 'exd5'], ['c4', 'e5', 'Nc3', 'd6', 'Nf3', 'h6', 'd4', 'exd4', 'Nxd4', 'c5'], ['e4', 'e6', 'f4', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nf3', 'c5'], ['e4', 'c6', 'd4', 'd5', 'f3', 'dxe4', 'fxe4', 'e5', 'c3', 'Qh4+'], ['d4', 'Nf6', 'Bf4', 'd5', 'e3', 'c5', 'c4', 'Nc6', 'Nf3', 'Bg4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'h3', 'Nf6'], ['c4', 'c5', 'h4', 'd6', 'g3', 'e5', 'Nf3', 'Be6', 'Qa4+', 'Qd7'], ['e3', 'd5'], ['e4', 'c5', 'd4', 'h5', 'dxc5', 'g5', 'Bxg5', 'f6', 'Be3', 'b5'], ['d4', 'c5', 'dxc5', 'Qa5+', 'Nc3', 'e5', 'b4', 'Qd8', 'e4', 'Qh4'], ['d4', 'e6', 'c4', 'd5', 'Nf3', 'Nf6', 'g3', 'c5', 'cxd5', 'Nxd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Qb6', 'Nxc6', 'dxc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bd7', 'Nc3', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nc6', 'e3', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bb4', 'Ng5', 'd5'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'g6', 'Bb5', 'Bg7', 'O-O', 'a6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'Nf6', 'Be2', 'Bf5'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nc6', 'd4', 'Nf6', 'Nc3', 'd5'], ['e4', 'e5', 'd3', 'Nf6', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'Bd2', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'c5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['Nc3', 'd6', 'e4', 'e5', 'Bb5+', 'c6', 'Bc4', 'Nf6', 'Nd5', 'cxd5'], ['e4', 'Nc6', 'd4', 'Nb4', 'Bd2', 'Nc6', 'd5', 'Ne5', 'Bc3', 'Ng6'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bb5', 'a6', 'O-O', 'axb5', 'Na3', 'Nd4'], ['Nc3', 'e5', 'e4', 'Nf6', 'f3', 'Bc5', 'Nge2', 'Nh5', 'd4', 'Bxd4'], ['e4', 'e6', 'f4'], ['e4', 'Nf6', 'Nf3', 'e5', 'Bc4', 'd6', 'd3', 'Bg4', 'O-O', 'Nc6'], ['e4', 'e5', 'Bb5', 'g6', 'Nf3', 'Bg7', 'd3', 'c6', 'Bg5', 'Bf6'], ['e4', 'e5', 'Nf3', 'Bb4', 'Nxe5', 'Nc6', 'c3', 'Nxe5', 'd4', 'Nc4'], ['e4', 'e5', 'Bb5', 'Bb4', 'a3', 'Ba5', 'c3', 'c5', 'd3', 'Ne7'], ['d4', 'b5', 'h3', 'Nc6', 'Nf3', 'Nb4', 'c3', 'Nc6', 'a3', 'Nh6'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'exd4', 'Nxd4', 'Bb4+', 'Bd2', 'Qxd4'], ['e4', 'c5', 'Qh5', 'Nc6', 'Qxc5', 'e6', 'Qc3', 'Bb4', 'Qf3', 'Ne5'], ['e4', 'e5', 'Qf3', 'Qf6', 'Nc3', 'Qxf3', 'Nxf3', 'c6', 'Nxe5', 'd6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Qf6', 'Nf3', 'Nb4', 'Kd1', 'd6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Bc5', 'Nc3', 'c6', 'd3', 'b5'], ['e3', 'e5', 'c4', 'Qh4', 'Nf3', 'Qf6', 'Nc3', 'c6', 'a3', 'd6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Nf6', 'Qf3', 'Nd4', 'Qd3', 'Bc5'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Ne7', 'Qxh8', 'Nbc6', 'Qxh7', 'b6'], ['e4', 'e5', 'Bc4', 'Qh4', 'd3', 'Bc5', 'Qf3', 'd6', 'h3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Qf6', 'c3', 'Bc5', 'd4', 'exd4', 'cxd4', 'Bb4+'], ['e4', 'c5', 'Qh5', 'b6', 'Bc4', 'e6', 'Nh3', 'Nf6', 'Qf3', 'Bb7'], ['e4', 'c5', 'Qh5', 'd6', 'Bc4', 'e6', 'Nh3', 'Nf6', 'Qf3', 'h6'], ['e4', 'e5', 'Nf3', 'Qf6', 'b3', 'd5', 'd3', 'd4', 'Bb2', 'Bb4+'], ['d4', 'Nc6', 'e4', 'e5', 'c3', 'exd4', 'cxd4', 'Qh4', 'Nc3', 'Bb4'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Qf6', 'd4', 'd6', 'Nc3', 'c6'], ['e4', 'c5', 'Qh5', 'e6', 'Nh3', 'Nf6', 'Qf3', 'Nc6', 'c3', 'Ne5'], ['e4', 'e5', 'f4', 'Qh4+', 'g3', 'Qf6', 'd4', 'exf4', 'Bxf4', 'Bb4+'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Qe7', 'd3', 'Nf6', 'Qf3', 'Nd4'], ['b4', 'e5', 'Bb2', 'Qf6', 'd4', 'Bxb4+', 'Nd2', 'exd4', 'e3', 'dxe3'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Qf3', 'Nf6', 'h3', 'Nc6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'c3', 'Bg7'], ['e4', 'e6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Qe7', 'Nh3', 'h6', 'd3', 'Nd4'], ['e4', 'e5', 'Nf3', 'Qf6', 'd3', 'Bc5', 'Bg5', 'Qg6', 'h4', 'h6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Bc5', 'O-O', 'd6', 'd3', 'Qg6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qf3', 'Bc5', 'Bc4', 'O-O', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Bc5', 'O-O', 'd6', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'Qf6', 'a4', 'Bc5', 'c3', 'Nh6', 'b4', 'Bf8'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'c5', 'e3', 'c4', 'c3', 'a6'], ['e4', 'd6', 'd4', 'e6', 'Nc3', 'a6', 'Bf4', 'Be7', 'Nf3', 'b6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'g6', 'Bb5', 'Bh6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'gxf3', 'dxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bb4+', 'c3', 'dxc3'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'd6', 'Qxe4', 'dxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'Nd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Bg5', 'd6', 'Bxf6', 'Qxf6'], ['e4', 'e5', 'd3', 'Nc6', 'Nc3', 'Bb4', 'Bd2', 'd6', 'Nf3', 'Nf6'], ['e4', 'e5', 'f4', 'Nc6', 'c3', 'exf4', 'd4', 'Qh4+', 'g3', 'fxg3'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd7', 'Nxe5', 'Qe6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'f5', 'exf5', 'e4', 'Ke2', 'exf3+'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bb4+', 'c3', 'Bd6'], ['d4', 'd5', 'Nc3', 'e6', 'e4', 'Nc6', 'exd5', 'Nxd4', 'dxe6', 'Nxe6'], ['d4', 'd5', 'e3', 'b6', 'Nc3', 'c5', 'dxc5', 'bxc5', 'Nxd5', 'e6'], ['e4', 'b6', 'Nc3', 'Nc6', 'd4', 'Nb4', 'Nf3', 'e6', 'Bd2', 'd5'], ['d4', 'b6', 'd5', 'Nf6', 'c4', 'e5', 'Nc3', 'c6', 'e4', 'cxd5'], ['d4', 'd5', 'Nc3', 'e6', 'Nf3', 'Nc6', 'Bf4', 'Nxd4', 'Nxd4', 'Qf6'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Be7', 'Qxh8', 'd6', 'Qxg8+', 'Bf8'], ['d4', 'd5', 'Nc3', 'e6', 'Nf3', 'Nc6', 'e3', 'Nf6', 'Bd3', 'Qd6'], ['e4', 'e6', 'Nf3', 'c5', 'd4', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'cxd4', 'cxd4', 'a6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c6', 'cxd5', 'cxd5', 'e4', 'Bb4'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Nf6', 'Nf3', 'Bg4', 'h3', 'Bh5'], ['e4', 'e5', 'Bb5', 'c6', 'Ba4', 'b5', 'Bb3', 'Nf6', 'Nc3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd4', 'Bb4', 'Bd2', 'd5'], ['e3', 'd5', 'd4', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'e6', 'Nb5', 'a6'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'f6', 'Nd3', 'Nc6', 'Nc3', 'Nh6'], ['d4', 'd5', 'Nc3', 'Nc6', 'e4', 'Nf6', 'Nf3', 'dxe4', 'Nd2', 'Nxd4'], ['b4', 'e6', 'a3', 'Nf6', 'Bb2', 'a5', 'c4', 'axb4', 'axb4', 'Rxa1'], ['Nc3', 'Nf6', 'd4', 'd5', 'Bg5', 'Nc6', 'Nf3', 'Bf5', 'e4', 'e6'], ['e4', 'c5', 'Nc3', 'Nc6', 'g3', 'g6', 'Bg2', 'Bg7', 'd3', 'e6'], ['d4', 'e5', 'dxe5', 'f6', 'exf6', 'Nxf6', 'Nf3', 'Bc5', 'e3', 'c6'], ['e4', 'c5', 'Nf3', 'Nf6', 'e5', 'Nd5', 'Nc3', 'e6', 'Nxd5', 'exd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nc3', 'Bg7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Nc3', 'Nf6'], ['b3', 'd5', 'Bb2', 'Bg4', 'c4', 'e6', 'Qc2', 'Nc6', 'a3', 'Nf6'], ['d4', 'Nf6', 'Nf3', 'd6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'O-O'], ['e4', 'c6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'cxb5', 'a6', 'bxa6', 'Bxa6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'e6', 'e3', 'Nbd7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Bd3', 'Qc7'], ['Nf3', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'e6', 'd4', 'Bd6'], ['d4', 'g6', 'c4', 'Bg7', 'Nc3', 'c5', 'd5', 'Bxc3+', 'bxc3', 'f5'], ['d4', 'd5', 'Nf3', 'Nc6', 'c4', 'Bg4', 'cxd5', 'Bxf3', 'gxf3', 'Qxd5'], ['Nf3', 'd5', 'g3', 'Nf6', 'Bg2', 'Nc6', 'd4', 'Bf5', 'O-O', 'e6'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'd6', 'd4', 'e4', 'Nd2', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Qe2', 'Qe7'], ['b4', 'Nf6', 'Bb2', 'e6', 'b5', 'b6', 'e3', 'Bb7', 'Nf3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'd4', 'd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'e3', 'Ne4', 'Qc2', 'f5'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nc3', 'Bc5', 'f4', 'd6', 'Nf3', 'Nf6', 'fxe5', 'dxe5'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Bb4', 'cxd5', 'Nxd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['c4', 'Nf6', 'Nc3', 'e5', 'g3', 'd6', 'Bg2', 'c6', 'd4', 'Nbd7'], ['c4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'e3', 'e6', 'd4', 'cxd4'], ['d4', 'd5', 'c4', 'Bf5', 'Nc3', 'c6', 'Nf3', 'e6', 'Qb3', 'Qb6'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'Nf6', 'Nc3', 'Bg4', 'e3', 'e6'], ['d4', 'c5', 'd5', 'Nf6', 'Nc3', 'e5', 'e4', 'd6', 'Nf3', 'Be7'], ['e4', 'c5', 'Nc3', 'e6', 'Nge2', 'a6', 'g3', 'Nc6', 'Bg2', 'g6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'e6', 'Nc3', 'd5', 'Be3', 'Nf6'], ['e4', 'e5', 'Nf3', 'h5', 'Nxe5', 'Qg5', 'd4', 'Qg6', 'Bc4', 'd6'], ['a4', 'e5', 'h4', 'Bc5', 'Nf3', 'e4', 'Na3', 'exf3', 'gxf3', 'c6'], ['e4', 'h5', 'Bc4', 'a5', 'Nf3', 'Na6', 'Ng5', 'Nh6', 'Bxf7+', 'Nxf7'], ['a4', 'c5', 'h4', 'Nf6', 'Ra3', 'Qb6', 'Rhh3', 'c4', 'Nf3', 'Ng4'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Bg5', 'h6', 'Bxf6', 'Qxf6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nb5', 'a6'], ['d4', 'Nf6', 'c4', 'd5', 'Nf3', 'Bf5', 'Nc3', 'e6', 'Nh4', 'Bg6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'a3', 'Bxc3+'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'Nc3', 'Bb7', 'e3', 'd5'], ['d4', 'Nf6', 'e3', 'e6', 'Bd3', 'c5', 'c3', 'Nc6', 'Nf3', 'd5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e5', 'Bxc4', 'exd4', 'exd4', 'Nf6'], ['d4', 'e6', 'Nf3', 'Nf6', 'c4', 'd5', 'Nc3', 'c5', 'e3', 'Nc6'], ['e4', 'c5', 'e5', 'Qc7', 'Nf3', 'Nc6', 'Qe2', 'd6', 'Nc3', 'dxe5'], ['d4', 'e6', 'c4', 'c5', 'e3', 'cxd4', 'exd4', 'Bb4+', 'Bd2', 'Bxd2+'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e6', 'Bxc4', 'a6', 'Nc3', 'b5'], ['e4', 'c5', 'c4', 'Nc6', 'd3', 'e6', 'Nf3', 'Qc7', 'Nc3', 'a6'], ['d4', 'Nf6', 'c4', 'g6', 'Nf3', 'Bg7', 'Bg5', 'd6', 'Nc3', 'Nc6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Be3', 'a6'], ['d4', 'Nf6', 'c4', 'g6', 'Nf3', 'Bg7', 'Bg5', 'd6', 'Bxf6', 'Bxf6'], ['d4', 'e6', 'e4', 'b6', 'c4', 'Bb7', 'Nc3', 'Be7', 'Nf3', 'd6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bg5', 'd5', 'a3', 'Bxc3+'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Be3', 'Nf6'], ['Nc3', 'Nf6', 'e4', 'd6', 'd4', 'Nbd7', 'Bg5', 'h6', 'Bxf6', 'exf6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'c6', 'axb5', 'cxb5'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'd5'], ['d4', 'd6', 'e4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Bc4', 'Nbd7'], ['d4', 'Nf6', 'c4', 'd5', 'Nf3', 'Bg4', 'h3', 'Bh5', 'g4', 'Bg6'], ['e4', 'c5', 'c3', 'e5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'exd4'], ['d4', 'c5', 'd5', 'g6', 'c4', 'Bg7', 'Nc3', 'Nf6', 'e4', 'd6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'd6'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'e5', 'dxe6', 'fxe6', 'Bg5', 'Be7'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'c5', 'e3', 'Nc6', 'Nc3', 'cxd4'], ['d4', 'e6', 'c4', 'd6', 'Nf3', 'h6', 'Nc3', 'a6', 'e4', 'c6'], ['c4', 'Nf6', 'e3', 'e6', 'h3', 'd5', 'Qc2', 'c5', 'Be2', 'Nc6'], ['c4', 'Nf6', 'g3', 'e6', 'Nc3', 'a6', 'Bg2', 'Nc6', 'd4', 'd5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'O-O', 'Nf3', 'Bxc3+'], ['d4', 'd5', 'c4', 'e5', 'cxd5', 'Qxd5', 'e3', 'Nc6', 'Nc3', 'Bb4'], ['d4', 'e6', 'c4', 'c5', 'd5', 'exd5', 'cxd5', 'Bd6', 'Nc3', 'Nf6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'Qb3', 'c6', 'Nf3', 'dxc4'], ['Nf3', 'Nf6', 'g3', 'd5', 'Bg2', 'c6', 'd3', 'Bf5', 'O-O', 'g6'], ['e4', 'c5', 'Nf3', 'e6', 'Bc4', 'd6', 'Nc3', 'Ne7', 'Bb3', 'd5'], ['Nf3', 'd5', 'g3', 'Nc6', 'Bg2', 'e5', 'd3', 'Nf6', 'Bg5', 'h6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nf6'], ['Nf3', 'Nf6', 'g3', 'd5', 'd4', 'Bf5', 'Bg2', 'e6', 'O-O', 'c5'], ['Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'd5', 'd4', 'O-O'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'c6', 'a4', 'Qa5', 'e4', 'b5'], ['Nf3', 'Nf6', 'g3', 'd5', 'Bg2', 'c5', 'd3', 'Nc6', 'O-O', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Be3', 'Bxe3'], ['e4', 'c5', 'c4', 'Nc6', 'Nf3', 'd6', 'd4', 'Nf6', 'd5', 'Ne5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bd6', 'Bc4', 'Nge7', 'Ng5', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'a6', 'd4', 'cxd4', 'Nxd4', 'e5'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'dxe4', 'd3', 'Bd6', 'd4', 'Qf6'], ['e4', 'c5', 'Nf3', 'e6', 'Bc4', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'd3', 'Nc5'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'd6', 'd4', 'cxd4', 'cxd4', 'e5'], ['c4', 'c5', 'Nc3', 'Nc6', 'e3', 'Nf6', 'Qc2', 'd5', 'd3', 'dxc4'], ['c4', 'd5', 'Nc3', 'Nf6', 'e3', 'e5', 'd4', 'e4', 'Be2', 'Bb4'], ['e4', 'e5', 'Nf3', 'd6', 'd3', 'Nf6', 'Bg5', 'Bg4', 'Bxf6', 'Qxf6'], ['d4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'b6', 'Bf4', 'd6', 'e3', 'e5'], ['c4', 'd5', 'd3', 'dxc4', 'Qa4+', 'Bd7', 'Qxc4', 'Nf6', 'Nf3', 'Nc6'], ['d4', 'd5', 'f4', 'Nc6', 'Nf3', 'Bf5', 'e3', 'e6', 'Ne5', 'Nxe5'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'Bb5', 'Bd7', 'd3', 'h6'], ['e4', 'c5', 'Nf3', 'b6', 'Bb5', 'Bb7', 'd3', 'a6', 'Bc4', 'b5'], ['g4', 'd5', 'Bg2', 'e5', 'c4', 'Bxg4', 'Bxd5', 'c6', 'Qa4', 'Qd7'], ['e4', 'e5', 'd3', 'd6', 'Be2', 'Be6', 'Nf3', 'f6', 'b4', 'Nc6'], ['d4', 'Nf6', 'Nc3', 'g6', 'e4', 'b6', 'e5', 'Nh5', 'g4', 'Ng7'], ['e4', 'e5', 'd3', 'Nf6', 'Nc3', 'd6', 'Nf3', 'Bd7', 'Be2', 'Nc6'], ['c4', 'e5', 'd4', 'e4', 'Be3', 'f5', 'g3', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bd6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Bd7', 'O-O', 'b5', 'Bxf7+', 'Kxf7'], ['c4', 'e5', 'Nc3', 'd6', 'd4', 'Nc6', 'e3', 'g6', 'Bd3', 'Bg7'], ['d4', 'd5', 'Nc3', 'Nc6', 'e4', 'e6', 'Be3', 'Bb4', 'e5', 'Nge7'], ['d4', 'Nf6', 'Nf3', 'g6', 'e3', 'Bg7', 'c4', 'O-O', 'Nc3', 'd6'], ['Nc3', 'd5', 'e4', 'd4', 'Nce2', 'e5', 'Ng3', 'Nf6', 'd3', 'g6'], ['e4', 'd6', 'f4', 'g6', 'd4', 'Bg7', 'Be2', 'b6', 'Bf3', 'Bb7'], ['Nf3', 'e6', 'g3', 'Bc5', 'Bg2', 'Nf6', 'O-O', 'Ng4', 'e3', 'O-O'], ['d4', 'e6', 'Nf3', 'c5', 'dxc5', 'Bxc5', 'e3', 'Nc6', 'c3', 'Nf6'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'g6', 'Bd3', 'Bg7', 'O-O', 'a6'], ['e4', 'c5', 'Bc4', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd5', 'e6'], ['d4', 'e6', 'e4', 'c5', 'd5', 'exd5', 'exd5', 'd6', 'Bb5+', 'Bd7'], ['e4', 'e6', 'e5', 'd5', 'd4', 'c5', 'c3', 'Nc6', 'Bb5', 'Bd7'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'e6', 'Bd3', 'Nc6', 'c3', 'Bd6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'd4', 'cxd4', 'Nxd4', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'O-O', 'e6', 'd3', 'Nf6'], ['d4', 'e6', 'c4', 'd5', 'Nf3', 'Nf6', 'g3', 'c5', 'cxd5', 'exd5'], ['g3', 'd5', 'Bg2', 'c6', 'c4', 'e6', 'cxd5', 'cxd5', 'd4', 'Nc6'], ['e4', 'Nc6', 'Nc3', 'e6', 'Nf3', 'b6', 'd4', 'Bb7', 'Ne5', 'Nxe5'], ['d4', 'e6', 'c4', 'd5', 'e3', 'dxc4', 'Nf3', 'c5', 'Bxc4', 'cxd4'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nc6', 'e5', 'Bb4', 'Bd3', 'Nge7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'd5', 'Be2', 'd4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e3', 'e5', 'Be2', 'd5', 'd3', 'c5', 'b3', 'f5', 'Bb2', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'g6'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Bd7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'c5', 'Nc6', 'Nf3', 'Bg7'], ['c4', 'Nf6', 'd4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'h3', 'O-O'], ['Nf3', 'd5', 'd4', 'Nf6', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'c6'], ['c4', 'e5', 'Nc3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'Bb4', 'e3', 'Bxc3'], ['d4', 'Nf6', 'Bg5', 'e6', 'e4', 'Be7', 'e5', 'Nd5', 'Bd2', 'd6'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'Nf3', 'exd5', 'cxd5', 'Qxd5'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'e3', 'Bc5', 'd4', 'exd4'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'Nf3', 'exd5', 'cxd5', 'Bc5'], ['c4', 'e5', 'Nc3', 'c6', 'd4', 'exd4', 'Qxd4', 'Nf6', 'Nf3', 'Bb4'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Bg4', 'Nf3', 'Qxd5', 'Be2', 'Nc6'], ['c4', 'Nf6', 'Nc3', 'b6', 'e4', 'e5', 'Nf3', 'd6', 'Be2', 'Nbd7'], ['b4', 'Nf6', 'Bb2', 'e6', 'b5', 'Bc5', 'Nf3', 'd6', 'd4', 'Bb6'], ['c4', 'Nf6', 'Nc3', 'e5', 'g3', 'Bc5', 'Bg2', 'c6', 'e3', 'd5'], ['d4', 'Nf6', 'Bg5', 'e6', 'e4', 'Be7', 'Nd2', 'h6', 'Bxf6', 'Bxf6'], ['c4', 'c5', 'Nc3', 'Nf6', 'g3', 'e6', 'Bg2', 'd5', 'cxd5', 'exd5'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'dxe6', 'Bxe6', 'd4', 'Bb4+'], ['c4', 'c5', 'g3', 'd6', 'Bg2', 'Nf6', 'Nc3', 'e6', 'e3', 'Nbd7'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'c6', 'Bg2', 'd5', 'cxd5', 'cxd5'], ['c4', 'f5', 'd4', 'e6', 'Nc3', 'c6', 'Nf3', 'd5', 'Bg5', 'Qb6'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Bg4', 'Qd3', 'Qxd5', 'f3', 'Bf5'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'dxe6', 'Bxe6', 'Nc3', 'Nc6'], ['c4', 'c5', 'Nc3', 'Nc6', 'g3', 'g6', 'Bg2', 'Bg7', 'e3', 'e5'], ['e4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6'], ['c4', 'Nc6', 'g3', 'e5', 'Bg2', 'Nf6', 'Nc3', 'Bc5', 'e3', 'd6'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Bg4', 'Be2', 'Bxe2', 'Nxe2', 'Qxd5'], ['e4', 'd5', 'exd5', 'Nf6', 'Nf3', 'Qxd5', 'Nc3', 'Qh5', 'Be2', 'Bg4'], ['c4', 'Nf6', 'd4', 'e6', 'Nc3', 'Bb4', 'h3', 'O-O', 'Bg5', 'c5'], ['c4', 'c6', 'd4', 'd5', 'c5', 'Nf6', 'Nc3', 'Bf5', 'Nf3', 'Nbd7'], ['e4', 'd5', 'exd5', 'Nf6', 'Nf3', 'Qxd5', 'd4', 'Bg4', 'Be2', 'Nc6'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'dxe6', 'Bxe6', 'd4', 'Bb4+'], ['c4', 'e5', 'Nc3', 'Nf6', 'e4', 'Bc5', 'd3', 'c6', 'Be2', 'd5'], ['e4', 'd5', 'e5', 'c5', 'd4', 'cxd4', 'Nf3', 'Nc6', 'Bb5', 'Bd7'], ['c4', 'b5', 'cxb5', 'Bb7', 'Nf3', 'g6', 'Nc3', 'd6', 'e4', 'e5'], ['Nf3', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nf6', 'Nc3', 'Bg4'], ['c4', 'Nf6', 'Nc3', 'e5', 'g3', 'Bc5', 'Bg2', 'Nc6', 'e3', 'a6'], ['c4', 'd5', 'cxd5', 'Nf6', 'Nf3', 'Nxd5', 'e4', 'Nb4', 'd4', 'c5'], ['e3', 'd5', 'b3', 'e5', 'Bb2', 'Nc6', 'Bb5', 'Bd6', 'Nf3', 'Qe7'], ['c4', 'd5', 'cxd5', 'c6', 'dxc6', 'Nxc6', 'Nf3', 'e5', 'Nc3', 'Bc5'], ['e4', 'd5', 'e5', 'c5', 'Nf3', 'Bg4', 'd3', 'Nc6', 'Bf4', 'e6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Nxd5', 'Qxd5', 'Nf3', 'e5'], ['c4', 'c5', 'Nc3', 'Nc6', 'g3', 'e5', 'Bg2', 'Nf6', 'e3', 'Be7'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Bc4', 'c6', 'Nge2', 'Bg4'], ['c4', 'Nf6', 'd4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'O-O'], ['d4', 'Nf6', 'Nf3', 'e6', 'Bg5', 'h6', 'Bxf6', 'Qxf6', 'e4', 'Nc6'], ['c4', 'e5', 'Nc3', 'd6', 'g3', 'Bd7', 'Bg2', 'Bc6', 'e4', 'Nf6'], ['d3', 'e5', 'Bd2', 'f5', 'c3', 'Nf6', 'Qc2', 'Nc6', 'e4', 'fxe4'], ['c4', 'Nf6', 'd4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'h3', 'c6'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Bg4', 'Be2', 'Bxe2', 'Nxe2', 'Qxd5'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'Bc5', 'Bg2', 'Nc6', 'e3', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Qb6', 'Nc3', 'e6', 'Bxc6', 'Qxc6'], ['d4', 'f5', 'e4', 'fxe4', 'f3', 'e6', 'Nc3', 'Bb4', 'Bd2', 'exf3'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nc6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['d4', 'f5', 'c4', 'Nf6', 'Nf3', 'd6', 'Nc3', 'Nbd7', 'g3', 'c5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'd4', 'd6', 'Nf3', 'Nxe4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'd5', 'f3', 'Qh4+'], ['e4', 'd6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'O-O', 'Nge7', 'c3', 'd5'], ['e4', 'e6', 'd4', 'Qe7', 'Nc3', 'g6', 'Nf3', 'Nf6', 'e5', 'Nd5'], ['e3', 'e5', 'b3', 'd5', 'Bb2', 'Nc6', 'g3', 'f5', 'Qh5+', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Ne5', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'bxc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'e5', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'O-O', 'e5', 'a3', 'a5'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'h3', 'Nc6', 'Bc4', 'e6', 'a3', 'a5'], ['d4', 'a6', 'Bf4', 'd6', 'e3', 'b6', 'Nf3', 'Bb7', 'Be2', 'h6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Qf3', 'h6', 'd3', 'Bc5', 'Nh3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'h6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'h3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'd3', 'd6'], ['d4', 'e6', 'Bf4', 'c6', 'e3', 'h5', 'c4', 'g5', 'Bg3', 'h4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'h3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e5', 'd4', 'd5', 'dxe5', 'dxe4', 'Qxd8+', 'Kxd8', 'Bg5+', 'f6'], ['d4', 'g6', 'Bf4', 'e6', 'e3', 'Bg7', 'Nf3', 'Nf6', 'Bd3', 'a6'], ['d4', 'd5', 'c4', 'e5', 'cxd5', 'exd4', 'Qxd4', 'Nf6', 'e4', 'c6'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nc3', 'Nxd4', 'Qxd4', 'Nf6', 'Qd2', 'g6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qf3', 'Nf6', 'd3', 'd6', 'Bg5', 'h6'], ['d4', 'e6', 'Bf4', 'Nf6', 'e3', 'Nd5', 'Bg3', 'Bd6', 'Bxd6', 'cxd6'], ['d4', 'g6', 'Bf4', 'Bg7', 'e3', 'c5', 'dxc5', 'Bxb2', 'Nc3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'e6', 'Nf3', 'Bg4', 'Be2', 'Bxf3'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Nf6', 'Nf3', 'Bg4', 'Be2', 'Qd7'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'e6', 'Be2', 'Bd6', 'Nbd2', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'Ng4'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'Be5', 'd6', 'Bxf6', 'Bxf6'], ['d4', 'd5', 'Nf3', 'Nc6', 'c4', 'e5', 'dxe5', 'd4', 'e3', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd3', 'Bc5', 'Be2', 'Ng4'], ['e4', 'c5', 'Bc4', 'Nf6', 'Qf3', 'Nc6', 'c3', 'd6', 'd3', 'e5'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'Bc4', 'Nc6', 'Qf4', 'd6'], ['d4', 'd5', 'Bf4', 'Be6', 'Nc3', 'Nc6', 'Nb5', 'Rc8', 'e3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'Ng4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'Nxd4'], ['e4', 'c5', 'Nf3', 'd6', 'c4', 'Nc6', 'Nc3', 'e5', 'a4', 'Nf6'], ['d4', 'd5', 'Bf4', 'g6', 'e3', 'Bg7', 'Nf3', 'Nf6', 'Bd3', 'e6'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Bf5', 'Nf3', 'Nb4', 'Bd3', 'Nxd3+'], ['d4', 'd5', 'Bf4', 'Bg4', 'h3', 'Bh5', 'Nc3', 'Nf6', 'Nf3', 'Bxf3'], ['d4', 'e6', 'Bf4', 'h6', 'e3', 'g5', 'Bg3', 'Bg7', 'h3', 'a6'], ['d4', 'e6', 'Bf4', 'Nf6', 'e3', 'Bb4+', 'c3', 'Be7', 'Nf3', 'd6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'd6', 'O-O', 'Nxe4', 'd3', 'Nc5'], ['e4', 'c5', 'Nc3', 'e6', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'f3', 'Nc6', 'Bb5', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'Nc3', 'a6', 'a4', 'Nc6'], ['d4', 'd5', 'e3', 'Nf6', 'Nf3', 'Bg4', 'Be2', 'e6', 'c4', 'Bb4+'], ['d4', 'Nf6', 'Bf4', 'g6', 'Nf3', 'd6', 'e3', 'Bg7', 'c3', 'O-O'], ['e4', 'c5', 'Nc3', 'g6', 'Nf3', 'Bg7', 'd4', 'cxd4', 'Nxd4', 'a6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nc6'], ['e4', 'c5', 'Bc4', 'e6', 'd3', 'Nc6', 'Nf3', 'Bd6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'a6', 'Ba4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'Nf6', 'Qe2', 'd5'], ['d4', 'Nf6', 'Nc3', 'g6', 'e4', 'd6', 'Bb5+', 'Nc6', 'd5', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'O-O', 'a6', 'c3', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nf6', 'e5', 'Ng4', 'h3', 'Nxf2', 'Kxf2', 'Qb6'], ['d4', 'Nf6', 'e3', 'g6', 'f4', 'd5', 'h3', 'a6', 'Bd3', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Bc4', 'e6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'a6', 'Nc3', 'e6'], ['e4', 'c5', 'Nf3', 'a6', 'Bc4', 'e6', 'O-O', 'Bd6', 'Re1', 'Nc6'], ['e4', 'Nf6', 'e5', 'Nd5', 'Qf3', 'e6', 'Bc4', 'Nc6', 'a3', 'Nxe5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Qa5+', 'Nc3', 'Bg4', 'Be2', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Nd7', 'd4', 'a6', 'Bc4', 'e6'], ['Nf3', 'd5', 'e3', 'a6', 'd4', 'Nf6', 'Ne5', 'Nbd7', 'Nxf7', 'Kxf7'], ['e4', 'c5', 'd3', 'Nc6', 'Nf3', 'd6', 'Be2', 'g6', 'O-O', 'Bg7'], ['e4', 'c5', 'Bc4', 'e6', 'e5', 'Nc6', 'f4', 'f6', 'Nf3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Nc6', 'c4', 'Bg4', 'h3', 'Bh5'], ['d4', 'Nf6', 'Bg5', 'g6', 'e3', 'Bg7', 'Bb5', 'O-O', 'Nc3', 'e6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'd6', 'O-O', 'Bg4'], ['c3', 'e5', 'e4', 'Nf6', 'f3', 'Bc5', 'd4', 'exd4', 'cxd4', 'Bb6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bb5', 'Nf6', 'd3', 'e6'], ['e4', 'e5', 'Nf3', 'f6', 'Nxe5', 'g6', 'Nf3', 'h5', 'd4', 'd5'], ['d4', 'Nf6', 'f3', 'g6', 'g4', 'Bg7', 'e3', 'O-O', 'b4', 'd6'], ['e3', 'e5', 'Qg4', 'Nf6', 'Qg3', 'Bd6', 'Qxg7', 'Rg8', 'Qh6', 'Nc6'], ['e4', 'c5', 'c3', 'Nf6', 'e5', 'Ne4', 'd4', 'cxd4', 'cxd4', 'd5'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Bd6', 'd4', 'cxd4', 'Qxd4', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['c4', 'e5', 'b3', 'd5', 'cxd5', 'Qxd5', 'Bb2', 'Nf6', 'e3', 'Nc6'], ['e4', 'c5', 'd3', 'Nc6', 'c3', 'h6', 'Be3', 'e6', 'd4', 'cxd4'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'd6', 'c3', 'Bg7', 'Nd2', 'O-O'], ['g3', 'd5', 'Bg2', 'e5', 'b3', 'Nf6', 'Bb2', 'Bc5', 'Bxe5', 'Ng4'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Nd7', 'Bxd7+', 'Bxd7', 'O-O', 'e5'], ['c3', 'e5', 'd3', 'd5', 'Nd2', 'Nf6', 'h3', 'Nc6', 'g4', 'd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'Nd4', 'Nxd4', 'exd4'], ['g3', 'd5', 'e3', 'Nf6', 'Bg2', 'e6', 'd4', 'c5', 'dxc5', 'Bxc5'], ['e4', 'c5', 'c3', 'Nc6', 'Nf3', 'e6', 'Bc4', 'd5', 'Bb3', 'c4'], ['Nf3', 'c5', 'e4', 'Nc6', 'Nc3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Qe7', 'Nc3', 'c6', 'Bc4', 'h6'], ['Nf3', 'd5', 'e4', 'dxe4', 'Ng5', 'Nf6', 'Bc4', 'e6', 'Nc3', 'Qd4'], ['Nf3', 'e6', 'e4', 'd6', 'e5', 'Nd7', 'exd6', 'Bxd6', 'd4', 'Ngf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Qf6', 'Nc3', 'c6', 'd4', 'h6'], ['Nf3', 'Nf6', 'd4', 'e6', 'Nc3', 'd5', 'Bg5', 'Be7', 'h3', 'Nbd7'], ['Nf3', 'g6', 'e4', 'Bg7', 'e5', 'd6', 'exd6', 'exd6', 'h3', 'Ne7'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'h5', 'Bc4', 'd6', 'O-O', 'Nh6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Qe7', 'dxe5', 'dxe5', 'Nc3', 'c6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Qe7', 'dxe5', 'dxe5', 'Nc3', 'c6'], ['Nf3', 'd5', 'e4', 'dxe4', 'Ng5', 'Bf5', 'Nc3', 'Nf6', 'Qe2', 'Nc6'], ['Nf3', 'd5', 'e4', 'dxe4', 'Ng5', 'e5', 'Nxe4', 'c6', 'Bc4', 'Nf6'], ['Nf3', 'd5', 'e4', 'dxe4', 'Ng5', 'Nf6', 'Qe2', 'e6', 'Nc3', 'Be7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'd4', 'Qf6', 'dxe5', 'dxe5'], ['Nf3', 'b5', 'e4', 'c6', 'd4', 'g6', 'd5', 'cxd5', 'Qxd5', 'Nc6'], ['c4', 'd6', 'Nc3', 'e6', 'g3', 'c6', 'Bg2', 'h6', 'Nf3', 'e5'], ['Nf3', 'c5', 'e4', 'Nc6', 'a3', 'g6', 'Bc4', 'Bg7', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Qf6', 'Nc3', 'c6', 'd4', 'h6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'd4', 'Qf6', 'dxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Qe7', 'Bc4', 'h6', 'O-O', 'g5'], ['Nf3', 'd5', 'e4', 'dxe4', 'Ng5', 'Bf5', 'Qe2', 'Nc6', 'Qb5', 'Bc8'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Qe7', 'Nc3', 'c6', 'dxe5', 'dxe5'], ['d4', 'd6', 'e4', 'e6', 'f4', 'h6', 'Nf3', 'Qf6', 'Bd3', 'Nd7'], ['Nf3', 'Nf6', 'Nc3', 'd5', 'd4', 'Bf5', 'h3', 'e6', 'a3', 'c5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'O-O', 'Qf6', 'd3', 'g5'], ['f4', 'e6', 'e4', 'd6', 'd4', 'h6', 'Nf3', 'c6', 'c4', 'Qa5+'], ['f4', 'e6', 'e4', 'd6', 'd4', 'h6', 'Nf3', 'c6', 'c4', 'Qf6'], ['Nf3', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qh4', 'd5', 'c3', 'f6'], ['e4', 'e5', 'c4', 'c6', 'Nc3', 'd6', 'd4', 'Qf6', 'd5', 'c5'], ['Nf3', 'd5', 'e4', 'e6', 'exd5', 'exd5', 'd4', 'Nf6', 'h3', 'Be7'], ['Nf3', 'd5', 'e4', 'dxe4', 'Ng5', 'Nf6', 'Qe2', 'Bf5', 'Qb5+', 'Bd7'], ['Nf3', 'f5', 'e4', 'fxe4', 'Ng5', 'Nf6', 'Bc4', 'd5', 'Bb3', 'h6'], ['Nf3', 'e5', 'Nxe5', 'Nc6', 'd4', 'd5', 'Bf4', 'Bd6', 'Nc3', 'Nge7'], ['e4', 'e5', 'Nc3', 'c6', 'h3', 'd6', 'a4', 'h6', 'Bc4', 'Qf6'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Qf6', 'Bc4', 'h6', 'd3', 'Be7'], ['d4', 'd6', 'c4', 'c6', 'Nc3', 'e6', 'e4', 'h6', 'Nf3', 'Qf6'], ['Nf3', 'f5', 'e4', 'fxe4', 'Ng5', 'Nf6', 'Nc3', 'd5', 'd3', 'exd3'], ['d4', 'd6', 'Nf3', 'e6', 'Bf4', 'h6', 'e3', 'Nf6', 'Nbd2', 'c6'], ['d4', 'd6', 'c4', 'e6', 'e4', 'h6', 'Nc3', 'c6', 'Nf3', 'Qf6'], ['Nf3', 'd5', 'e4', 'dxe4', 'Ng5', 'Bf5', 'Qe2', 'Nf6', 'Qb5+', 'Bd7'], ['d4', 'd5', 'e3', 'Nc6', 'Bb5', 'Bd7', 'Nf3', 'Nf6', 'Nc3', 'g6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e6', 'Bxc4', 'Bb4+', 'Bd2', 'a5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'Bg4', 'h3', 'Bxf3'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Nc6', 'h3', 'Bf5'], ['d4', 'd5', 'Nf3'], ['e4', 'd5', 'd3', 'dxe4', 'Nc3', 'exd3', 'Qxd3', 'e5', 'Qxd8+', 'Kxd8'], ['e4', 'e6', 'd4', 'c5', 'c3', 'Nf6', 'e5', 'Nd5', 'Ne2', 'Be7'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'e3', 'c5', 'cxd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Bc4', 'Nxf3+', 'Qxf3', 'Qf6'], ['e4', 'Nf6', 'Nc3', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Bb4', 'Qe2', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7'], ['e4', 'Nf6', 'e5', 'Nd5', 'c3', 'd6', 'Qh5', 'dxe5', 'Qxe5', 'Nc6'], ['d4', 'Nf6', 'e3', 'd5', 'f4', 'Ne4', 'Nf3', 'Bg4', 'c4', 'c6'], ['e4', 'a6', 'Nf3', 'Nc6'], ['e4', 'd5', 'd3', 'e6', 'exd5', 'Qxd5', 'c4', 'Qa5+', 'Bd2', 'Qe5+'], ['e4', 'd6', 'd4', 'c6', 'a4', 'g6', 'f4', 'Bg7', 'Nf3', 'Bg4'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nf3', 'Bg4', 'Be2', 'g6'], ['e4', 'd6', 'Nf3', 'g6', 'Nc3', 'Nf6', 'd4', 'c6', 'Be3', 'Bg4'], ['d4', 'd6', 'Nf3', 'e6', 'Bf4', 'g6', 'c4', 'Bg7', 'e3', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['d4', 'd6', 'Qd3', 'g6', 'c4', 'Bg7', 'Qc3', 'Nf6', 'h3', 'O-O'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Qb6', 'Be3', 'Qxb2'], ['e4', 'd6', 'd4', 'g6', 'f4', 'c6', 'Nf3', 'Bg7', 'h3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd5', 'Bb5', 'dxe4', 'Nxe5', 'Bd7'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['d4', 'c6', 'c3', 'd5', 'Nd2', 'Nf6', 'Qc2', 'g6', 'Ngf3', 'Bg7'], ['d4', 'c6', 'Bf4', 'd6', 'e3', 'g6', 'c3', 'Nf6', 'h3', 'Bg7'], ['e4', 'd6', 'Bc4', 'e6', 'd4', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'Nb4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'g6', 'd5', 'Bg7', 'Nc3', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Qh4', 'Nf3', 'Qxe4+'], ['c4', 'd6', 'd4', 'c5', 'd5', 'e6', 'e4', 'exd5', 'cxd5', 'Qe7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'Qf6'], ['e4', 'd6', 'd4', 'c6', 'Nc3', 'g6', 'Be3', 'Bg7', 'Be2', 'Nf6'], ['e4', 'e6', 'Nf3', 'a6', 'd4', 'd6', 'Nc3', 'Be7', 'd5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'd6', 'Nf3', 'e5', 'g3', 'Bg4', 'Bg2', 'Nf6', 'c4', 'Nxe4'], ['e4', 'd6', 'Nc3', 'e6', 'Bd3', 'g6', 'Nf3', 'Bg7', 'O-O', 'Nf6'], ['e4', 'Nc6', 'd4', 'Nf6', 'd5', 'Nd4', 'Qxd4', 'd6'], ['e4', 'd6', 'd4', 'g6', 'Nf3', 'c6', 'Nc3', 'Bg7', 'Bc4', 'Bg4'], ['e4', 'd6', 'Nf3', 'e5', 'd4', 'f6', 'dxe5', 'fxe5', 'Nxe5', 'dxe5'], ['e4', 'c6', 'd4', 'Qb6', 'Nf3', 'f6', 'b3', 'e5', 'dxe5', 'Nh6'], ['c3', 'd6', 'Qb3', 'e6', 'g3', 'g6', 'Bg2', 'Bg7', 'Bxb7', 'Bxb7'], ['e4', 'e6', 'd4', 'Qh4', 'Qe2', 'Nf6', 'g3', 'Qxe4', 'Qxe4', 'Nxe4'], ['e4', 'd6', 'Bc4', 'e6', 'b3', 'g6', 'Nf3', 'Nf6', 'd3', 'd5'], ['e4', 'd5', 'exd5', 'e6', 'dxe6', 'Bxe6', 'd4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'exd4'], ['e4', 'd5', 'Nc3', 'c6', 'Nf3', 'Nf6', 'd4', 'e6', 'e5', 'Ne4'], ['e4', 'g6', 'Nf3', 'Bg7', 'd4', 'e6', 'e5', 'd6', 'Nc3', 'dxe5'], ['d4', 'd6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Bf4', 'Nf6', 'h3', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'Nc3', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'd5', 'Na5', 'Nc3', 'Bb4'], ['e4', 'd6', 'Bb5+', 'c6', 'Bc4', 'g6', 'Nc3', 'Bg7'], ['e4', 'd6', 'd3', 'g6', 'Nf3', 'Bg4', 'Be2', 'Bg7', 'h3', 'Bxf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'd6', 'd4', 'g6', 'd5', 'Bg7', 'c3', 'Nf6', 'Be3', 'Nxe4'], ['e4', 'e5', 'Nf3', 'f5', 'd4', 'd5', 'exd5', 'e4', 'Ne5', 'Qxd5'], ['e4', 'e5', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'Nf3', 'Bb4+', 'c3', 'Bc5'], ['e4', 'd5', 'e5', 'Bf5', 'd4', 'e6', 'h3', 'c5', 'c3', 'Nc6'], ['e4', 'e5', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'd3', 'd6', 'f4', 'exf4'], ['d4', 'Nf6', 'Nf3', 'e6', 'Bf4', 'b6', 'Nbd2', 'Bb7', 'e3', 'Be7'], ['Nf3', 'd5', 'e4', 'dxe4', 'Ng5', 'e5', 'Nxe4', 'f5', 'Nec3', 'Bc5'], ['e4', 'g6', 'd4', 'Bg7', 'Nc3', 'd6', 'Nf3', 'Nf6', 'h3', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'c5', 'Nf3', 'Nc6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'c5', 'Nc3', 'Be6', 'Bb5+', 'Nc6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'g5', 'Bc4', 'Bg7', 'd4', 'd6'], ['e4', 'c6', 'e5', 'd6', 'Nf3', 'dxe5', 'Nxe5', 'Qa5', 'Nc4', 'Qc5'], ['Nf3', 'Nf6', 'd4', 'e6', 'e3', 'b6', 'Nc3', 'Bb7', 'b3', 'Bb4'], ['Nf3', 'Nf6', 'c4', 'b6', 'g3', 'c5', 'Bg2', 'Bb7', 'O-O', 'g6'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'Nf6', 'e3', 'h6', 'Nbd2', 'Nc6'], ['d4', 'e6', 'Nf3', 'Nf6', 'Bf4', 'c5', 'c4', 'd5', 'Nc3', 'Nc6'], ['d4', 'Nf6', 'Nf3', 'd5', 'b3', 'e6', 'e3', 'Nbd7', 'Bb5', 'c5'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'Nf6', 'Nc3', 'Bf5', 'e3', 'e6'], ['e4', 'e5', 'Bc4'], ['e4', 'e5', 'Nc3', 'c6', 'Nf3', 'd6', 'Bd3', 'Bg4', 'O-O', 'Qf6'], ['e4', 'c5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'c3', 'e5', 'Bg5', 'd6'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'c4', 'Nb6', 'f4', 'Bf5'], ['e4', 'd6', 'Nf3', 'Nf6', 'e5', 'dxe5', 'Nxe5', 'e6', 'd4', 'Bd6'], ['e4', 'e5', 'Nf3'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'c5', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'c6', 'Ba4', 'b5', 'Bb3', 'c5'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd3', 'Nb4', 'Qc3', 'Nc6'], ['e4', 'e5', 'd3', 'd6', 'Nf3', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'c3', 'Bc5', 'd4', 'Bb6', 'Nxe5', 'Nxe4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'Ne7', 'Nf3', 'Nf5', 'Bd3', 'Be7'], ['e4', 'c5', 'Qf3', 'd6', 'Bc4', 'Nh6', 'd3', 'g6', 'Bxh6', 'Bxh6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nc3', 'e6', 'Bd3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Bc5', 'd4', 'exd4', 'cxd4', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'd6', 'Ng5', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'd6', 'Bc4', 'h6', 'd3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'Be2', 'Nf6', 'Nc3', 'g6', 'O-O', 'Bg7'], ['e4', 'c5', 'e5', 'Nc6', 'Nf3', 'g6', 'Bb5', 'Bg7', 'Bxc6', 'bxc6'], ['d3', 'g6', 'e4', 'Bg7', 'Nf3', 'Nf6', 'Nc3', 'd6', 'Be3', 'O-O'], ['e4', 'g6', 'f4', 'Bg7', 'd4', 'e6', 'Nf3', 'd6', 'Nc3', 'Nf6'], ['g3', 'd5', 'Bg2', 'c6', 'Nf3', 'Nf6', 'O-O', 'g6', 'b3', 'Bg7'], ['e4', 'g5', 'f3', 'Bg7', 'c3', 'b6', 'd4', 'Bb7', 'Bxg5', 'h6'], ['g3', 'e6', 'Bg2', 'd5', 'Nf3', 'Nc6', 'O-O', 'Nf6', 'b3', 'Be7'], ['d4', 'g6', 'e3', 'Bg7', 'c3', 'Nf6', 'f3', 'O-O', 'g3', 'b6'], ['g3', 'd5', 'Bg2', 'Nf6', 'Nf3', 'Nbd7', 'O-O', 'b6', 'b3', 'e6'], ['e3', 'g6', 'g3', 'Bg7', 'f4', 'Nf6', 'Ne2', 'b6', 'Bg2', 'c6'], ['g3', 'g6', 'Bg2', 'Bg7', 'Nf3', 'd6', 'O-O', 'Nf6', 'd3', 'e6'], ['g3', 'g6', 'Bg2', 'Bg7', 'Nf3', 'd6', 'O-O', 'Nf6', 'b3', 'O-O'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'd6', 'Nc3', 'Nc6', 'Bb5', 'Nf6'], ['g3', 'c6', 'Bg2', 'b5', 'Nf3', 'Bb7', 'O-O', 'e6', 'b3', 'g6'], ['g3', 'd5', 'Bg2', 'e5', 'b3', 'd4', 'd3', 'Bb4+', 'Nd2', 'Bxd2+'], ['g3', 'e5', 'Bg2', 'Nf6', 'd3', 'Bc5', 'Nf3', 'd6', 'b3', 'O-O'], ['g3', 'd5', 'Bg2', 'Nf6', 'Nf3', 'c5', 'O-O', 'Nc6', 'b3', 'e5'], ['e4', 'g6', 'Bc4', 'Bg7', 'c3', 'd6', 'd4', 'Nf6', 'f3', 'O-O'], ['g3', 'e5', 'Bg2', 'd5', 'd3', 'Nf6', 'Nf3', 'c6', 'O-O', 'Bd6'], ['e4', 'e6', 'Nf3', 'Na6', 'Nc3', 'b6', 'd4', 'Bb7', 'Bb5', 'Nh6'], ['e3', 'Nf6', 'Nh3', 'c5', 'Bc4', 'd5', 'Bd3', 'e5', 'O-O', 'e4'], ['e4', 'd6', 'd4', 'c6', 'Nf3', 'Qa5+', 'c3', 'Qd8', 'Bc4', 'Na6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'exd4', 'e5', 'Qe7', 'Be2', 'Ng4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'Nxe4', 'd4', 'd5'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'Nf3', 'Bb4', 'Bd3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Qc7', 'Nxc6', 'bxc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'a6', 'Bxc6', 'Nxc6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Qf6', 'Nc3', 'Nd4', 'Nd5', 'Qc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'd6', 'O-O', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['d4', 'Nf6', 'c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Bg4'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'dxe4', 'd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd4', 'exd4', 'O-O', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Nxe4', 'Nxe4', 'd5'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['Nf3', 'd5', 'd4', 'Nf6', 'e3', 'Nc6', 'c4', 'Bg4', 'Nc3', 'e5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Qc7', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f6', 'Nc3', 'exd4', 'Nxd4', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Be7', 'a3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'exd4', 'Nxd4', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'd6', 'Ng5', 'd5'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'g6', 'cxd5', 'Nxd5', 'e4', 'Nxc3'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'e5', 'f4', 'exf4', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'Nf3', 'Bxc3'], ['d4', 'Nf6', 'c4', 'd5', 'cxd5', 'Nxd5', 'Nf3', 'Nc6', 'e4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'Nc3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bc5', 'c3', 'dxc3'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'g6', 'Bxc6', 'dxc6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'O-O', 'e5', 'Nh5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qf6', 'O-O', 'a6', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'd6', 'd4', 'g6', 'c4', 'Bg7', 'Nf3', 'Nf6', 'Bg5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'h3', 'Nf6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'Nf3', 'Nc6', 'cxd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Be7', 'Nc3', 'Nf6'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb3', 'Nf6', 'd4', 'Bb4+'], ['Nf3', 'c5', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'e6', 'e3', 'a6'], ['c4', 'c5', 'Qa4', 'Nc6', 'e3', 'd6', 'a3', 'Bd7', 'Qc2', 'Nf6'], ['f4', 'f5', 'Nf3', 'b6', 'd3', 'Bb7', 'Nc3', 'd6', 'e4', 'Nc6'], ['e4', 'd5', 'Bb5+', 'c6', 'Bd3', 'Nf6', 'c4', 'Nxe4', 'cxd5', 'Qa5'], ['e4', 'e5', 'c3', 'Nc6', 'd4', 'exd4', 'cxd4', 'Bb4+', 'Nc3', 'Nf6'], ['e4', 'c6', 'e5', 'd6', 'd4', 'dxe5', 'Nf3', 'exd4', 'Nxd4', 'c5'], ['d4', 'd6', 'd5', 'e5', 'dxe6', 'fxe6', 'e4', 'e5', 'Bc4', 'Nf6'], ['e4', 'e5', 'f4', 'f6', 'Nf3', 'd6', 'fxe5', 'dxe5', 'd4', 'Bb4+'], ['e4', 'e6', 'e5', 'd5', 'd4', 'c5', 'f4', 'cxd4', 'c3', 'Nc6'], ['e4', 'c5', 'c3', 'e6', 'e5', 'd5', 'd4', 'c4', 'f4', 'Ne7'], ['e4', 'e5', 'Nf3', 'd6', 'c3', 'Bd7', 'd4', 'Nc6', 'Nbd2', 'exd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nxe4', 'Nxe5', 'Qe7', 'Nxf7', 'Nc3+'], ['d4', 'd5', 'c3', 'Nc6', 'Nd2', 'Nf6', 'e3', 'g6', 'Ngf3', 'Bg7'], ['e4', 'c5', 'Nc3', 'd6', 'g3', 'g6', 'Bg2', 'Bg7', 'd3', 'e6'], ['e4', 'c5', 'Nc3', 'd6', 'g3', 'g6', 'Bg2', 'Bg7', 'd3', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Nd7', 'O-O', 'a6', 'Bc4', 'b5'], ['Na3', 'Nf6', 'b3', 'e5', 'e3', 'Nc6', 'c4', 'Be7', 'd4', 'exd4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Bb5+', 'Nd7', 'Bxd7+', 'Bxd7'], ['d4', 'Nf6', 'e3', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Nc6', 'a3', 'Nxd4'], ['d4', 'Nf6', 'Bf4', 'e6', 'e3', 'd5', 'c3', 'c5', 'Nf3', 'Nc6'], ['e4', 'a5', 'd4', 'Ra6', 'Bxa6', 'Nxa6', 'a3', 'e6', 'Ne2', 'd5'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['d4', 'Nf6', 'c4', 'd5', 'Nc3', 'g6', 'Bf4', 'Bg7', 'Nf3', 'c6'], ['d4', 'c6', 'c4'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bf4', 'Bf5', 'Nf3', 'Nbd7'], ['e4', 'e5', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'Bd3', 'Nc5', 'Be3', 'Nc6'], ['d4', 'Nf6', 'Bf4', 'e6', 'e3', 'c5', 'c3', 'b6', 'Nf3', 'Bb7'], ['d4', 'c6', 'c4', 'd5', 'cxd5', 'cxd5', 'Nc3', 'Nf6', 'f3', 'Bf5'], ['d4', 'd5', 'c4', 'e6', 'a3', 'Nf6', 'Nc3', 'Be7', 'Nf3', 'O-O'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'e6', 'a3', 'Nf6', 'Nc3', 'a5'], ['d4', 'Nf6', 'c4', 'g6', 'Nf3', 'Bg7', 'Bf4', 'd6', 'e3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Nc6', 'Nf3', 'Nf6'], ['d4', 'c6', 'c3', 'd5', 'Bg5', 'h6', 'Bh4', 'Bf5', 'h3', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Be7', 'Nf3', 'Nf6', 'Bg5', 'h6'], ['d4', 'e6', 'c4', 'b6', 'Nc3', 'Bb4', 'Bd2', 'Bxc3', 'Bxc3', 'f6'], ['e3', 'c6', 'b3', 'd5', 'Bb2', 'Bf5', 'Nf3', 'e6', 'Ne5', 'Nd7'], ['d4', 'Nf6', 'c4', 'e6', 'a3', 'c5', 'Bg5', 'cxd4', 'Qxd4', 'Be7'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Bd6', 'Nc3', 'Nf6', 'd4', 'e4'], ['e4', 'c6', 'Nf3', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'd3', 'Bxe4'], ['d4', 'f5', 'c4', 'd6', 'Nf3', 'Be6', 'd5', 'Bf7', 'Qc2', 'c5'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'a3', 'c5', 'dxc5', 'Bxc5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'c5', 'Bxc4', 'cxd4', 'exd4', 'e6'], ['f4', 'd5', 'd4', 'Nc6', 'Nf3', 'Bf5', 'a3', 'e6', 'e3', 'Nf6'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'd6', 'exd6', 'Bxd6', 'g3', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'f4', 'e6', 'Nf3', 'Nd7'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'a3', 'Be7', 'Bf4', 'O-O'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Bf5', 'Nf3', 'e6'], ['e4', 'c5', 'Nc3', 'd6', 'Bc4', 'e6', 'Nf3', 'Nc6', 'd3', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Nf3', 'e6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'h6', 'd3', 'a6', 'Nc3', 'Nc6'], ['e4', 'e6', 'Qf3', 'd5', 'Nh3', 'Nd7', 'Ng5', 'f6', 'Nxe6', 'Qe7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'a3', 'Ba5', 'Qg4', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'Nf3', 'Bd6', 'h4', 'Nf6', 'h5', 'Nxe4'], ['d4', 'e6', 'e3', 'Nc6', 'Bd3', 'd5', 'f4', 'a6', 'Nf3', 'b6'], ['e4', 'd5', 'e5', 'Nc6', 'Nf3', 'f6', 'Nh4', 'fxe5', 'Qh5+', 'g6'], ['d4', 'c5', 'e3', 'cxd4', 'exd4', 'd5', 'c3', 'Nc6', 'h3', 'Qa5'], ['d4', 'c6', 'e3', 'd6', 'Bd3', 'Nf6', 'c3', 'Qc7', 'f4', 'Bg4'], ['d4', 'e6', 'e3', 'c6', 'Bd3', 'Be7', 'f4', 'Bh4+', 'g3', 'Bf6'], ['d4', 'Nf6', 'e3', 'd5', 'Bd3', 'c5', 'b3', 'e6', 'f4', 'Nc6'], ['d4', 'Nf6', 'e3', 'a6', 'Bd3', 'Nc6', 'f4', 'd5', 'Nf3', 'Nb4'], ['d4', 'Nf6', 'e3', 'd6', 'Bd3', 'Nbd7', 'f4', 'g6', 'c3', 'Bg7'], ['d4', 'g6', 'e3', 'Bg7', 'Bd3', 'b6', 'f4', 'Bb7', 'Nf3', 'h6'], ['e4', 'c5', 'c3', 'Nc6', 'd4', 'd6', 'Bb5', 'Bd7', 'dxc5', 'e5'], ['e4', 'c5', 'b3', 'Nc6', 'Bb2', 'a5', 'd3', 'a4', 'Nf3', 'axb3'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'b5', 'a4', 'Ba6', 'axb5', 'Bxb5'], ['e4', 'c5', 'Nf3', 'g6', 'd3', 'Bg7', 'Nc3', 'Nc6', 'Be3', 'd6'], ['e4', 'c5', 'Nc3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'd6', 'h3', 'g6'], ['b4', 'e5', 'Bb2', 'Nc6', 'b5', 'Nd4', 'e3', 'Ne6', 'Bxe5', 'd6'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'd5', 'cxd5', 'exd5', 'Bg5', 'c6'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'Nf6', 'd3', 'Nc6', 'Nf3', 'd5'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Be3', 'Nf6'], ['d4', 'e6', 'c4', 'd6', 'Nc3', 'Ne7', 'e4', 'Ng6', 'Nf3', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Qc7', 'Bxc6', 'Qxc6', 'd3', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Qb6', 'Bxc6', 'bxc6', 'Nc3', 'a5'], ['e4', 'c5', 'Bc4', 'Nc6', 'c3', 'e6', 'a3', 'd5', 'exd5', 'exd5'], ['f4', 'd5', 'c4', 'd4', 'Nf3', 'Nc6', 'c5', 'Bg4', 'Qb3', 'e6'], ['e4', 'c6', 'f4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'g6', 'Bc4', 'Bg7'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Ne2', 'e6', 'Ng3', 'Bg6'], ['d4', 'Nf6', 'g3', 'c5', 'c3', 'cxd4', 'cxd4', 'e6', 'Bg2', 'd5'], ['e4', 'c6', 'g3', 'd5', 'exd5', 'cxd5', 'Bg2', 'e5', 'd4', 'e4'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'Nc6', 'Bb5', 'd5', 'exd5', 'exd5'], ['Nf3', 'Nf6', 'd4', 'g6', 'c4', 'Bg7', 'Nc3', 'O-O', 'Bg5', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd6', 'O-O', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bc5', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['d4', 'Nf6', 'c4', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nb6', 'Nc3', 'N8d7'], ['d4', 'Nf6', 'Nc3', 'g6', 'e4', 'd6', 'Nf3', 'Bg7', 'Bd3', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb3', 'Nf6'], ['c4', 'Nf6', 'Nc3', 'g6', 'b3', 'Bg7', 'Bb2', 'd6', 'Qc2', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'b6', 'dxc5', 'bxc5', 'Nc3', 'd6'], ['e4', 'c5', 'd4', 'cxd4', 'Bd3', 'Nc6', 'Nf3', 'e5', 'a3', 'd5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'exd5', 'Bxc3+', 'bxc3', 'Qxd5'], ['e4', 'c5', 'Bc4', 'Nc6', 'Qf3', 'Nf6', 'd3', 'Nd4', 'Qd1', 'd5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bc4', 'Bxc3', 'dxc3', 'Nxe4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Bf5', 'Nf3', 'Qf6'], ['d4', 'Nf6', 'Bf4', 'g6', 'Nf3', 'Bg7', 'c3', 'O-O', 'h3', 'd6'], ['e4', 'd6', 'd4', 'c6', 'Nc3', 'b5', 'a3', 'a5', 'Nf3', 'Bg4'], ['c4', 'Nf6', 'd4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'h3', 'O-O'], ['Nf3', 'Nf6', 'c4', 'g6', 'd4', 'Bg7', 'Nc3', 'd6', 'e4', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bg4', 'Re1', 'Qd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Nf6', 'Re1', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'a6', 'Ba4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Nf6', 'Re1', 'Bg4'], ['d4', 'Nf6', 'c3', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O', 'Nf3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'Bc5', 'Bxc6', 'dxc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nf6', 'Nf3', 'Bg4'], ['e4', 'd5', 'exd5', 'c6', 'dxc6', 'Nxc6', 'Nf3', 'e6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'O-O', 'Nf6', 'Re1', 'Bg4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Nf6'], ['d4', 'Nf6', 'Nc3', 'g6', 'e4', 'd6', 'Bd3', 'Bg7', 'Nge2', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Nf6', 'd3', 'Be7'], ['d4', 'Nf6', 'c4', 'g6', 'e3', 'Bg7', 'Be2', 'O-O', 'Nf3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'a6', 'Ba4', 'b5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nxe4', 'Nxe5', 'd5', 'Bb3', 'Be7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'O-O', 'e4', 'd6'], ['e4', 'e5', 'f3', 'Nc6', 'b3', 'Nf6', 'Bb2', 'Bc5', 'c3', 'd6'], ['e4', 'e6', 'd4', 'a6', 'Nf3', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7'], ['Nh3', 'd5', 'Na3', 'c6', 'c3', 'Bxh3', 'gxh3', 'e6', 'e3', 'Bd6'], ['Nf3', 'Nf6', 'Nc3', 'g6', 'e4', 'd6', 'd4', 'Bg7', 'e5', 'dxe5'], ['a3', 'Nc6', 'e4', 'd6', 'Nc3'], ['e4', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5'], ['Nh3', 'Na6', 'Na3', 'Nh6', 'f4'], ['Nf3', 'Na6', 'Nc3', 'b6', 'Ng5', 'Bb7', 'g3', 'g6', 'Rg1', 'f6'], ['Nf3', 'h6', 'Nc3', 'f6', 'e4', 'd6', 'd4', 'b6', 'd5', 'e5'], ['Nc3', 'Nh6', 'Nf3', 'g6', 'Ng5', 'Bg7', 'Nf3', 'O-O', 'e4', 'd6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'Ne7', 'f4', 'c5'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'a6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'Bc4', 'd6', 'O-O', 'O-O'], ['d4', 'Nf6', 'c4', 'd5', 'e3', 'g6', 'Nc3', 'Bg7', 'Nf3', 'O-O'], ['e4', 'e6', 'g3', 'd6', 'Bg2', 'Nf6', 'Nc3', 'Be7', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Ne5'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Nd7', 'd4', 'cxd4', 'Qxd4', 'a6'], ['Nf3', 'Nf6', 'c4', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nb6', 'd4', 'e6'], ['e4', 'e6', 'g3', 'd5', 'Bg2', 'dxe4', 'Bxe4', 'Nf6', 'Bg2', 'c5'], ['e4', 'Nc6', 'Bc4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Bb3', 'Nf6'], ['e4', 'e5', 'Nf3', 'f5', 'Nc3', 'Nc6', 'exf5', 'Nf6', 'Bb5', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Bb5+', 'Nd7', 'Nxd4', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e6', 'g3', 'd5', 'Bg2', 'c5', 'd3', 'Nc6', 'Nd2', 'Bd6'], ['e4', 'c6', 'g3', 'd5', 'exd5', 'cxd5', 'Bg2', 'Nf6', 'd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Bd6', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'O-O', 'O-O'], ['e4', 'e5', 'd4', 'Bd6', 'Nf3', 'exd4', 'Bc4', 'Bc5', 'Bxf7+', 'Kxf7'], ['e4', 'e5', 'Bd3', 'Qf6', 'Nf3', 'h6', 'Nc3', 'c6', 'h3', 'Bc5'], ['e4', 'd6', 'Nf3', 'Nf6', 'e5', 'dxe5', 'Nxe5', 'g6', 'd4', 'Bg7'], ['f3', 'e5', 'g4', 'd5'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'e5', 'dxe5', 'dxe5', 'Qxd1+'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nf3', 'g6', 'cxd5', 'cxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'O-O'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7', 'Be3', 'd6'], ['d4', 'c5', 'd5', 'd6', 'e4', 'Nf6', 'Bd3', 'Nfd7', 'b3', 'Ne5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Bd6', 'Ng5', 'O-O', 'd4', 'exd4'], ['e4', 'd6', 'Nf3', 'e5', 'Bc4', 'b5', 'Bxb5+'], ['e4', 'Nf6', 'Nc3', 'd5', 'e5', 'Ne4', 'Bd3', 'e6', 'Bb5+', 'c6'], ['e4', 'e5', 'd3', 'd6', 'c4', 'Be7', 'Nf3', 'Nd7', 'Be2', 'Ngf6'], ['e4', 'Nf6', 'Nc3', 'b6', 'Nf3', 'Bb7', 'd3', 'Na6', 'Be2', 'Nc5'], ['b3', 'Nf6', 'd4', 'g6', 'Bf4', 'Bg7', 'Qd2', 'Nd5', 'Bh6', 'O-O'], ['e4', 'd5', 'Bb5+', 'c6', 'Bd3', 'Be6', 'exd5', 'cxd5', 'Bb5+', 'Bd7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'c5', 'Bc4', 'e6'], ['d4', 'd5', 'e3', 'e6', 'a3', 'f5', 'Nf3', 'Nf6', 'h3', 'Ne4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'Nc6', 'Nxc6', 'dxc6'], ['d4', 'g6', 'g3', 'Bg7', 'Bg2', 'Nc6', 'b3', 'Bxd4', 'Bb2', 'Bxb2'], ['e4', 'e5', 'Nf3', 'f6', 'Nxe5', 'fxe5', 'Qh5+', 'g6', 'Qxe5+', 'Be7'], ['e4', 'e5', 'd3', 'f5', 'Nf3', 'Qf6', 'b3', 'Ne7', 'Bb2', 'Nec6'], ['d4', 'd5', 'Bf4', 'Nf6', 'c4', 'dxc4', 'Nc3', 'Nc6', 'e3', 'Nb4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Ng5', 'Rg8', 'Bxf7+', 'Ke7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bd7', 'd4', 'b5', 'Bb3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nc6', 'd3', 'Bb4+', 'Bd2', 'd5'], ['e4', 'c5', 'Nc3', 'Nc6', 'd4', 'cxd4', 'Nce2', 'e5', 'Nf3', 'Bb4+'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'e6', 'a3', 'Nf6', 'd4', 'd5'], ['f4', 'd5', 'Nf3', 'e6', 'd3', 'Be7', 'g3', 'Nf6', 'Bg2', 'c5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'a3', 'Nf6', 'd3', 'h6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'h5', 'Bc4', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qf6', 'Bxc6', 'Qxc6', 'd4', 'd5'], ['e4', 'c5', 'd3', 'Nc6', 'Be3', 'd6', 'Nc3', 'a6', 'Qf3', 'b5'], ['d4', 'e6', 'Bf4', 'g5', 'Be5', 'f6', 'Bg3', 'h5', 'h4', 'gxh4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'h3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'dxc6', 'c3', 'Qd3'], ['e4', 'e5', 'Nf3', 'Nc6', 'c4', 'b6', 'a3', 'Bb7', 'b4', 'Nf6'], ['b3', 'e5', 'Bb2', 'f6', 'g3', 'd5', 'Bg2', 'e4', 'd3', 'f5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'dxc6', 'Nxe5', 'Bc5'], ['e4', 'c5', 'f4', 'e6', 'Nf3', 'Nc6', 'd4', 'd5', 'exd5', 'exd5'], ['e4', 'd6', 'g3', 'Nf6', 'Bg2', 'e5', 'd3', 'b5', 'b4', 'h5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nd7', 'd5', 'Nc5', 'Bb5+', 'Bd7'], ['d4', 'e6', 'c4', 'Nc6', 'e3', 'Bb4+', 'Bd2', 'Bxd2+', 'Qxd2', 'Nf6'], ['e4', 'c5', 'd4', 'e6', 'dxc5', 'Qa5+', 'c3', 'Qxc5', 'Be3', 'Qe5'], ['Nf3', 'd6', 'g3', 'e5', 'e4', 'Bg4', 'Bg2', 'c5', 'O-O', 'd5'], ['e4', 'h5', 'd4', 'h4', 'f4', 'Nf6', 'Qf3', 'd5', 'e5', 'Ne4'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'h6', 'c3', 'a6', 'b4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'd3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'c5', 'c4', 'Nc6', 'd3', 'd6', 'Bg5', 'h6', 'Bh4', 'g5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Bd3', 'e6'], ['e4', 'c5', 'c4', 'd6', 'd3', 'f5', 'Bg5', 'fxe4', 'dxe4', 'Nf6'], ['e4', 'c5', 'Nc3', 'd6', 'd4', 'cxd4', 'Qxd4', 'e5', 'Qd5', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'c4', 'Qe6+', 'Qe2', 'f5', 'Qxe6', 'Bxe6'], ['e4', 'c5', 'e5', 'Nc6', 'c4', 'Nxe5', 'd4', 'cxd4', 'Qxd4', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'Nc6', 'd4', 'e6', 'c3', 'd6', 'Bb5', 'Nf6', 'e5', 'dxe5'], ['e4', 'e5', 'Nf3', 'd6', 'c4', 'Nf6', 'd3', 'g6', 'h3', 'Bg7'], ['e4', 'c5', 'Nf3', 'f6', 'Bd3', 'd5', 'Nc3', 'c4', 'Be2', 'dxe4'], ['e4', 'c5', 'Bc4', 'e6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Qc7'], ['e4', 'e6', 'd4', 'Qh4', 'Bd3', 'Nf6', 'Nf3', 'Qg4', 'O-O', 'Nxe4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f6', 'dxe5', 'fxe5', 'Nc3', 'Be7'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Qc2', 'g6', 'Nbd2', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qf6', 'Nc3', 'a6', 'Nd5', 'Qe6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'd6'], ['e4', 'c6', 'Nf3', 'd5', 'd4', 'dxe4', 'Ng5', 'Bf5', 'Bc4', 'e6'], ['d3', 'e5', 'e4', 'Nf6', 'Nd2', 'd5', 'Ngf3', 'dxe4', 'dxe4', 'Bd6'], ['e4', 'Nc6', 'Bc4', 'Ne5', 'Bb3', 'd5', 'd4', 'b5', 'dxe5', 'a5'], ['f4', 'e5', 'fxe5', 'Qh4+', 'g3', 'Qd8', 'd4', 'Bb4+', 'Nc3', 'Bf8'], ['c4', 'Nf6', 'e4', 'e5', 'd4', 'Bb4+', 'Nc3', 'exd4', 'Qxd4', 'Bxc3+'], ['e4', 'Nc6', 'd3', 'e5', 'Qe2', 'd6', 'Bd2', 'f6', 'Be3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxd4', 'Qg5', 'O-O', 'exd4'], ['e4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'd5', 'exd5', 'Nxd5', 'Bc4', 'Nxc3'], ['e4', 'e5', 'g4', 'd6', 'g5', 'Qxg5', 'Nf3', 'Qg6', 'Nh4', 'Qxe4+'], ['d4', 'g6', 'd5', 'Bg7', 'd6', 'cxd6', 'Bf4', 'Bxb2', 'Nc3', 'Bxc3+'], ['d4', 'c5', 'd5', 'Qa5+', 'Bd2', 'Qb6', 'Bc3', 'e6', 'e4', 'exd5'], ['e4', 'Nc6', 'Qf3', 'Nf6', 'Bc4', 'Nd4', 'Qd3', 'Nxc2+', 'Qxc2', 'Nxe4'], ['e4', 'Nf6', 'e5', 'Nd5', 'Nf3', 'd6', 'Nc3', 'dxe5', 'Nxd5', 'Qxd5'], ['e4', 'e5', 'Qf3', 'Nf6', 'Bc4', 'Nxe4', 'Qxf7#'], ['e4', 'e5', 'c4', 'Bc5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bd3', 'Bg4'], ['f4', 'e5', 'g4', 'Bc5', 'e4', 'Qh4+', 'Ke2', 'Qf2+', 'Kd3', 'Qh4'], ['e4', 'Na6', 'Qh5', 'Nb4', 'Bc4', 'Nd3+', 'Ke2', 'Nc5', 'Qxf7#'], ['e4', 'h5', 'Bc4', 'Rh6', 'Nc3', 'Nf6', 'e5', 'Ng8', 'd4', 'd5'], ['Nc3', 'e5', 'Nf3', 'Nc6', 'g3', 'Bc5', 'Bh3', 'Nf6', 'a4', 'a6'], ['e4', 'e5', 'd3', 'd6', 'h3', 'h6', 'a3', 'g5', 'Nf3', 'Qe7'], ['e4', 'c5', 'Nf3', 'b6', 'Bc4', 'e6', 'd4', 'd6', 'd5', 'e5'], ['d4', 'd5', 'Nf3', 'h6', 'g3', 'Nf6', 'Bg2', 'Nc6', 'h3', 'e5'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'f3', 'e5'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'exf4', 'Bc4', 'a6', 'O-O', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nc6', 'c3', 'Nf6', 'd3', 'a6', 'a4', 'h6'], ['e4', 'e5', 'Bc4', 'Nc6', 'c3', 'Nf6', 'd3', 'a6', 'a4', 'h6'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'e4', 'Qe2', 'Qxd5', 'Nc3', 'Qd8'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'Nf6', 'Nc3', 'Bc5', 'Bb5', 'Ng4'], ['c4', 'e5', 'Nc3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'Bb4', 'e3', 'Bxc3'], ['f4', 'e6', 'Nf3', 'Nc6', 'Nc3', 'a6', 'd4', 'h6', 'e4', 'f6'], ['e4', 'd5', 'e5', 'e6', 'd4', 'h6', 'Ne2', 'a6', 'Ng3', 'Nc6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'a3', 'Nc6', 'h3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Qe7', 'Be3', 'Qxe4'], ['d4', 'd5', 'Bg5', 'h6', 'Bh4', 'Nc6', 'e3', 'g5', 'Bg3', 'Bg7'], ['d4', 'd5', 'h3', 'Nc6', 'Nf3', 'h6', 'Bf4', 'a6', 'e3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'Nf6', 'Nc3', 'Bc5', 'Bb5', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'd4', 'Nxe4', 'Bd3', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'd6', 'd4', 'cxd4', 'cxd4', 'g6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bc4', 'd6', 'd3', 'g6', 'f4', 'Bg7'], ['e4', 'c5', 'c4', 'Nc6', 'Nc3', 'd6', 'd3', 'g6', 'Be2', 'Bg7'], ['f3', 'e5', 'c4', 'f5', 'Nc3', 'Nf6', 'e3', 'd6', 'Bd3', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'e6', 'd4', 'cxd4', 'cxd4', 'Nf6'], ['e4', 'c5', 'Bc4', 'Nc6', 'c3', 'd6', 'd3', 'g6', 'Nd2', 'Bg7'], ['e4', 'e6', 'd4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'Be7', 'Bd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'c3', 'Bd7', 'd4', 'Be7'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'd6', 'd4', 'cxd4', 'cxd4', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'd6', 'd4', 'cxd4', 'cxd4', 'g6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bc4', 'd6', 'd3', 'g6', 'Nge2', 'Bg7'], ['e4', 'c5', 'c3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'e6', 'Nc3', 'Bb4'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Bc5', 'd4', 'exd4', 'cxd4', 'Bb4+'], ['e4', 'c5', 'c3', 'Nc6', 'f4', 'd6', 'Nf3', 'g6', 'd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'Bd3', 'Nc6', 'Bc2', 'e5'], ['c4', 'f5', 'd4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'Bb4', 'e3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'd6', 'c3', 'f5', 'Bd3', 'g6', 'Bc2', 'Nf6'], ['e4', 'c5', 'b4', 'e6', 'bxc5', 'Bxc5', 'd4', 'Bb6', 'c4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd4', 'd6', 'Qa4', 'a6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'Nxe4', 'Bd3', 'd5', 'dxe5', 'Nc6'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'Nf6', 'd3', 'h6', 'Nh3', 'Bxh3'], ['e4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nxd4', 'Nxd4', 'exd4', 'Bd3', 'c5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nc3', 'Bg7'], ['e4', 'Nc6', 'Nf3', 'd6', 'Bb5', 'Bd7', 'd4', 'e5', 'c3', 'exd4'], ['e4', 'c5', 'Nc3', 'Nc6', 'g3', 'd6', 'Bg2', 'Nf6', 'd3', 'g6'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'e6', 'd4', 'h6', 'Bd3', 'b6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nc6', 'Bb5', 'a6'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'Nc6', 'Nf3', 'Bg4', 'h3', 'Bh5'], ['d4', 'd5', 'c4', 'c6', 'e3', 'g6', 'Nc3', 'Bg7', 'Nf3', 'Nf6'], ['d4', 'd5', 'c4', 'c5', 'e3', 'Nf6', 'Nf3', 'e6', 'Nc3', 'a6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nf6', 'e3', 'c6', 'Bxc4', 'Nbd7'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'Nxd5', 'Qxd5'], ['d4', 'e5', 'dxe5', 'd6', 'exd6', 'Bxd6', 'c4', 'Nc6', 'a3', 'Bf5'], ['d4', 'd5', 'Nc3', 'c6', 'Nf3', 'a6', 'Bf4', 'h6', 'e3', 'g5'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nf6', 'Be2', 'Nc6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nc6', 'Bb5', 'a6'], ['d4', 'Nf6', 'c4', 'd5', 'Nc3', 'e6', 'e3', 'c5', 'dxc5', 'Bxc5'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'a6', 'Nf3', 'e6', 'a3', 'g6'], ['e4', 'c6', 'f4', 'd5', 'e5', 'e6', 'd4', 'a6', 'Nf3', 'g6'], ['d4', 'e6', 'a3', 'c5', 'dxc5', 'Bxc5', 'Nc3', 'a6', 'b4', 'Be7'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nf6', 'e3', 'e6', 'a3', 'b5'], ['d4', 'd5', 'c4', 'e6', 'a3', 'Nf6', 'Nc3', 'Nc6', 'e3', 'Ne4'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb3', 'Nc6', 'a3', 'e6'], ['d4', 'f5', 'e3', 'Nf6', 'Qf3', 'e6', 'a3', 'Bd6', 'c4', 'O-O'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'a6', 'h3', 'Nc6'], ['e4', 'Nc6', 'Nf3', 'b6', 'd4', 'Bb7', 'Nc3', 'Nf6', 'Bc4', 'e6'], ['e4', 'e5', 'Bc4', 'Bc5', 'd3', 'Qf6', 'Qf3', 'd5', 'exd5', 'Nh6'], ['e4', 'c5', 'Nc3'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'h6', 'Nxe5', 'd6', 'Nxf7'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'e6', 'Nf3', 'Nf6', 'e4', 'Bb4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Be7', 'Nf3', 'd6'], ['g4', 'e5', 'Bg2', 'd5', 'c4', 'd4', 'Qb3', 'c6', 'Nf3', 'f6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'Nd4', 'Ba4', 'Nxf3+'], ['e4', 'e5', 'd4', 'f6', 'dxe5', 'fxe5', 'Nf3', 'Nc6', 'Nc3', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bf4', 'e6', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Qe2', 'Qe7'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'd6', 'Nc3', 'Nf6'], ['e4', 'e6', 'd4', 'c5', 'dxc5', 'Bxc5', 'Nc3', 'Qf6', 'Nf3', 'e5'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'exd4', 'e5', 'Ng8', 'Nxd4', 'c5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'd5', 'Nb8', 'Bb5+', 'c6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'd4', 'exd4', 'Qxd4', 'Nc6'], ['c4', 'd5', 'c5', 'e5', 'd4', 'e4', 'e3', 'b6', 'b4', 'bxc5'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Bc5', 'h3', 'Nf6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'e5', 'Nf3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'c3', 'Bc5', 'Bg5', 'h6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Bd6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Bc5'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nd4', 'c3', 'Qh4', 'cxd4', 'Qxe4+'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bb5', 'g6', 'Qf3', 'a6', 'Bc4', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'b6', 'g3', 'c5'], ['e4', 'e5', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nc3', 'Nf6', 'b4', 'Nc6', 'a3', 'd6', 'd3', 'h6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Bg5', 'h6', 'Bxf6', 'Qxf6'], ['d4', 'd5', 'c4', 'Nf6', 'Nf3', 'Nc6', 'Nc3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'Nc6', 'Nf3', 'e6', 'd4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6'], ['e4', 'd5', 'e5'], ['e4', 'd5', 'e5'], ['d4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'e6', 'e4', 'dxe4', 'Ne5', 'c5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd4', 'd5', 'dxe5', 'dxe4'], ['e3', 'e5', 'Nf3', 'Nc6', 'h4', 'Nf6', 'Bc4', 'd5', 'Bd3', 'e4'], ['e4', 'd5', 'c3', 'dxe4', 'a4', 'Nf6', 'h4', 'Bg4', 'Qb3', 'b6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qf3', 'Ke7', 'Qxf7+', 'Kd6'], ['a4', 'a6', 'c4', 'Nc6', 'b3', 'e6', 'h4', 'Qf6', 'Nc3', 'Bb4'], ['d4', 'b5', 'e4', 'd5', 'e5', 'h5', 'Bxb5+', 'c6', 'Ba4', 'Bd7'], ['e4', 'e5', 'd4', 'Bd6', 'dxe5', 'Bxe5', 'Nf3', 'Bd6', 'Nc3', 'Nf6'], ['d4', 'Nc6', 'd5', 'Nb4', 'e4', 'c6', 'Qd3', 'Nxd3+', 'Bxd3', 'cxd5'], ['e4', 'e5', 'Qf3', 'Nc6', 'c3', 'Nf6', 'Bc4', 'd6', 'g4', 'Bxg4'], ['b4', 'd5', 'd4', 'g6', 'c3', 'Bg7', 'Nf3', 'Nc6', 'Bf4', 'f6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'g6', 'd4', 'f6', 'dxe5', 'fxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'd3', 'f5', 'exf5', 'Bxf5'], ['e4', 'e5', 'Nf3', 'd6', 'd3', 'Nc6', 'c4', 'f5', 'Be2', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bd6', 'Bxc6', 'dxc6', 'c3', 'Nf6'], ['g3', 'd5', 'Bg2', 'Nf6', 'd4', 'g6', 'Bf4', 'Nc6', 'Nc3', 'Bg7'], ['Nf3', 'd5', 'd4', 'Nf6', 'Bg5', 'g6', 'Bxf6', 'exf6', 'g3', 'f5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nh6', 'Nc3', 'Bc5'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'g6', 'c3', 'Bg7', 'e3', 'Bf5'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'g6', 'h3', 'Bg7'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bb5', 'g6', 'Qe2', 'Bc5', 'Bxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nce7', 'Nc3', 'Ng6'], ['d4', 'd5', 'e3', 'e6', 'Nf3', 'Nf6', 'Bd3', 'Qe7', 'O-O', 'h5'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'Nf6', 'c4', 'dxc4', 'Bxc4', 'Bf5'], ['e3', 'e5', 'Be2', 'Nc6', 'Nf3', 'd5', 'O-O', 'Be6', 'd4', 'Bd6'], ['d4', 'b6', 'e4', 'e6', 'Nc3', 'Bb7', 'Bd3', 'c6', 'Nf3', 'd5'], ['d4', 'd6', 'Nf3', 'g6', 'e3', 'Bg7', 'Bc4', 'Nf6', 'O-O', 'O-O'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'e6', 'Nc3', 'Bb4', 'Qd3', 'Nc6'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bxe6', 'fxe6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['f4', 'd5', 'd4', 'Nc6', 'e3', 'e6', 'Bb5', 'Nf6', 'Bxc6+', 'bxc6'], ['d4', 'd5', 'g3', 'Nc6', 'Bg2', 'e5', 'Nf3', 'Bd6', 'a3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'a3', 'O-O'], ['d4', 'd5', 'Nf3', 'e6', 'e3', 'Nf6', 'Nc3', 'Nc6', 'Bd3', 'Bd6'], ['d4', 'd5', 'Qd3', 'Nf6', 'Nf3', 'Bg4', 'Bf4', 'e6', 'Qc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'd5', 'Nbd2', 'Nf6', 'exd5', 'Qxd5'], ['e4', 'e5', 'd3', 'Nc6', 'c3', 'd6', 'Qf3', 'Be6', 'h3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'd3', 'Ng4'], ['e4', 'e5', 'Nc3', 'Nc6', 'd3', 'Nf6', 'Nh3', 'Bc5', 'Nd5', 'O-O'], ['d4', 'e6', 'Nf3', 'Nf6', 'e3', 'c5', 'Bc4', 'Nc6', 'O-O', 'Ne4'], ['e4', 'e5', 'f4', 'Nc6', 'Nc3', 'd6', 'Bc4', 'exf4', 'Nf3', 'Nf6'], ['d4', 'd5', 'c4', 'Bf5', 'cxd5', 'Qxd5', 'Nc3', 'Qd7', 'e4', 'Bg6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'g6', 'h3', 'Bc5', 'a4', 'b6'], ['e4', 'g6', 'Nf3', 'Bg7', 'd4', 'd6', 'Bc4', 'e6', 'Qe2', 'a6'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'exf4', 'd4', 'd6', 'Bxf4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nc6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4', 'Qxd4', 'b6'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Qxd4', 'Bg7', 'Qxg7'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'Nc6', 'dxc5', 'e5', 'Be3', 'Nf6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'g6', 'Nf3', 'Bg7'], ['e4', 'e6', 'e5', 'Nc6', 'd4', 'd6', 'Nf3', 'dxe5', 'Nxe5', 'Nxe5'], ['f4', 'd5', 'Nf3', 'e6', 'b3', 'Be7', 'Bb2', 'Nf6', 'Nc3', 'O-O'], ['e3', 'c5', 'Qh5', 'g6', 'Qxc5', 'd6', 'Qc3', 'Nf6', 'b4', 'Bg7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Be3', 'Nf6'], ['e4', 'e5', 'f4', 'Qf6', 'd4', 'exd4', 'e5', 'Qb6', 'Nf3', 'f6'], ['e4', 'c5', 'Nc3', 'g6', 'f4', 'Bg7', 'Bc4', 'Nc6', 'Nf3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qa4', 'Bd7'], ['c4', 'c5', 'Nc3', 'Nc6', 'd3', 'g6', 'g3', 'Bg7', 'Bd2', 'Nf6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'g6', 'a4', 'Bg7'], ['e3', 'd6', 'Qf3', 'c6'], ['e4', 'c5', 'd4', 'cxd4', 'Nf3', 'Nc6', 'Bf4', 'd6', 'e5', 'dxe5'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['e4', 'e5', 'f4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qc5', 'Qe2', 'Bd6'], ['e4', 'e6', 'Qe2', 'c5', 'Nf3', 'a6', 'd4', 'h6', 'd5', 'd6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'g5', 'h3', 'd6', 'd4', 'h5'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'a6', 'd4', 'b5', 'Bb3', 'c4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Nc3', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bd7', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'd3', 'Nc6', 'Be2', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'f4', 'Nc6', 'Bc4', 'e6', 'Nf3', 'd6', 'Nc3', 'a6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Be2', 'O-O'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'e6', 'Nc3', 'Bb4', 'Bg5', 'Bxc3+'], ['e4', 'c5', 'f4', 'Nc6', 'Nf3', 'd6', 'Bc4', 'e6', 'd3', 'Nf6'], ['c3', 'd5', 'b3', 'e5', 'Na3', 'Nf6', 'Nc2', 'Bc5', 'Bb2', 'Bxf2+'], ['d4', 'c6', 'e4', 'b6', 'Nf3', 'Na6', 'Bc4', 'Nc7', 'O-O', 'Bb7'], ['e4', 'Nc6', 'd4', 'Nb4', 'Bd2', 'Nf6', 'Bxb4', 'Nxe4', 'Bd3', 'Nxf2'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6', 'a3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd3', 'Nf6', 'h3', 'Bc5'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Bd3', 'd6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'h6', 'a3', 'Nf6', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'h6', 'h3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'a3', 'a6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'd3', 'd6', 'Bd2', 'Bxc3'], ['e4', 'e5', 'Nf3', 'f6', 'a3', 'Nc6', 'Nc3', 'a6', 'Bc4', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'h6', 'a3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nh6', 'Bxh6', 'gxh6'], ['e4', 'Nc6', 'd4', 'd5', 'e5', 'Bf5', 'a3', 'f6', 'Bf4', 'g5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'c4', 'd5'], ['e4', 'e6', 'd4', 'Nf6', 'Bg5', 'Be7', 'Bxf6', 'Bxf6', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'a3', 'Nf6', 'Nc3', 'O-O'], ['e4', 'c6', 'd4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'Bg4', 'h3', 'Bh5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'h3', 'Bb4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'h3', 'Be7'], ['e4', 'd5', 'e5', 'd4', 'Bc4', 'e6', 'd3', 'c5', 'Nf3', 'a6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'c6', 'Bc4', 'h6', 'Nxe5', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'd3', 'O-O'], ['e4', 'd6', 'd4', 'e5', 'dxe5', 'Be6', 'exd6', 'cxd6', 'h3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'a3', 'O-O'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'Nf3', 'Bb4', 'Bd2', 'Bxc3'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'h3', 'e6', 'Nf3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'a3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'h5', 'Ng5', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'a6', 'a3', 'h6'], ['e4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'd5', 'e5', 'Ne4', 'Ne2', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'Nxe5', 'g5', 'Bc4', 'd5'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Bc4', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'a3', 'Nf6', 'Nc3', 'Ng4'], ['e4', 'd5', 'e5', 'e6', 'd4', 'c5', 'c3', 'Qa5', 'a3', 'cxd4'], ['e4', 'e6', 'd4', 'd6', 'Nc3', 'Ne7', 'Bf4', 'Ng6', 'Bg3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'h6'], ['e4', 'c5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'e5', 'Ne4', 'Nb5', 'c4'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Qa5+', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nh6', 'Nc3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Qc7', 'Bxc6', 'Qxc6', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'a3', 'd6', 'Nc3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'h6', 'a3', 'a5'], ['d4', 'd5', 'c4', 'Nd7', 'Nc3', 'dxc4', 'e4', 'e6', 'a3', 'Nb6'], ['e4', 'e6', 'Nf3', 'Bd6', 'd4', 'c6', 'Nc3', 'Bb4', 'Bd2', 'Bxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bc4', 'd6', 'd3', 'Bg4'], ['e4', 'b6', 'Qf3', 'e6', 'Bc4', 'Bb7', 'Nh3', 'Nf6', 'Nf4', 'Bxe4'], ['e4', 'e6', 'Nf3', 'd5', 'Ne5', 'f6', 'Qf3', 'Qd6', 'Qh5+', 'g6'], ['e4', 'e5', 'Qh5', 'Bc5', 'Bc4', 'Bb4', 'Qxf7#'], ['e4', 'c5', 'Bc4', 'Nc6', 'Qf3', 'Ne5', 'd4', 'Nxf3+', 'Kf1', 'Nxd4'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qh5', 'g6', 'Qxe5+', 'Kf8', 'Qxh8', 'Qg5'], ['e4', 'c5', 'Qh5', 'e6', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'Qh4', 'd5'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qg4', 'd5', 'Qf3', 'dxc4'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Qe7', 'Nf3', 'Nf6', 'Qg5', 'Nxe4'], ['e4', 'e5', 'Bc4', 'c6', 'Nf3', 'f6', 'O-O', 'b5', 'Bd3', 'Bd6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Qh4', 'Nf3', 'Bb4+', 'c3', 'Qe7'], ['e4', 'e5', 'Bc4', 'b5', 'Bb3', 'Nf6', 'Nf3', 'Nxe4', 'O-O', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'Nxe4', 'Bd3', 'd5', 'O-O', 'exd4'], ['e4', 'd5', 'f3', 'Nf6', 'Bb5+', 'c6', 'Ba4', 'dxe4', 'Qe2', 'exf3'], ['e4', 'c5', 'd4', 'd6', 'Nf3', 'cxd4', 'a3', 'Nf6', 'Bd3', 'g6'], ['d4', 'd5', 'Nf3', 'c5', 'c4', 'e6', 'cxd5', 'exd5', 'Bg5', 'Nf6'], ['e4', 'e5', 'Nf3', 'f6', 'Nc3', 'Nc6', 'b3', 'd6', 'g3', 'Bg4'], ['e4', 'c5', 'f4', 'Nc6', 'Bc4', 'd6', 'c3', 'g6', 'd4', 'cxd4'], ['d4', 'Nf6', 'Nf3', 'd6', 'g3', 'Bg4', 'Bg2', 'Nbd7', 'O-O', 'e6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Be3', 'a6'], ['d4', 'Nf6', 'c4', 'd5', 'e3', 'Bf5', 'Nc3', 'e6', 'Qb3', 'Qc8'], ['e4', 'd6', 'd4', 'Bd7', 'Nc3', 'e6', 'Bc4', 'Ne7', 'e5', 'd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Be3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'Bb4', 'd3', 'Nd4'], ['c4', 'Nf6', 'e3', 'd5', 'h3', 'd4', 'e4', 'd3', 'f3', 'e5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd3', 'Nc6', 'Bd2', 'Bf5'], ['e4', 'c5', 'Qh5', 'd6', 'Bc4', 'e6', 'd3', 'Nf6', 'Qf3', 'Be7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'e6', 'd4', 'Qd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e6'], ['e4', 'e6', 'g3', 'Qg5', 'Bg2', 'Qg6', 'd3', 'd6', 'h3', 'e5'], ['e4', 'e5', 'Nf3'], ['e3', 'e5', 'd4', 'exd4', 'exd4', 'd5', 'Be3', 'Nc6', 'f4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Qe7', 'Bc4', 'h6', 'O-O', 'd6', 'd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'd5', 'd3', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd4', 'exd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nc6', 'Nc3', 'h6', 'd4', 'exd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bxc3', 'dxc3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nc6', 'Nc3', 'Nf6', 'Nf3', 'h6'], ['d4', 'd6', 'e4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Be2', 'O-O'], ['d4', 'Nf6', 'Nf3', 'c5', 'c4', 'Nc6', 'e3', 'e6', 'Nc3', 'd5'], ['d4', 'Nc6', 'c4', 'e5', 'Nf3', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'Qf6'], ['b4', 'c6', 'Bb2', 'a5', 'bxa5', 'Rxa5', 'e3', 'd5', 'c4', 'dxc4'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'd6', 'exd6', 'Qxd6', 'Qxd6', 'Bxd6'], ['e4', 'd6', 'd4', 'Nf6', 'Bd3', 'g6', 'f4', 'Bg7', 'Nf3', 'c5'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Be3', 'Nc6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nf3', 'e6', 'c5', 'Be7'], ['e4', 'd6', 'Nc3', 'Nf6', 'h3', 'g6', 'Nf3', 'Bg7', 'd4', 'O-O'], ['d4', 'd6', 'c4', 'Bd7', 'e4', 'f5', 'Qf3', 'Qc8', 'exf5', 'Bxf5'], ['e4', 'd6', 'Nc3', 'Nf6', 'Bc4', 'g6', 'Nf3', 'Bg7', 'O-O', 'O-O'], ['e4', 'd6', 'c3', 'Nf6', 'd3', 'g6', 'Nf3', 'Bg7', 'Be3', 'O-O'], ['e3', 'd6', 'g3', 'Nf6', 'Bg2', 'g6', 'Ne2', 'Bg7', 'Nbc3', 'O-O'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'g6', 'Bxc4', 'Bg7', 'Qf3', 'Nh6'], ['d4', 'c5', 'dxc5', 'e5', 'e4', 'Bxc5', 'Nf3', 'Nc6', 'c3', 'd6'], ['d4', 'd5', 'Bf4', 'Bf5', 'Nf3', 'e6', 'e3', 'a6', 'c3', 'c5'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'Nf3', 'dxe5', 'Nxe5', 'e6'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'Nf3', 'd6', 'exd6', 'exd6'], ['d4', 'd5', 'Bf4', 'c5', 'e3', 'Nc6', 'Bb5', 'Qb6', 'Bxc6+', 'bxc6'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'Nf6', 'e3', 'c5', 'c3', 'c4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'g3', 'Nf6', 'Bg2', 'Nc6'], ['e4', 'e6', 'Qf3', 'd5', 'exd5', 'Nh6', 'Nh3', 'Na6', 'Ng5', 'Nc5'], ['e3', 'Nc6', 'Bb5', 'Ne5', 'd4', 'Ng6', 'e4', 'e5', 'c3', 'c6'], ['e4', 'e5', 'd3', 'Bc5', 'Be2', 'Bxf2+', 'Kxf2', 'Qh4+', 'g3', 'Qf6+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nb4', 'Nxe5', 'a5', 'Nxf7', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Bd6', 'Nf3', 'Nxe4', 'Qe2', 'f5'], ['Nc3', 'Nc6', 'd4', 'd5', 'Bf4', 'e6', 'e3', 'Bd6', 'Bxd6', 'Qxd6'], ['Nc3', 'Nf6', 'd4', 'd5', 'Bg5', 'e6', 'e4', 'Be7', 'e5', 'Nfd7'], ['Nc3', 'd5', 'd4', 'e6', 'e4', 'c6', 'Nf3', 'dxe4', 'Nxe4', 'Be7'], ['Nc3', 'd5', 'e4', 'd4', 'Nce2', 'e5', 'f4', 'Nf6', 'fxe5', 'Nxe4'], ['Nc3', 'e5', 'e4', 'Nf6', 'Bc4', 'Nc6', 'd3', 'Bb4', 'Nf3', 'O-O'], ['Nc3', 'e5', 'e4', 'Nf6', 'Bc4', 'c6', 'd4', 'exd4', 'Qxd4', 'c5'], ['d4', 'Nf6', 'Nf3', 'd5', 'Bf4', 'c5', 'e3', 'Nc6', 'a3', 'Nh5'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'Nxe4', 'Qe2', 'd5', 'Nxe5', 'Be7'], ['Nh3', 'e5', 'g4', 'd5', 'a3', 'Bxg4', 'd4', 'e4', 'Nf4', 'Nf6'], ['e4', 'h5', 'Nc3', 'f6', 'd4', 'Nh6', 'Be2', 'g6', 'Bxh5', 'gxh5'], ['c4', 'Nf6', 'a4', 'b6', 'b3', 'Bb7', 'Na3', 'e6', 'Bb2', 'Bc5'], ['e4', 'e6', 'd4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'd5', 'exd5', 'exd5'], ['d4', 'e6', 'Bf4', 'Nf6', 'e3', 'Nd5', 'Bg3', 'Nc6', 'c3', 'd6'], ['d4', 'e6', 'e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'Nc3', 'd5'], ['c4', 'e6', 'Nc3', 'c6', 'Nf3', 'f6', 'g3', 'h5', 'h4', 'g6'], ['e3', 'e6', 'b3', 'Nf6', 'c4', 'd5', 'h3', 'Bb4', 'Bb2', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'e6', 'Nc3', 'Nge7', 'a3', 'a6'], ['g4', 'c5', 'Nf3', 'Nc6', 'Ng5', 'Nh6', 'h4', 'e6', 'Rg1', 'Ne5'], ['c4', 'c6', 'g3', 'f6', 'Bg2', 'a6', 'Nf3', 'b5', 'c5', 'e5'], ['e4', 'c5', 'c3', 'Nc6', 'f3', 'e6', 'Bc4', 'Ne5', 'Be2', 'g6'], ['c4', 'g6', 'd4', 'Bg7', 'e4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'd5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'Be3', 'cxd4'], ['c4', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'Nc3', 'O-O', 'b3', 'c5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nc3', 'Bg7'], ['c4', 'c6', 'Nc3', 'd5', 'cxd5', 'cxd5', 'd4', 'Nf6', 'Nf3', 'h6'], ['Nf3', 'c5', 'd3', 'Nc6', 'g3', 'e6', 'Bg2', 'g6', 'O-O', 'Bg7'], ['e4', 'e6', 'Nf3', 'a6', 'Bc4', 'b5', 'Bb3', 'Bb7', 'd3', 'g6'], ['c4', 'e6', 'Nc3', 'a6', 'Nf3', 'd6', 'g3', 'g6', 'Bg2', 'Bg7'], ['c4', 'e5', 'Nc3', 'Bb4', 'Nf3', 'Nc6', 'e3', 'Bxc3', 'bxc3', 'Na5'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'e6', 'c4', 'c5', 'Nc3', 'Nc6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'e6', 'Nf3', 'g6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'c4', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'b3', 'e6', 'Bb2', 'd5', 'exd5', 'exd5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'Nc3', 'c6'], ['e4', 'c5', 'Bc4', 'e6', 'd3', 'Nc6', 'Bf4', 'a6', 'Nf3', 'b5'], ['e4', 'c5', 'Bc4', 'e6', 'Qf3', 'Nf6', 'c3', 'd5', 'exd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'a6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e3', 'e5', 'e4', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'Nxe5', 'Nxe5'], ['c4', 'e5', 'e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Nxe5', 'Qe7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Qb6', 'Nxc6', 'Qxc6'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Be6', 'b3', 'Be7', 'g3', 'Nc6'], ['e4', 'e5', 'd3', 'd6', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Be3', 'Be6'], ['e4', 'e5', 'f3', 'd5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'Bb4', 'exd5', 'exd5'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Be7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'Bd3', 'c5', 'exd5', 'cxd4'], ['e4', 'c5', 'Bc4', 'Nf6', 'e5', 'd5', 'exf6', 'dxc4', 'fxg7', 'Bxg7'], ['d4', 'Nf6', 'g3', 'd5', 'Bg2', 'c5', 'dxc5', 'Nc6', 'a3', 'e6'], ['d4', 'e5', 'dxe5', 'd6', 'Nf3', 'dxe5', 'Qxd8+', 'Kxd8', 'Nxe5', 'Bb4+'], ['g3', 'e5', 'Bg2', 'Qf6', 'e4', 'Bc5', 'Nf3', 'g5', 'Nc3', 'g4'], ['d4', 'b6', 'c4', 'Nf6', 'Bf4', 'd6', 'e3', 'e5', 'dxe5', 'dxe5'], ['Nc3', 'e5', 'Nf3', 'Nc6', 'd4', 'e4', 'Nxe4', 'd5', 'Nc3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd4', 'Nxe4', 'O-O', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxe5', 'Qg5', 'Nxf7', 'Qxg2'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'Bf4', 'Nd7', 'Nf3', 'Ngf6'], ['d4', 'd5', 'e3', 'c5', 'a3', 'Nf6', 'dxc5', 'e6', 'b4', 'b6'], ['e4', 'e5', 'Nf3', 'Qe7', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Nc3', 'b6'], ['d4', 'e6', 'e4', 'd6', 'd5', 'e5', 'h3', 'a6', 'Nf3', 'h6'], ['e4', 'e6', 'e5', 'Qh4', 'Nf3', 'Qe4+', 'Be2', 'Nc6', 'Nc3', 'Qg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Nb4', 'O-O', 'a6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nf6', 'e5', 'Nc6', 'Qc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'Bc4', 'Bxc3', 'dxc3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'c3', 'h6', 'Qf3', 'd6'], ['d4', 'd5', 'c4', 'c5', 'Be3', 'Nf6', 'Nc3', 'dxc4', 'Qa4+', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'Nxe5', 'Ng4', 'd4', 'Qh4'], ['d4', 'Nc6', 'd5', 'Ne5', 'e4', 'd6', 'Nc3', 'Nf6', 'h3', 'g6'], ['e4', 'e5', 'Nc3', 'Nf6', 'Bc4', 'd6', 'h3', 'Nc6', 'a3', 'Be7'], ['e3', 'e5', 'Bc4', 'e4', 'Qh5', 'g6', 'Qe5+', 'Be7', 'Qxh8', 'Bf6'], ['e4', 'e5', 'Nf3', 'd5', 'd4', 'dxe4', 'Nxe5', 'Bd6', 'Qh5', 'Nh6'], ['e4', 'e6', 'e5', 'd5', 'd4', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nd4'], ['c4', 'Nc6', 'd3', 'e5', 'e4', 'Nd4', 'Be3', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Qf6', 'd5', 'Qg6', 'Nc3', 'a6'], ['e4', 'e5', 'a3', 'a6', 'Nf3', 'd6', 'Bc4', 'h6', 'h3', 'c5'], ['e4', 'a6', 'e5', 'd5', 'd4', 'Nc6', 'c3', 'Bf5', 'Nd2', 'e6'], ['a3', 'd5', 'd4', 'Bf5', 'Nc3', 'Nf6', 'Bf4', 'Nc6', 'Nb5', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'e6', 'Nb5', 'c6', 'Nc7+', 'Kd7'], ['e4', 'e5', 'a3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'h6', 'd4', 'Qf6', 'd5', 'Nd4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'f6', 'e5', 'fxe5', 'Qxe5+', 'Qe7'], ['e4', 'e5', 'a3', 'd5', 'Nf3', 'dxe4', 'Nxe5', 'c6', 'Bc4', 'Nh6'], ['e4', 'e6', 'e5', 'a6', 'd4', 'b5', 'a3', 'g6', 'Nf3', 'Bg7'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Bc4', 'Bxf3', 'Qxf3', 'Nh6'], ['c4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qc3', 'Bb4', 'Qxb4', 'Nxb4'], ['c4', 'e5', 'a3', 'e4', 'e3', 'Nf6', 'd4', 'd5', 'c5', 'b6'], ['c4', 'e5', 'd4', 'Bb4+', 'Bd2', 'Bxd2+', 'Nxd2', 'exd4', 'Ne4', 'Nc6'], ['d4', 'd5', 'Nc3', 'Nf6', 'e4', 'Nxe4', 'Nxe4', 'dxe4', 'Nh3', 'e5'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Bd3', 'c4'], ['e4', 'c5', 'c3', 'd5', 'e5', 'Bf5', 'd4', 'e6', 'Bb5+', 'Nc6'], ['e4', 'c5'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qa4', 'Nf6', 'c3', 'Bd6'], ['e3', 'c5', 'Qg4', 'e6', 'Bc4', 'd5', 'Bb5+', 'Nc6', 'Bxc6+', 'bxc6'], ['e3', 'e5', 'Qf3', 'd5', 'Qg3', 'e4', 'h3', 'Bd6', 'Qxg7', 'Qf6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qc3', 'Nf6', 'e5', 'Ng4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'Bc4', 'd5', 'Bxd5', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'd4', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd5', 'Nxe5', 'dxe4', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'd5', 'exd5', 'Qxd5', 'd4', 'e5', 'dxe5', 'Qxe5+', 'Be2', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd3', 'Qf6', 'Ng5', 'Qg6'], ['e4', 'e5', 'Bc4', 'Qh4', 'Nc3', 'd5', 'Nf3', 'Qd8', 'exd5', 'e4'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Qe7', 'Nf3', 'Nf6', 'Qg5', 'h6'], ['e4', 'e5', 'd3', 'd5', 'Qe2', 'd4', 'Bd2', 'Nc6', 'c3', 'Qf6'], ['e4', 'e5', 'd4', 'Qe7', 'dxe5', 'Qxe5', 'Nc3', 'Bc5', 'Nf3', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd5', 'Bxc6+', 'bxc6', 'Nxe5', 'd4'], ['e4', 'd5', 'Nc3', 'e6', 'd4', 'Bb4', 'e5', 'Qe7', 'a3', 'Bxc3+'], ['e4', 'e5', 'd4', 'd6', 'd5', 'Nf6', 'Nc3', 'Be7', 'Bg5', 'h6'], ['e4', 'e5', 'd3', 'd5', 'f3', 'd4', 'Bd2', 'Nc6', 'a3', 'a6'], ['e4', 'e5', 'Qh5', 'd6', 'Bc4', 'Nf6', 'Qf3', 'd5', 'exd5', 'e4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Qe2', 'Qxe2+', 'Bxe2', 'e5'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6', 'Be2', 'e4'], ['d4', 'd5', 'Nf3', 'e6', 'e3', 'c6', 'b3', 'f5', 'Ne5', 'h5'], ['d4', 'd5', 'e3', 'e6', 'c4', 'dxc4', 'Bxc4', 'Bb4+', 'Bd2', 'Nc6'], ['e4', 'e5', 'd3', 'Qf6', 'Qe2', 'Bc5', 'Be3', 'Bf8', 'h3', 'Qc6'], ['b4', 'e5', 'c3', 'Qf6', 'h4', 'c5', 'a3', 'Nh6', 'e3', 'Qf5'], ['e4', 'c6', 'Qf3', 'd5', 'd3', 'dxe4', 'dxe4', 'e5', 'Bc4', 'Nf6'], ['e4', 'e5', 'Bc4', 'c5', 'Qf3', 'Nh6', 'd3', 'Qe7', 'Bxh6', 'gxh6'], ['g4', 'Nf6', 'Bg2', 'Nc6', 'b4', 'Nxb4', 'Bb2', 'Nxg4', 'd4', 'Nxc2+'], ['h4', 'Nc6', 'g4', 'Nf6', 'Bg2', 'Nb4', 'Na3', 'Nxc2+', 'Nxc2', 'Nxg4'], ['e4', 'Nc6', 'c3', 'Nf6', 'd3', 'Na5', 'b4', 'Nc4', 'dxc4', 'Nxe4'], ['Nf3', 'c6', 'Nc3', 'd5', 'd4', 'Bg4', 'Ng5', 'h6', 'Nxf7', 'Kxf7'], ['e4', 'e5', 'Qh5', 'd6', 'a4', 'Nf6', 'Ra3', 'Nxh5', 'Rf3', 'f6'], ['e4', 'e5', 'f4', 'f6', 'fxe5', 'd6', 'Nf3', 'fxe5', 'Bc4', 'Nf6'], ['e4', 'b5', 'Bxb5', 'Bb7', 'c3', 'Bxe4', 'f3', 'Bf5', 'Bc4', 'g5'], ['b3', 'c5', 'Bb2', 'g6', 'Bxh8', 'a6', 'Bb2', 'e6', 'g3', 'd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Qb6', 'Nxc6', 'dxc6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'e3', 'e6', 'Bd3', 'Bd6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'd6', 'Nf3', 'Be6'], ['e4', 'd5'], ['e4', 'd5', 'f4', 'e6'], ['e4', 'd5'], ['e4', 'd5'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ne5', 'Nf6', 'd4', 'exd3', 'Bxd3', 'Nbd7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Bd3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Nxe5', 'Nxe5', 'd4', 'Bd6'], ['d3', 'e6', 'Nc3', 'Bc5', 'Nf3', 'Nf6', 'd4', 'Bb4', 'Bd2', 'd5'], ['b3', 'd5'], ['d4', 'd5'], ['d4', 'd5'], ['b3', 'd5'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Bg5', 'h6', 'Bh4', 'dxc4'], ['e4', 'd5'], ['b3', 'd5'], ['e4', 'd5'], ['e4', 'e5', 'Bc4', 'Nc6', 'd3', 'b6', 'Nf3', 'Bb7', 'c3', 'Be7'], ['e4', 'e5', 'Bc4', 'Nc6', 'Bxf7+', 'Kxf7', 'Qe2', 'Nf6', 'Qc4+', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bd6', 'Bxc6', 'dxc6', 'O-O', 'Nf6'], ['e4', 'c5', 'Nc3', 'e5', 'Bc4', 'h6', 'Nf3', 'Nc6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'O-O'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bc4', 'g6', 'd3', 'Bg7', 'Be3', 'd6'], ['e4', 'c5', 'Nc3', 'd6', 'Bc4', 'Nf6', 'd3', 'e6', 'Bg5', 'Be7'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Bc5', 'O-O', 'Nf6', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'd3', 'd6', 'Nc3', 'Bd7'], ['Nf3', 'd5', 'd4', 'Nf6', 'g3', 'Bf5', 'Bg2', 'Nc6', 'O-O', 'e6'], ['e4', 'Nc6', 'd4', 'e6', 'e5', 'Qh4', 'Nf3', 'Qh5', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'Nf6', 'Re1', 'd6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'c4', 'Nb6', 'd5', 'dxe5'], ['e4', 'd5', 'e5', 'Nc6', 'd4', 'f6', 'f4', 'Bf5', 'g4', 'Bg6'], ['e4', 'e6', 'Ne2', 'c6', 'e5', 'Qb6', 'd4', 'c5', 'Nbc3', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'Bc5'], ['e4', 'e5', 'Bc4', 'Nc6', 'd3', 'Bc5', 'Qf3', 'Nf6', 'Bg5', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'c6', 'Ba4', 'Bg4', 'Bb3', 'Nf6'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'Bc5', 'Bb5', 'Nge7', 'Qg4', 'O-O'], ['e4', 'd6', 'Nf3', 'e6', 'Bb5+', 'Nd7', 'd3', 'c6', 'Ba4', 'Ngf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'f5', 'exf5', 'e4', 'Ne5', 'd5'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Bc5', 'O-O', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bd6', 'd3', 'Nf6', 'O-O', 'a6'], ['e4', 'a5', 'Nf3', 'a4', 'Bb5', 'f6', 'O-O', 'c6', 'Bd3', 'b5'], ['Nc3', 'e5', 'e4', 'Nc6', 'Bc4', 'Nf6', 'Nf3', 'Bc5', 'Ng5', 'd5'], ['d4', 'Nf6', 'c4', 'e5', 'd5', 'Bc5', 'e3', 'Bb6', 'a3', 'c6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['d4', 'd5', 'Nf3', 'Bf5', 'e3', 'Nf6', 'b3', 'Nc6', 'Bb5', 'e6'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nce7', 'Nf3', 'd6', 'Be2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bc4', 'h6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bxb4', 'c3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'a3', 'O-O'], ['e4', 'c5', 'Nc3', 'd6', 'f4', 'Nf6', 'Nf3', 'a6', 'Ng5', 'e6'], ['e4', 'e5', 'Nc3', 'Nf6', 'Bc4', 'Nc6', 'Nf3', 'Nxe4', 'O-O', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Bb3', 'Nf6', 'd3', 'O-O'], ['e4', 'c6', 'Nc3', 'd5', 'd4', 'dxe4', 'Nxe4', 'Bf5', 'Qe2', 'Bxe4'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'Bc5', 'e3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Bg5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nc6', 'a4', 'd5', 'Bb5', 'dxe4'], ['e4', 'e6', 'Bc4', 'Bb4', 'c3', 'Bc5', 'Nf3', 'Bxf2+', 'Kxf2', 'Nh6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'd6', 'Bg5', 'f6'], ['d4', 'd5', 'Bf4', 'Bf5', 'Nc3', 'e6', 'a3', 'a6', 'b4', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'a6', 'Nc3', 'Bc5', 'Bc4', 'Qf6'], ['e4', 'e5', 'Bc4', 'Nc6', 'd3', 'h6', 'Nf3', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qf6', 'Nc3', 'a6', 'Nd5', 'Qd8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'a3', 'Bxc3', 'dxc3', 'd6'], ['e4', 'e5', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'Qf3', 'Ng5', 'Qd3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'Nf6', 'Nc3', 'Bc5', 'Bc4', 'h6'], ['e4', 'e5', 'Qf3', 'Nf6', 'Bc4', 'Nc6', 'c3', 'Bc5', 'b4', 'Bb6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nc6', 'Nc3', 'Bf5', 'Bxc4', 'Nf6'], ['f4', 'e5', 'Nf3', 'exf4', 'c4', 'Bb4', 'Kf2', 'Bc5+', 'Ke1', 'Bf2+'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'c6', 'Bf4', 'e6', 'Nf3', 'Nbd7'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'c3', 'Bh6'], ['Nf3', 'Nc6', 'd4', 'e6', 'g3', 'Nf6', 'Bg2', 'Be7', 'O-O', 'd6'], ['Nf3', 'e6', 'g3', 'Nf6', 'Bg2', 'Be7', 'O-O', 'O-O', 'c4', 'd5'], ['d4', 'g6', 'Nf3', 'Nf6', 'Bg5', 'Bg7', 'Nbd2', 'd5', 'e3', 'O-O'], ['e4', 'g6', 'Nf3', 'Bg7', 'Bc4', 'c5', 'Ng5', 'e6', 'd3', 'Ne7'], ['e4', 'g6', 'Bc4', 'Bg7', 'd4', 'e5', 'd5', 'd6', 'Nf3', 'Ne7'], ['Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'c5', 'O-O', 'Nc6', 'c3', 'd5'], ['Nf3', 'Nf6', 'g3', 'b6', 'Bg2', 'Bb7', 'O-O', 'Nc6', 'd4', 'Rb8'], ['Nf3', 'e6', 'g3', 'd5', 'Bg2', 'Nf6', 'O-O', 'Nbd7', 'd4', 'Be7'], ['e4', 'g6', 'd4', 'Bg7', 'c3', 'e5', 'Be3', 'Ne7', 'Bd3', 'O-O'], ['b4', 'Nf6', 'Bb2', 'e5', 'Bxe5', 'Bxb4', 'a3', 'Ba5', 'Nf3', 'd6'], ['Nf3', 'Nf6', 'g3', 'Nc6', 'd4', 'e6', 'Bg2', 'd5', 'O-O', 'Be7'], ['Nf3', 'd5', 'g3', 'Nc6', 'd4', 'Bg4', 'Bg2', 'Bxf3', 'Bxf3', 'Nf6'], ['f4', 'd5', 'd3', 'Nf6', 'Nf3', 'g6', 'e3', 'Bg4', 'Be2', 'Bg7'], ['Nf3', 'e6', 'g3', 'd6', 'Bg2', 'Ne7', 'O-O', 'c6', 'c4', 'Ng6'], ['e4', 'Nf6', 'd3', 'e5', 'g3', 'Bc5', 'Bg2', 'O-O', 'h3', 'Nc6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'd3', 'O-O', 'Bd2', 'Bxc3'], ['Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'e6', 'O-O', 'Bxf3', 'exf3', 'd5'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'd6', 'Bg5', 'Nf6', 'Nc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'd3', 'Nf6'], ['Nf3', 'd6', 'g3', 'g6', 'Bg2', 'Bg4', 'O-O', 'c6', 'd4', 'Bg7'], ['Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'O-O', 'c4', 'c5'], ['Nf3', 'd5', 'g3', 'Nf6', 'Bg2', 'Bg4', 'O-O', 'Nc6', 'd4', 'e6'], ['Nf3', 'Nc6', 'd4', 'd5', 'g3', 'a6', 'Bg2', 'Nf6', 'O-O', 'Bg4'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bd3', 'O-O'], ['Nf3', 'd5', 'g3', 'Nc6', 'd4', 'a5', 'Bg2', 'a4', 'a3', 'Bf5'], ['Nf3', 'd5', 'g3', 'Nc6', 'd4', 'f6', 'Bg2', 'e5', 'dxe5', 'fxe5'], ['d4', 'Nf6', 'e4', 'Nxe4', 'Qd3', 'd5', 'f3', 'Nf6', 'c4', 'c6'], ['e4', 'g6', 'd4', 'Bg7', 'Bc4', 'c5', 'Nf3', 'cxd4', 'Bxf7+', 'Kxf7'], ['d4', 'Nf6', 'a3', 'g6', 'e3', 'Bg7', 'b4', 'O-O', 'c4', 'c6'], ['Nf3', 'Nf6', 'g3', 'd5', 'Bg2', 'Bg4', 'Ne5', 'e6', 'Nxg4', 'Nxg4'], ['Nf3', 'f5', 'c4', 'Nf6', 'd4', 'e6', 'Nc3', 'd5', 'Bg5', 'c6'], ['Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'O-O', 'c4', 'a6'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'd4', 'e6', 'c5', 'Nd5'], ['Nf3', 'e6', 'c4', 'Nc6', 'd4', 'd5', 'g3', 'Nf6', 'Bg2', 'Ne7'], ['Nf3', 'Nc6', 'd4', 'd5', 'g3', 'h6', 'Bg2', 'Nf6', 'O-O', 'Bf5'], ['e4', 'g6', 'd4', 'Bg7', 'Bc4', 'c5', 'dxc5', 'Qa5+', 'c3', 'Qxc5'], ['d4', 'Nf6', 'Bf4', 'e6', 'Nf3', 'c5', 'c3', 'Be7', 'e3', 'O-O'], ['c4', 'e5', 'Qa4', 'Nc6', 'Na3', 'd6', 'Nb5', 'a6', 'Qa5', 'b6'], ['e4', 'e5', 'Nf3', 'f6', 'Nc3', 'f5', 'exf5', 'Nf6', 'Nxe5', 'Qe7'], ['d4', 'Nc6', 'c4', 'e5', 'd5', 'Bb4+', 'Nd2', 'Bxd2+', 'Bxd2', 'Nd4'], ['e4', 'e5', 'Qh5', 'Nc6', 'c3', 'Nf6', 'Qf3', 'Bc5', 'h3', 'd5'], ['e4', 'e5', 'd4', 'd5', 'dxe5', 'dxe4', 'Bb5+', 'Ke7', 'Bg5+', 'Ke6'], ['f3', 'e5', 'd3', 'd5', 'Nc3', 'd4', 'Nb5', 'a6', 'Na3', 'Nf6'], ['d4', 'd5', 'Bf4', 'Bf5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'e3', 'e6'], ['e3', 'e5', 'd3', 'Bb4+', 'Bd2', 'Bxd2+', 'Qxd2', 'd5', 'Nc3', 'Nf6'], ['d4', 'd5', 'g3', 'g6', 'Bh3', 'Bh6', 'e3', 'e6', 'Nc3', 'Nc6'], ['e4', 'e6', 'e5', 'g6', 'Bc4', 'c6', 'd4', 'Bb4+', 'c3', 'Bxc3+'], ['e4', 'e6', 'd4'], ['b3', 'e6', 'c3', 'c5', 'e4', 'Nc6', 'Bd3', 'Qc7', 'Nf3', 'Be7'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nc6', 'h4', 'Nd4', 'Nxd4', 'd6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qh5', 'Bxf2+', 'Kxf2', 'Qe7', 'Nc3', 'Nh6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f6', 'Bc4', 'Nc6', 'd5', 'Be7'], ['e3', 'e5', 'f3', 'Nc6', 'b3', 'Nf6', 'Nh3', 'd5', 'Bd3', 'e4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'a6', 'd4', 'c6', 'dxe5', 'Nxe4'], ['d3', 'd5', 'Bg5', 'f6', 'Bh4', 'g5', 'Bg3', 'd4', 'e4', 'e5'], ['d4', 'h6', 'e4', 'e6', 'Nc3', 'g6', 'Nf3', 'Nc6', 'd5', 'a5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Bxf2+'], ['e4', 'e5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Qf3', 'Qe6+', 'Be2', 'Nf6', 'Qb3', 'Nc6'], ['e4', 'e5', 'Bb5', 'Qe7', 'Bc4', 'Nh6', 'Nc3', 'c6', 'Nf3', 'd6'], ['e4', 'e6', 'Nh3', 'd5', 'exd5', 'Nf6', 'dxe6', 'Bxe6', 'Qf3', 'Bd6'], ['e4', 'e5', 'd3', 'Bc5', 'Nf3', 'Nf6', 'a3', 'Ng4', 'Be3', 'Nxe3'], ['e4', 'c5', 'Na3'], ['d4', 'Nf6', 'e3', 'Nc6', 'Qf3', 'd5', 'Bd3', 'Bg4', 'Qg3', 'e6'], ['e4', 'd5', 'Bd3', 'Bg4', 'Qxg4', 'Nf6', 'Qf5', 'Qd6', 'Nc3', 'Qe6'], ['d4', 'Nc6', 'Nf3', 'd5', 'Nc3', 'e6', 'e3', 'Nf6', 'Bb5', 'Bd7'], ['d4', 'd5', 'Bg5', 'f6', 'Bh4', 'g5', 'Bg3', 'Nc6', 'Nc3', 'e6'], ['e4', 'e5', 'd4', 'Bd6', 'b4', 'exd4', 'Bb2', 'Bxb4+', 'c3', 'dxc3'], ['e4', 'e6', 'd4', 'a6', 'Nf3', 'Bb4+', 'c3', 'Ba5', 'b4', 'Bb6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Bc4', 'd6', 'Nxc3', 'e6'], ['e4', 'e5', 'd4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Bb4', 'a3', 'Bxc3+'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nc6'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nb4', 'c3', 'Na6', 'b4', 'Nf6'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'Nf6', 'Bd3', 'g6', 'Nf3', 'Bg7'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Bc4', 'd6', 'Nxc3', 'Nf6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'Bc5', 'Nxc3', 'd6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'Nc6', 'Nxc3', 'Qf6'], ['e4', 'e5', 'd4', 'Nf6', 'Nc3', 'exd4', 'Qxd4', 'Nc6', 'Qd3', 'Ne5'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'd6'], ['e4', 'e5', 'd4', 'Qf6', 'Nf3', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'd6'], ['e4', 'e6', 'd4', 'e5', 'dxe5', 'Nc6', 'Bf4', 'Bc5', 'Bc4', 'Bxf2+'], ['e4', 'e5', 'd4', 'Nf6', 'Nc3', 'Bb4', 'Bd2', 'Bxc3', 'Bxc3', 'exd4'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nf6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Bb4+'], ['e4', 'e5', 'd4', 'Qh4', 'Bd3', 'exd4', 'Nf3', 'Qg4', 'c3', 'Qxg2'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Bc4', 'e6', 'Nxc3', 'Nc6'], ['e4', 'g6', 'd4', 'Bg7', 'c3', 'e6', 'Nf3', 'Ne7', 'e5', 'O-O'], ['e4', 'e5', 'd4', 'f6', 'Bc4', 'c6', 'Nf3', 'd5', 'dxe5', 'dxc4'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Bb4+'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nce7', 'b3', 'Ng6', 'Bb2', 'Bb4+'], ['e4', 'e5', 'd4', 'f6', 'Nf3', 'Nc6', 'Bc4', 'Nh6', 'dxe5', 'fxe5'], ['e4', 'c6', 'd4', 'd5', 'Bd3', 'dxe4', 'Bxe4', 'Nf6', 'Bf3', 'Bf5'], ['e4', 'e5', 'd4', 'd5', 'Nf3', 'Nc6', 'b3', 'dxe4', 'Ng5', 'Bb4+'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'd6', 'Nf3', 'f6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'd6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'Qa5', 'b4', 'Qe5', 'Bd3', 'Nf6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'Nc6', 'Nxc3', 'd6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Bb4+'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'd6', 'Qd5', 'Qd7'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'd6'], ['e4', 'e5', 'd4', 'f6', 'Nf3', 'd6', 'Bc4', 'Ne7', 'dxe5', 'fxe5'], ['e4', 'b5', 'Nc3', 'c6', 'b4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nf6'], ['e4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Bd3', 'e6', 'Nf3', 'Nc6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Qh4'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'Nc6', 'cxd4', 'Bb4+', 'Nc3', 'Qf6'], ['d4', 'e6', 'Nf3', 'Nc6', 'Bf4', 'd5', 'e3', 'Bd7', 'Nc3', 'f6'], ['e4', 'd5', 'exd5', 'Qxd5', 'c4', 'Qa5', 'Nc3', 'g6', 'Qa4+', 'Qxa4'], ['e4', 'b6', 'd4', 'Ba6', 'Bxa6', 'Nxa6', 'Ne2', 'c5', 'd5', 'e6'], ['g3', 'Nf6', 'Bg2', 'd5', 'd3', 'c6', 'Bg5', 'Nfd7', 'Nc3', 'h6'], ['e4', 'b6', 'Ne2', 'Bb7', 'd3', 'Nf6', 'h3', 'e6', 'Be3', 'Bc5'], ['g3', 'Nf6', 'Bg2', 'g6', 'c3', 'Bg7', 'Qb3', 'd5', 'e3', 'c6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Be2', 'Qxg2', 'Bf3', 'Qg6', 'd4', 'e6'], ['g3', 'b6', 'Bg2', 'd5', 'Nc3', 'Bb7', 'e4', 'e6', 'exd5', 'exd5'], ['e4', 'b6', 'g3', 'Ba6', 'Bg2', 'Nc6', 'c3', 'e6', 'a4', 'Qf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Bc4', 'e6', 'Nf3', 'Bd6'], ['e4', 'd5', 'e5', 'Be6', 'd4', 'Nd7', 'Nf3', 'f6', 'c3', 'Nh6'], ['e4', 'd6', 'd4', 'g6', 'Nf3', 'Bg7', 'Be2', 'c5', 'dxc5', 'Qa5+'], ['e4', 'e5', 'f4', 'Nc6', 'Bc4', 'exf4', 'c3', 'Na5', 'Bd3', 'Qh4+'], ['d4', 'd5', 'Bf4', 'c5', 'dxc5', 'Qa5+', 'Nd2', 'e6', 'e3', 'Nc6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Bg4', 'Be2', 'Bf5', 'h3', 'e6'], ['d4', 'd5', 'Bf4', 'e6', 'e3', 'b6', 'Nf3', 'Bb7', 'Bb5+', 'c6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'Nf6', 'Nc3', 'd6', 'Bg5', 'Be7'], ['d4', 'Nf6', 'h3', 'd5', 'Bf4', 'e6', 'e3', 'c5', 'dxc5', 'Bxc5'], ['d4', 'Nf6', 'h3', 'e6', 'Bf4', 'c5', 'dxc5', 'Bxc5', 'a3', 'O-O'], ['d4', 'd5', 'Bf4', 'c5', 'dxc5', 'e6', 'e3', 'Nc6', 'Nf3', 'Bxc5'], ['d4', 'Nf6', 'h3', 'g6', 'Bf4', 'Bg7', 'e3', 'O-O', 'Nf3', 'd6'], ['d4', 'g6', 'Bf4', 'Bg7', 'e3', 'Nf6', 'h3', 'd6', 'Nf3', 'Nc6'], ['d4', 'g6', 'Bf4', 'Bg7', 'e3', 'Nf6', 'h3', 'd5', 'Nf3', 'e6'], ['d4', 'e6', 'Bf4', 'b6', 'e3', 'Nf6', 'h3', 'Nd5', 'Bh2', 'Nc6'], ['d4', 'Nf6', 'h3', 'g6', 'Bf4', 'Bg7', 'e3', 'Nc6', 'Nf3', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Bg5', 'Be7', 'Nc3', 'h6', 'Bxf6', 'Bxf6'], ['d4', 'Nf6', 'h3', 'g6', 'Bf4', 'Bg7', 'e3', 'd6', 'Nf3', 'O-O'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'Nc6', 'd5', 'exd5', 'exd5', 'Nb4'], ['d4', 'Nf6', 'h3', 'd5', 'Bf4', 'Bf5', 'e3', 'Nbd7', 'Nf3', 'e6'], ['d4', 'e6', 'Bf4', 'Ne7', 'e3', 'Ng6', 'Bg3', 'h5', 'h3', 'h4'], ['d4', 'd5', 'Bf4', 'c5', 'dxc5', 'e6', 'e3', 'Bxc5', 'Nf3', 'Nf6'], ['d4', 'e6', 'Bf4', 'd5', 'e3', 'Bd6', 'Bxd6', 'Qxd6', 'a3', 'a5'], ['d4', 'd5', 'Nf3', 'h6', 'e3', 'Bf5', 'Nc3', 'e6', 'Ne5', 'Nd7'], ['d4', 'f5', 'Bf4', 'd5', 'e3', 'Be6', 'Be5', 'Nd7', 'Nf3', 'Ngf6'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Nf6', 'h3', 'Nh5', 'Qxh5', 'g6'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'Nf6'], ['d4', 'd5', 'Bf4', 'c5', 'dxc5', 'Nc6', 'e3', 'e5', 'Bg3', 'Bxc5'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5'], ['d4', 'c6', 'Bf4', 'd5', 'e3', 'Nf6', 'h3', 'e6', 'Nf3', 'c5'], ['d4', 'Nf6', 'h3', 'e6', 'Bf4', 'd5', 'e3', 'c5', 'dxc5', 'Bxc5'], ['d4', 'd5', 'Bf4', 'e6', 'e3', 'Nf6', 'h3', 'Bd6', 'Bxd6', 'Qxd6'], ['d4', 'e5', 'dxe5', 'Nc6', 'Bf4', 'f6', 'e3', 'fxe5', 'Bg3', 'Qf6'], ['d4', 'd5', 'Bf4', 'c6', 'e3', 'e6', 'Nf3', 'Bd6', 'Bxd6', 'Qxd6'], ['d4', 'c6', 'Bf4', 'd5', 'e3', 'Nf6', 'h3', 'e6', 'Nf3', 'Be7'], ['d4', 'Nf6', 'h3', 'd6', 'Bf4', 'g6', 'e3', 'Bg7', 'Nf3', 'O-O'], ['d4', 'e6', 'Bf4', 'g5', 'Be5', 'f6', 'Bg3', 'c5', 'dxc5', 'Bxc5'], ['d4', 'g6', 'Bf4', 'Bg7', 'e3', 'd6', 'Nf3', 'Nf6', 'h3', 'O-O'], ['d4', 'g6', 'Bf4', 'Bg7', 'e3', 'c6', 'Nf3', 'Qa5+', 'Nbd2', 'c5'], ['d4', 'f5', 'Bf4', 'Nf6', 'e3', 'd6', 'h3', 'g6', 'Nf3', 'Bg7'], ['d4', 'e6', 'Bf4', 'd6', 'e3', 'Nf6', 'h3', 'Be7', 'Nf3', 'h6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Nc6', 'h3', 'Bf5', 'a3', 'e6'], ['d4', 'g6', 'Bf4', 'Bg7', 'e3', 'e6', 'Nf3', 'Ne7', 'a3', 'O-O'], ['d4', 'd5', 'e3', 'Bf5', 'Nf3', 'e6', 'a3', 'h6', 'Nbd2', 'Nf6'], ['d4', 'Nf6', 'h3', 'd5', 'Bf4', 'h6', 'e3', 'g5', 'Be5', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Ne5'], ['d4', 'e5', 'dxe5', 'Qe7', 'Nf3', 'Qb4+', 'Nbd2', 'a5', 'c3', 'Qb5'], ['d4', 'd5', 'Bf4', 'e6', 'e3', 'Nc6', 'Nf3', 'f6', 'c4', 'g5'], ['d4', 'd5', 'Bf4', 'c6', 'e3', 'Nd7', 'Nf3', 'Qb6', 'b3', 'h5'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'g6', 'h3', 'Bg7', 'Nf3', 'O-O'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb3', 'a5', 'd3', 'a4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'a3', 'd6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Qf3', 'Nc6', 'c3', 'Bc5', 'd3', 'd6'], ['e4', 'd6', 'd4', 'e5', 'dxe5', 'Nh6', 'Bxh6', 'gxh6', 'exd6', 'cxd6'], ['d4', 'e6', 'e4', 'Bb4+', 'c3', 'Bd6', 'e5', 'Be7', 'Nf3', 'Bf6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'Nf3', 'Bb4', 'a3', 'Bd6'], ['e4', 'b6', 'Qh5', 'Nf6', 'Qf3', 'Bb7', 'd3', 'Nc6', 'Bg5', 'Nd4'], ['e4', 'b6', 'd4', 'Bb7', 'd5', 'Nf6', 'Bd3', 'e6', 'c4', 'Bb4+'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Be6', 'Nc3', 'c5', 'Be2', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Be3', 'Qb6'], ['e4', 'c5', 'c4', 'Nc6', 'Nc3', 'Nf6', 'd3', 'd6', 'f4', 'g6'], ['d4', 'b5', 'e4', 'c6', 'c4', 'a6', 'a3', 'e6', 'Nc3', 'Ne7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Qd8', 'Nc3', 'Nc6', 'Be2', 'Nf6'], ['f4', 'd5', 'Nf3', 'c5', 'd4', 'c4', 'Bd2', 'e6', 'e3', 'Bd7'], ['d4', 'd5', 'Nf3', 'e6', 'e3', 'Nc6', 'Be2', 'Bd7', 'O-O', 'Nf6'], ['d4', 'e6', 'e4', 'Ne7', 'e5', 'Nbc6', 'c4', 'g6', 'd5', 'Nxe5'], ['d4', 'd5', 'c3', 'Nf6', 'Nf3', 'Bg4', 'Nbd2', 'Ne4', 'Ne5', 'Qd6'], ['d4', 'd5', 'Nf3', 'c6', 'e3', 'Nf6', 'Nh4', 'e6', 'Bd3', 'Bd6'], ['d4', 'd5', 'Nf3', 'e6', 'e3', 'Nc6', 'b3', 'Bd6', 'c4', 'Bb4+'], ['d4', 'g6', 'e4', 'Nc6', 'd5', 'Na5', 'c4', 'c6', 'Nc3', 'e6'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'f6', 'b3', 'e5', 'c4', 'exd4'], ['d3', 'd5', 'd4', 'e5', 'dxe5', 'd4', 'c3', 'c5', 'a4', 'f5'], ['d4', 'd5', 'Nf3', 'e6', 'e3', 'b6', 'Bb5+', 'Ke7', 'Ne5', 'c6'], ['Nf3', 'd5', 'd4', 'Nc6', 'h3', 'e6', 'c3', 'Nf6', 'Nbd2', 'Bd6'], ['c4', 'e5', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8', 'e4', 'Bb4+'], ['e4', 'd5', 'exd5', 'Qxd5', 'Be2', 'e5', 'Nc3', 'Qe6', 'Bb5+', 'c6'], ['c4', 'Nc6', 'Nc3', 'e5', 'a3', 'a6', 'e3', 'b5', 'cxb5', 'axb5'], ['d4', 'd5', 'b3', 'Nc6', 'c4', 'dxc4', 'bxc4', 'Qxd4', 'Bb2', 'Qxb2'], ['e4', 'e5', 'd4', 'd5', 'dxe5', 'dxe4', 'Qxd8+', 'Kxd8', 'g3', 'Nc6'], ['Nc3', 'e5', 'e4', 'Nf6', 'Nf3', 'Rg8', 'Bc4', 'Be7', 'Ng5', 'Rf8'], ['d4', 'd5', 'Nf3', 'e6', 'e3', 'h6', 'c3', 'Bd6', 'b4', 'Nf6'], ['Nf3', 'c5', 'd4', 'cxd4', 'Nxd4', 'g6', 'g4', 'a6', 'b4', 'Bg7'], ['Nf3', 'd6', 'd3', 'h6', 'Qd2', 'e5', 'd4', 'e4', 'Ng1', 'Be7'], ['e4', 'Nc6', 'Nc3', 'Nd4', 'Nf3', 'Nxf3+', 'gxf3', 'Nf6', 'Nd5', 'Nxd5'], ['g3', 'e5', 'Bg2', 'Nf6', 'e3', 'd6', 'f4', 'exf4', 'gxf4', 'd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'Nb8', 'd4', 'cxd4', 'cxd4', 'd6'], ['a4', 'Nf6', 'e4', 'd6', 'e5', 'dxe5'], ['c3', 'e5', 'd3', 'e4', 'dxe4', 'd6', 'c4', 'd5', 'cxd5', 'Qxd5'], ['e4', 'e5', 'Nf3', 'd5', 'd3', 'dxe4', 'Nxe5', 'c6', 'Qh5', 'Ke7'], ['e4', 'c6', 'Qh5', 'Nf6', 'Qh4', 'd5', 'Qf4', 'Nxe4', 'Qg3', 'Nxg3'], ['e4', 'b5', 'd3'], ['e4', 'd5', 'Nf3', 'd4', 'Bc4', 'Qd6', 'e5', 'Qb4', 'Bb3', 'Qb6'], ['h4', 'e5', 'g3', 'Bc5', 'f3', 'Qf6', 'Rh2', 'Qg6', 'h5', 'Qxg3+'], ['e3', 'e5', 'f4', 'c6', 'fxe5', 'Na6', 'e6', 'dxe6', 'g4'], ['g4', 'e5', 'f3', 'c6', 'f4', 'Qh4#'], ['g4', 'd5', 'e3', 'g6', 'g5', 'e5', 'f4', 'Nc6', 'e4', 'dxe4'], ['g3', 'e6', 'g4', 'd5', 'g5', 'Qxg5', 'Nf3', 'Qf6', 'Ng1', 'Bc5'], ['e4', 'd5', 'Nf3', 'Qd6', 'e5', 'Qxe5+', 'Nxe5', 'd4', 'Qf3', 'Bg4'], ['f4', 'e5', 'fxe5', 'd6', 'exd6', 'Bxd6', 'Nf3', 'Qf6', 'Nd4', 'Qxd4'], ['e4', 'd6', 'Nf3', 'Nc6', 'd4', 'Nxd4', 'Nxd4', 'c5', 'Nb5', 'a6'], ['a4', 'e5'], ['e4', 'h5', 'Nf3', 'g6', 'Nc3', 'Nc6', 'd4', 'Nxd4', 'Qxd4', 'c6'], ['e4', 'c5', 'Nf3'], ['d4', 'd6', 'e4', 'Nf6', 'Nc3', 'Nbd7', 'Be3', 'e5', 'd5', 'Be7'], ['e4', 'e5', 'Nf3', 'f5', 'exf5', 'Bc5', 'd3', 'Nf6', 'Be2', 'O-O'], ['b4', 'd5', 'Bb2', 'Bf5', 'Nf3', 'e6', 'g3', 'h6', 'a3', 'a6'], ['e4', 'e5', 'Nf3', 'f5', 'd3', 'fxe4', 'dxe4', 'Nc6', 'Bc4', 'Nd4'], ['b4', 'e5', 'Bb2', 'Bxb4', 'Bxe5', 'f6', 'Bc3', 'Bxc3', 'Nxc3', 'd6'], ['d4', 'f5'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Bf5', 'f3', 'e6', 'fxe4', 'Bg6'], ['e4', 'e5', 'Nf3', 'f5', 'Nxe5', 'Bc5', 'Qh5+', 'g6', 'Nxg6', 'Nf6'], ['b4', 'a5', 'b5', 'c6', 'a4', 'd5', 'Bb2', 'Bf5', 'Nc3', 'Nf6'], ['f4', 'e6', 'e4', 'Qh4+', 'g3'], ['e4', 'd5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'Nxe4', 'Nxe4', 'd5'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Bf5', 'g4', 'Bg6', 'f3', 'e6'], ['e4', 'e5', 'Nf3', 'f5', 'Nxe5', 'Bc5', 'Qh5+', 'g6', 'Nxg6', 'Nf6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Bf5', 'Nc3', 'e6', 'Bd3', 'Bxd3'], ['d4', 'Nf6', 'Nc3', 'd5', 'e4', 'dxe4', 'f3', 'exf3', 'Qxf3', 'Nc6'], ['d4', 'Nf6', 'Nc3', 'e6', 'e4', 'd5', 'e5', 'Nfd7', 'Be3', 'b6'], ['e4', 'e5', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'Qg4', 'Qf6', 'Qg3', 'Nd4'], ['f4', 'e5', 'Nf3', 'exf4', 'c4', 'Bb4', 'Kf2', 'Bc5+', 'Ke1', 'Bf2+'], ['c4', 'e5', 'e4', 'Bb4', 'Qb3', 'c5', 'Bd3', 'a5', 'Nf3', 'a4'], ['e4', 'e5', 'Bb5', 'c6', 'Bd3', 'd5', 'f3', 'Na6', 'a4', 'Nb4'], ['a4', 'e5', 'h4', 'Bb4', 'e3', 'Qg5', 'hxg5', 'Bxd2+', 'Qxd2', 'd5'], ['c4', 'e5', 'c5', 'Qg5', 'Qa4', 'b5', 'h4', 'Qh6', 'Qc2', 'g6'], ['c4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'Bb4', 'Qa4+', 'Nc6'], ['e4', 'g6', 'd4', 'd6', 'f4', 'Bg7', 'Nf3', 'Bg4', 'c3', 'Nd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'Nc6', 'Bb5', 'Nd4', 'O-O', 'Nxb5'], ['e4', 'e6', 'd4', 'c6', 'Nf3', 'd5', 'e5', 'c5', 'Nc3', 'cxd4'], ['c4', 'c6', 'e4', 'd5', 'c5', 'dxe4', 'Bc4', 'e6', 'a3', 'Bxc5'], ['d4', 'a5', 'e4', 'Ra6', 'e5', 'Re6', 'Nf3', 'd6', 'Bf4', 'dxe5'], ['e4', 'e6', 'd4', 'd6', 'c4', 'Nf6', 'Nc3', 'Be7', 'Nf3', 'O-O'], ['e4', 'e6', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'O-O', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'Bb4', 'Bg5', 'exd4'], ['Nf3', 'd5', 'c4', 'e6', 'g3', 'c5', 'cxd5', 'exd5', 'd4', 'c4'], ['c4', 'e5', 'd3', 'Nc6', 'g3', 'd5', 'Bg2', 'dxc4', 'Bxc6+', 'bxc6'], ['c4', 'a6', 'Nf3', 'c6', 'e3', 'b5', 'd4', 'Qa5+', 'Bd2', 'b4'], ['e4', 'c5', 'Nc3', 'a6', 'Nf3', 'd6', 'g3', 'e5', 'Bc4', 'Be7'], ['e4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nxe4', 'Bxf7+', 'Kxf7'], ['e3', 'c5', 'Nf3', 'd5', 'd4', 'Nf6', 'b3', 'cxd4', 'exd4', 'Nc6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'Nf3', 'Bg7', 'b3', 'c5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Nc3', 'e6'], ['g4', 'd5', 'b4', 'Bxg4', 'h3', 'Bh5', 'Nc3', 'Nf6', 'Bg2', 'e6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Bg5', 'h6', 'Bh4', 'd6'], ['d4', 'd5', 'c4', 'e6', 'a3', 'h6', 'Nf3', 'Nc6', 'Bf4', 'Bd6'], ['e3', 'e5', 'b3', 'd5', 'Nc3', 'd4', 'Na4', 'b5', 'Bxb5+', 'Bd7'], ['e4', 'd5', 'exd5', 'c6', 'd4', 'cxd5', 'Nc3', 'Nf6', 'Bd3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'e5', 'Bc4', 'c6', 'd3', 'd5', 'Bb3', 'dxe4', 'Qh5', 'Qe7'], ['e4', 'e5', 'Bc4', 'Nc6', 'd3', 'Nf6', 'Nf3', 'Bc5', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Qf6', 'Nb5', 'Bb4+'], ['e4', 'c5', 'Bc4', 'a6', 'Nf3', 'e6', 'a3', 'b5', 'Ba2', 'Nc6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'a6', 'Nc3', 'Bc5'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'h6', 'a3', 'e5', 'd3', 'd6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'h3', 'd6', 'Nf3', 'h6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qh5', 'Qf6', 'Nf3', 'd6', 'Ng5', 'Qxf2+'], ['e4', 'e5', 'Bc4', 'a6', 'Nf3', 'f6', 'a3', 'Nc6', 'd3', 'Bc5'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'Na5', 'Na3', 'Nxc4', 'Nxc4', 'd5'], ['e4', 'e5', 'Bc4', 'Qf6', 'd3', 'Bc5', 'Be3', 'Bxe3', 'fxe3', 'Nh6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'c3', 'Nf6', 'd3', 'h6'], ['d4', 'd5', 'c4', 'Be6', 'cxd5', 'Bxd5', 'Nc3', 'Nf6', 'Qc2', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Bc5', 'Kh1', 'd6'], ['e4', 'e5', 'Bc4', 'Nc6', 'd3', 'Bc5', 'Nf3', 'h6', 'Be3', 'Bxe3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bb6', 'c3', 'Nf6'], ['e4', 'e5', 'Bc4', 'd6', 'h3', 'h6', 'Nf3', 'a6', 'a3', 'Be7'], ['d4', 'd5', 'c4', 'Nf6', 'c5', 'Nc6', 'Nf3', 'h6', 'Bf4', 'Bf5'], ['e4', 'd5', 'e5', 'c5', 'h3', 'Bf5', 'd3', 'e6', 'g4', 'Bg6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Nc6', 'Nf3', 'Qd6'], ['d4', 'd5'], ['e4', 'e5', 'f3'], ['e3', 'd6'], ['e3', 'd6'], ['e3', 'e6'], ['e3', 'e6', 'f4'], ['e3', 'd6'], ['e3', 'd6'], ['d3', 'd6', 'e4'], ['e3', 'd6', 'Nf3'], ['e3', 'd6', 'f4'], ['e3', 'd6', 'Nf3'], ['e4', 'd6'], ['e3', 'd6', 'f4'], ['e3', 'd6'], ['e3', 'd6'], ['e3', 'e6'], ['e3', 'e5'], ['e4', 'd6', 'e5'], ['e3', 'c5'], ['e4', 'd6'], ['e4', 'd5'], ['e4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['d4', 'Nf6', 'c4', 'd5', 'Nc3', 'c5', 'e3', 'Bf5', 'Nf3', 'Nc6'], ['e4', 'e5', 'g4', 'd5', 'Nf3', 'dxe4', 'Nxe5', 'Qg5', 'h4', 'Qxe5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qf3', 'd6', 'Qxf7#'], ['e4', 'd5', 'e5', 'd4', 'Nf3', 'c5', 'Bc4', 'Bg4', 'h3', 'Bh5'], ['e4', 'e5', 'h4', 'f6', 'g4', 'c6', 'g5', 'd5', 'd4', 'exd4'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'bxc3', 'd6', 'Bb5+', 'c6'], ['e4', 'e5', 'd4', 'f6', 'd5', 'Be7', 'Nc3', 'd6', 'g4', 'Nh6'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nf4', 'g3', 'Ne6', 'f4', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'c6', 'Ba4', 'b5', 'Bb3', 'a5'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'c3', 'Bxd4'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'dxe4', 'd4', 'f6', 'Bb5+', 'c6'], ['e4', 'e5', 'd4', 'f6', 'Nf3', 'd5', 'exd5', 'e4', 'Bb5+', 'c6'], ['e4', 'g6', 'b3', 'e5', 'Nf3', 'Bg7', 'Bb2', 'Nc6', 'Bc4', 'd6'], ['e4', 'e5', 'Qf3', 'Nf6', 'c3', 'Nc6', 'Bc4', 'Be7', 'Ne2', 'O-O'], ['e4', 'e5', 'c4', 'Qh4', 'Nf3', 'Qxe4+', 'Be2'], ['e4', 'd6', 'c4', 'Na6', 'd4', 'e6', 'd5', 'e5', 'Bd2', 'Bd7'], ['e4', 'e5', 'c4', 'Nc6', 'd3', 'Bc5', 'Nf3', 'd6', 'Nc3', 'Nd4'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Qc2', 'e6', 'Nf3', 'Bb4+'], ['e4', 'a6', 'c4', 'e6', 'd3', 'c6', 'Nf3', 'h6', 'Bf4', 'g5'], ['e4', 'e5', 'c4', 'c5', 'd3', 'Nc6', 'Nc3', 'a6', 'Nf3', 'f6'], ['e4', 'e5', 'c4', 'd6', 'd3', 'b6', 'Nf3', 'Nf6', 'h3', 'Be7'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'd6', 'g3', 'e5', 'dxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Ng5', 'Rg8'], ['e4', 'e5', 'c4', 'Bc5', 'Nf3', 'd6', 'd3', 'Bg4', 'Be2', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'g3', 'c5', 'Bg2', 'Nf6', 'd3', 'Be7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'a6', 'Bd2', 'h6', 'Bd3', 'c5'], ['e4', 'c5', 'a3', 'e5', 'Nc3', 'Bd6', 'Bc4', 'Nc6', 'd3', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'e3', 'dxc4', 'Bxc4', 'c5'], ['e4', 'c5', 'Nc3', 'e6', 'Nf3', 'a6', 'Bc4', 'b5', 'Be2', 'Bb7'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'exd5', 'exd5', 'Ngf3', 'Nc6'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bg5', 'e6', 'Nbd2', 'h6', 'Bh4', 'c5'], ['d4', 'e6', 'Bf4', 'Nf6', 'e3', 'd5', 'h3', 'Bd6', 'Be5', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Nd7', 'Nf3', 'Ngf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'exd5', 'exd5', 'dxc5', 'Nc6'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'e6', 'Bd3', 'c5', 'c3', 'Nc6'], ['e4', 'c5', 'c3', 'e6', 'd4', 'cxd4', 'cxd4', 'd5', 'exd5', 'exd5'], ['d4', 'e6', 'e4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['d4', 'd5', 'Nf3', 'Bg4', 'c4', 'Nf6', 'Qb3', 'b6', 'cxd5', 'Nxd5'], ['d4', 'Nc6', 'c3', 'Na5', 'b4', 'e6', 'Ba3', 'Qg5', 'e3', 'Nf6'], ['e4', 'f6', 'Qh5+'], ['e4', 'g5', 'e5', 'Bh6', 'd4', 'e6', 'Nc3', 'g4', 'Qxg4', 'Ne7'], ['e3', 'e5', 'Bd3', 'd6', 'Nf3', 'Bg4', 'b3', 'Nc6', 'Ba3', 'Nf6'], ['b3', 'Nh6', 'Bb2', 'g6', 'e4', 'f6', 'f4', 'Bg7', 'Nc3', 'f5'], ['Nc3', 'a6', 'Nd5', 'e6', 'Nc3', 'd5', 'Nb1', 'Bc5', 'b3', 'Qh4'], ['d4', 'Nf6', 'h3', 'g6', 'e4', 'Bh6', 'Bxh6', 'Nc6', 'e5', 'Nxe5'], ['e4', 'd6', 'd4', 'Be6', 'Nf3', 'Bg4', 'h3', 'Bc8', 'Bc4', 'e6'], ['d3', 'd6', 'f4', 'e6', 'h3', 'f6', 'g4', 'g6', 'h4', 'h6'], ['d3', 'f5', 'Nf3', 'g5', 'Nxg5', 'Bh6', 'e4', 'fxe4', 'Qh5+', 'Kf8'], ['e4', 'c5', 'd3', 'Nc6', 'Nc3', 'a6', 'b3', 'Nf6', 'g4', 'h6'], ['d4', 'Nf6', 'd5', 'Nxd5', 'Qxd5', 'h6', 'Nf3', 'Rh7', 'Ne5', 'h5'], ['e4', 'd5', 'f3', 'dxe4', 'fxe4', 'Nf6', 'e5', 'Ng4', 'd4', 'Nc6'], ['d4', 'd5', 'a3', 'Nc6', 'Nc3', 'Nf6', 'Bf4', 'Nh5', 'Be3', 'e5'], ['d4', 'd5', 'e3', 'e6', 'Nf3', 'Nc6', 'c4', 'Nf6', 'cxd5', 'Nxd5'], ['e4', 'd5', 'd3', 'Nf6', 'e5', 'Ng4', 'Nh3', 'Nxe5', 'd4', 'Nec6'], ['d4', 'd5', 'g3', 'Nf6', 'Bg2', 'Ng4', 'Bf3', 'Nc6', 'e4', 'dxe4'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e5', 'Bxc4', 'exd4', 'exd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd4', 'exd4', 'Nxd4', 'Nxe4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Nf6', 'd4', 'Nc6'], ['d4', 'd5', 'Nc3', 'Nc6', 'e4', 'dxe4', 'Nxe4', 'Qxd4', 'Nd2', 'Bg4'], ['e4', 'd5', 'Bd3', 'Nf6', 'exd5', 'Nxd5', 'Bc4', 'Be6', 'Nf3', 'Nf4'], ['d4', 'c5', 'e4', 'Qa5+', 'Bd2', 'Qb6', 'Nc3', 'Qb5', 'Bxb5'], ['e4', 'd5', 'e5', 'f6', 'Qh5+', 'g6', 'Qh4', 'fxe5', 'c4', 'dxc4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Bc4', 'Nf6', 'Nf3', 'Nc6'], ['e4', 'e5', 'd4', 'exd4', 'Nf3', 'c5', 'Bg5', 'f6', 'Bf4', 'd6'], ['e4', 'b6'], ['e4', 'b5'], ['e3', 'e6'], ['e3', 'e6'], ['e4', 'b6'], ['b3', 'd5', 'c3', 'e5', 'Qc2', 'c5', 'Qf5', 'Bxf5', 'Bb2', 'd4'], ['d4', 'Nh6', 'd5', 'g6'], ['e4', 'g6', 'Bc4', 'Bh6', 'Ne2', 'f6', 'Bxg8'], ['e4', 'g5', 'd4'], ['e4', 'f6', 'Nf3', 'e6', 'Nh4', 'Qe7', 'f4', 'Qb4', 'Qh5+', 'Ke7'], ['e4', 'f6', 'Bc4'], ['d3', 'e5', 'c3', 'Be7', 'b3', 'c5', 'a3', 'Nf6', 'a4', 'O-O'], ['e4', 'Nh6', 'd4', 'Na6', 'Nf3'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'd6'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'e6', 'dxe6', 'Bxe6', 'Nf3', 'Nbd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Bd7'], ['e4', 'c5', 'b4', 'cxb4', 'a3', 'd5', 'e5', 'Qa5', 'f4', 'g6'], ['d4', 'Nf6', 'c4', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nf6', 'Nc3', 'c6'], ['d4', 'e6', 'c4', 'c5', 'd5', 'Qb6', 'e4', 'Nf6', 'e5', 'Ng8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'a6', 'Bxc6', 'Nxc6'], ['f4', 'd5', 'b3', 'g6', 'Bb2', 'Nf6', 'e3', 'Bg7', 'Nf3', 'Bg4'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'Nf6', 'Bb5', 'a6', 'Bxc6', 'dxc6'], ['d4', 'd5'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'd6', 'Nf3', 'a6'], ['e3', 'e5', 'Qh5', 'Qe7', 'Nc3', 'Nf6', 'Qf3', 'd6', 'd3', 'Bg4'], ['Nf3', 'd5', 'b3', 'Nd7', 'e3', 'e5', 'Nc3', 'c6', 'Bb2', 'e4'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Bd7', 'c3', 'Nc6', 'Nbd2', 'Bf5'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'e6', 'Nc3', 'Be7', 'Bg5', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'g3', 'c5', 'cxd5', 'exd5'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Be7', 'Nc3', 'Nf6', 'Bg5', 'O-O'], ['d4', 'Nf6', 'c4', 'c6', 'Nc3', 'e6', 'e4', 'Bb4', 'Bd3', 'Qb6'], ['d4', 'e6', 'c4', 'd5', 'Nf3', 'Nf6', 'g3', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'f4', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bb5', 'd6', 'Na4', 'Bb6'], ['e4', 'd5', 'Bb5+', 'c6', 'Bd3', 'e5', 'Nf3', 'Qd6', 'h3', 'd4'], ['d4', 'e6', 'Nc3', 'd5', 'a3', 'Nc6', 'b4', 'Nf6', 'Bf4', 'Ne4'], ['d4', 'd5', 'e3', 'Nf6', 'Nf3', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'e6'], ['c3', 'e5', 'Nf3', 'd6', 'e4', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'Nc6'], ['d4', 'e6', 'Nc3', 'c5', 'Bf4', 'd6', 'e4', 'Be7', 'Bb5+', 'Bd7'], ['e4', 'd5', 'exd5', 'Qxd5', 'b3', 'Qd8', 'Bb5+', 'Bd7', 'c4', 'e5'], ['e3', 'd5', 'Bb5+', 'c6', 'Ba4', 'h5', 'h3', 'e6', 'Nf3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Ng5', 'Qxg5', 'Qf3', 'Nxf3+'], ['e4', 'd5', 'b3', 'e5', 'exd5', 'Qxd5', 'Bc4', 'Qxg2', 'Be2', 'Bg4'], ['e4', 'e5', 'b3', 'Qf6', 'Bc4', 'Bc5', 'Nf3', 'Nh6', 'O-O', 'Ng4'], ['d4', 'b6', 'g3', 'c5', 'Bg2', 'd5', 'c4', 'e6', 'e4', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'c6'], ['d4', 'd6', 'Nc3', 'g6', 'Nf3', 'Bf5', 'e4', 'Bg4', 'h3', 'Bxf3'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bb5+', 'c6', 'Ba4', 'Bg4'], ['d4', 'e5', 'dxe5', 'Bc5', 'Nc3', 'Qh4', 'e3', 'Bxe3', 'Bxe3', 'Nh6'], ['d4', 'e5', 'c3', 'Nf6', 'Nd2', 'Be7', 'dxe5', 'Ne4', 'Nxe4', 'd6'], ['e4', 'e6', 'Bc4', 'c6', 'Qh5', 'd5', 'Bb3', 'd4', 'f4', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'e5', 'a4', 'f6', 'Bb5+', 'Bd7'], ['e4', 'e6', 'a3', 'Bd6', 'Nf3', 'Kf8', 'd4', 'c5', 'e5', 'Be7'], ['d4', 'Nf6', 'd5', 'c6', 'dxc6', 'Nxc6', 'a3', 'd5', 'c3', 'h6'], ['e4', 'c5', 'Nf3', 'e6', 'd3', 'Bd6', 'e5', 'Be7', 'c3', 'Nc6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f4', 'O-O'], ['a4', 'g6', 'g4', 'c5', 'c4', 'Bg7', 'd3', 'Qb6', 'e3', 'Bxb2'], ['f4', 'd5', 'd4', 'Nd7', 'Nd2', 'c5', 'c3', 'Ngf6', 'dxc5', 'Nxc5'], ['d4', 'd5', 'h3', 'h6', 'Nf3', 'Nf6', 'Bf4', 'Bf5', 'e3', 'e6'], ['e4', 'd5', 'e5', 'Nh6', 'd4', 'Bg4', 'Be2', 'Bxe2', 'Qxe2', 'e6'], ['Nf3', 'd5', 'h3', 'Nc6', 'a3', 'e5', 'Nc3', 'e4', 'Ng1', 'Bf5'], ['Nf3', 'f6', 'h3', 'e5', 'a3', 'd6', 'e4', 'b6', 'Nc3', 'c6'], ['e4', 'd5', 'e5', 'e6', 'Qf3', 'c6', 'd3', 'd4', 'Na3', 'Na6'], ['Nf3', 'e6', 'Nc3', 'Qe7', 'h3', 'e5', 'e4', 'Qd6', 'a3', 'Be7'], ['e3', 'Nc6', 'Be2', 'd5', 'f3', 'e6', 'g3', 'f5', 'Nh3', 'g6'], ['e4', 'd5', 'Be2'], ['e4', 'd5', 'exd5', 'Qxd5', 'd4', 'Qe4+', 'Be2', 'Qxg2', 'Bf3', 'Qg6'], ['d4', 'Nc6', 'd5', 'Na5', 'e4', 'c6', 'c4', 'cxd5', 'cxd5', 'Qb6'], ['Nf3', 'd5', 'Nc3', 'Nf6', 'e3', 'Nc6', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Nc6', 'Nf3', 'Qe6'], ['Nf3', 'd5', 'h3', 'Nf6', 'Nc3', 'Nc6', 'e3', 'e5', 'Bb5', 'Bd6'], ['e4', 'd5', 'e5', 'Bf5', 'd4', 'Nc6', 'c3', 'Nh6', 'h3', 'e6'], ['e4', 'd5', 'Qf3', 'Nf6', 'Bd3', 'Bg4', 'Qe3', 'e6', 'f3', 'Bh5'], ['Nf3', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Bc4', 'Nf6', 'Ng5', 'e5'], ['e4', 'd5', 'Nc3', 'd4', 'Nd5', 'e6', 'Nf4', 'e5', 'Nfe2', 'd3'], ['Nf3', 'd5', 'Nc3', 'Nf6', 'e3', 'c6', 'Bd3', 'Nbd7', 'e4', 'Nc5'], ['e4', 'd5', 'f3', 'dxe4', 'fxe4', 'Nf6', 'e5', 'Bg4', 'Be2', 'Bxe2'], ['Nf3', 'e5', 'Nxe5'], ['Nf3', 'e5', 'Nxe5', 'Qe7', 'Nf3', 'Qe6', 'Nc3', 'Qf6', 'e4', 'Bb4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'e6', 'd3', 'Bb4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Qe5+', 'Be2', 'Qe6', 'O-O', 'Qg4'], ['d4', 'Nc6', 'Bf4', 'e6', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'Na5'], ['e4', 'd5', 'e5', 'Nh6', 'd4', 'Nc6', 'Bb5', 'Bd7', 'Bd3', 'Nxd4'], ['e4', 'd5', 'Nc3', 'd4', 'Nd5', 'Nf6', 'Nf3', 'Nxe4', 'Bb5+', 'c6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'e6', 'Nf3', 'Qf4'], ['Nf3', 'd5', 'Nc3', 'Nf6', 'e3', 'a6', 'd4', 'Nc6', 'b3', 'Bf5'], ['e4', 'Nf6', 'Qf3', 'Nc6', 'Nc3', 'e5', 'a3', 'd6', 'h3', 'Nd4'], ['e4', 'e5', 'Nf3', 'd6', 'c4', 'Nf6', 'd3', 'Bg4', 'Bg5', 'Nc6'], ['e3', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qh4', 'e6', 'Qxd8+', 'Nxd8'], ['e4', 'e6', 'Bb5', 'Nc6', 'Ba4', 'd5', 'exd5', 'exd5', 'd4', 'Qe7+'], ['e4', 'e6', 'd4', 'd5', 'b3', 'Bb4+', 'Nd2', 'Nc6', 'Ba3', 'Bxa3'], ['e4', 'e6', 'd4', 'c6', 'c4', 'd5', 'cxd5', 'cxd5', 'e5', 'Nc6'], ['e4', 'Nc6', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'Bg4'], ['e4', 'Nc6', 'c4', 'e5', 'd3', 'Bc5', 'Be2', 'h6', 'Nf3', 'Nf6'], ['e4', 'e6', 'd4', 'c6', 'c4', 'd6', 'Nc3', 'b6', 'Nf3', 'c5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'g6'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nce7', 'f4', 'Ng6', 'fxe5', 'Qh4+'], ['Nf3', 'd5', 'e4', 'e5', 'd4', 'Be6', 'dxe5', 'Bg4', 'exd5', 'Bb4+'], ['e4', 'e5', 'Qg4', 'd6', 'Qf3', 'c6', 'g4', 'Nf6', 'Nh3', 'Be6'], ['e4', 'e6', 'd4', 'c5', 'c3', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6'], ['b4', 'e5', 'Bb2', 'd6', 'e3', 'Be6', 'Nf3', 'Nf6', 'Nc3', 'Be7'], ['e4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'c3', 'Bg4', 'Bb5', 'Qb6'], ['d4', 'e6', 'c4', 'd5', 'Nf3', 'Nf6', 'g3', 'Nbd7', 'Bg2', 'Nb6'], ['b4', 'd5', 'Nf3', 'Qd6', 'Ba3', 'b5', 'Nc3', 'c6', 'e4', 'd4'], ['e4', 'c5', 'd4', 'cxd4', 'Nf3', 'Nc6', 'Nxd4', 'd6', 'c4', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bf4', 'Nf6', 'h3', 'Qb6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nf6', 'dxc5', 'Qa5+', 'Nc3', 'Nxe4'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nf6', 'd3', 'Nc6', 'c3', 'Bg4'], ['b4', 'c6', 'Bb2', 'd5', 'e3', 'Nf6', 'c4', 'e6', 'c5', 'a5'], ['c4', 'Nf6', 'Nc3', 'e6', 'd4', 'Bb4', 'e3', 'O-O', 'Nf3', 'c5'], ['c4', 'Nf6', 'Nf3', 'e6', 'g3', 'd5', 'd4', 'c5', 'cxd5', 'Nxd5'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'c6', 'f3', 'Qc7', 'Nge2', 'e5'], ['b4', 'e5', 'Bb2', 'f6', 'b5', 'a6', 'e4', 'axb5', 'Bxe5', 'fxe5'], ['b4', 'd5', 'Bb2', 'e6', 'Nf3', 'Bxb4', 'Bxg7', 'b6', 'Bxh8', 'Bb7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'g6', 'd3', 'Bh6', 'Bxh6', 'Nxh6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3'], ['d4', 'd5', 'c4', 'dxc4', 'Qa4+', 'Nc6', 'Qxc4', 'Be6', 'Qb5', 'Qxd4'], ['c4', 'e5', 'e4', 'Nf6', 'Nf3', 'Nxe4', 'Bd3', 'Bc5', 'Bxe4', 'Qf6'], ['e4', 'c5', 'f4', 'Nf6', 'Nf3', 'Nxe4', 'd3', 'Nf6', 'Be2', 'Nh5'], ['e4', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Bc4', 'Nxc3', 'dxc3', 'Qd7'], ['d4', 'c5', 'd5', 'e5', 'e4', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['d4', 'f5', 'e4', 'fxe4', 'Nc3', 'Nf6', 'Bg5', 'b6', 'Bxf6', 'exf6'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'e4', 'Qe2', 'Nf6', 'd3', 'Qxd5'], ['f4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'Bc4', 'a6', 'h3', 'b5'], ['d4', 'd5', 'a3', 'e5', 'c3', 'f6', 'Nf3', 'Ne7', 'Be3', 'Be6'], ['e4', 'e5', 'Nf3', 'd5', 'Qe2', 'Nc6', 'Qb5', 'a6', 'Qxd5', 'Qxd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'c5', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'cxd4', 'cxd4', 'Nc6'], ['e4', 'c5', 'Nc3', 'd6', 'f4', 'g6', 'Nf3', 'Bg7', 'Bc4', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['c4', 'e5', 'e3', 'd6', 'g3', 'g6', 'Bg2', 'c6', 'Ne2', 'Bg7'], ['e4', 'c5', 'c3', 'e6', 'Nf3', 'g6', 'Bc4', 'Bg7', 'O-O', 'b6'], ['e4', 'e5', 'f3', 'Qf6', 'Bd3', 'Nc6', 'Ne2', 'Nd4', 'O-O', 'Bc5'], ['e4', 'e6', 'Bc4', 'd5', 'Bb3', 'c5', 'Nf3', 'Bd7', 'O-O', 'c4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['e4', 'e5', 'f4', 'd6', 'Nf3', 'Be6', 'f5', 'Bd7', 'Bc4', 'f6'], ['e4', 'd5', 'd3', 'Nf6', 'c4', 'dxe4', 'Qe2', 'e6', 'dxe4', 'Bb4+'], ['e4', 'e6', 'd3', 'd5', 'a4', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'Nf6'], ['e4', 'e6', 'd3', 'c6', 'c4', 'b6', 'f3', 'a5', 'Nc3', 'Bb4'], ['e4', 'e5', 'Bc4', 'd6', 'Qf3', 'f6', 'd3', 'Nh6', 'Qh5+', 'g6'], ['e4', 'b6', 'd4', 'Bb7', 'd5', 'f5', 'exf5', 'c5', 'dxc6', 'Bxc6'], ['Nf3', 'Nf6', 'd4', 'g6', 'Bg5', 'Bg7', 'Bxf6', 'Bxf6', 'e4', 'd6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nf3', 'Ne7', 'Nxe5', 'c6', 'd4', 'd5'], ['e4', 'c5', 'e5', 'd5', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'f4', 'Nc6'], ['e3', 'e5', 'd4', 'exd4', 'exd4', 'd5', 'c3', 'Nf6', 'Na3', 'Bxa3'], ['e4', 'd5', 'exd5', 'c6', 'dxc6', 'bxc6', 'Nf3', 'e6', 'Nc3', 'Na6'], ['e4', 'b6', 'Nc3', 'Bb7', 'Bc4', 'e6', 'd3', 'Nf6', 'a3', 'd5'], ['d4', 'b6', 'e4', 'Bb7', 'Nc3', 'e6', 'Be3', 'Bb4', 'Ne2', 'Nf6'], ['d4', 'b6', 'Bg5', 'Bb7', 'e3', 'h6', 'Bf4', 'Nf6', 'Be5', 'e6'], ['c4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'c5', 'bxc5', 'Nf3', 'Nf6'], ['d3', 'e5', 'c3', 'd5', 'Qc2', 'Nc6', 'g3', 'Bf5', 'Bg2', 'Nf6'], ['b3', 'e6', 'Bb2', 'Nc6', 'e3', 'Qg5', 'Nf3', 'Qa5', 'Na3', 'Bxa3'], ['d4', 'Nf6', 'c4', 'd5', 'e3', 'Bf5', 'Nc3', 'a5', 'Nf3', 'e6'], ['d4', 'b6', 'c4', 'Bb7', 'Nc3', 'e6', 'e3', 'Bb4', 'Bd2', 'c5'], ['e4', 'd5', 'exd5', 'Nf6', 'Nf3', 'Nxd5', 'Bc4', 'g6', 'O-O', 'Bg7'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'Bb4+', 'Bd2', 'a5', 'g3', 'c5'], ['Nf3', 'e6', 'd3', 'd5', 'Nbd2', 'Nf6', 'c3', 'c5', 'Qc2', 'Nc6'], ['e4', 'a6', 'Nc3', 'h6', 'f4', 'e6', 'Nf3', 'b5', 'Be2', 'Bb7'], ['c4', 'd5', 'e3', 'Nf6', 'Qf3', 'e5', 'Nc3', 'Bg4', 'Qg3', 'd4'], ['f4', 'd5', 'd4', 'Nc6', 'Nf3', 'f6', 'e3', 'a6', 'Bd3', 'Qd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'Nd4', 'Bg5', 'Nxf3+'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'd4', 'Bxc3+', 'bxc3', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'dxc6', 'Nxe5', 'Qe7'], ['e4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'd6', 'Bc4', 'Bg4', 'h3', 'Be6'], ['c4', 'e5', 'Nc3', 'Nc6', 'e3', 'Nf6', 'Nge2', 'Bc5', 'Ng3', 'd6'], ['e4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'd6', 'Bc4', 'h6', 'd3', 'Nc6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Bf4', 'Na6', 'e3', 'Bf5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Na6', 'Bf4', 'Nb4'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nf3', 'Bf5', 'Nc3', 'Na6'], ['d4', 'd5', 'h3', 'Nc6', 'c3', 'Bf5', 'Nf3', 'Bxb1', 'Rxb1', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Nxe4', 'Nxe4', 'd5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nc6', 'Ng5', 'Qe7', 'Nxf7', 'Rg8'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'e6', 'd3', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Rg8', 'Bxf7+', 'Ke7'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'Nc3', 'd4', 'Ne4', 'f5'], ['e4', 'c6', 'Bc4', 'd5', 'Bb3', 'dxe4', 'Nc3', 'Nf6', 'Qe2', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'd6'], ['Nf3', 'Nf6', 'g3', 'd5', 'Bg2', 'Bg4', 'd4', 'e6', 'O-O', 'Be7'], ['d4', 'Nf6', 'c4', 'c6', 'Nc3', 'd5', 'Nf3', 'a6', 'e3', 'b5'], ['Nf3', 'Nf6', 'g3', 'g6', 'c4', 'Bg7', 'Bg2', 'c5', 'Nc3', 'Nc6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'Nf3', 'Bg7', 'Bf4', 'O-O'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bd6', 'Nc3', 'Nf6'], ['Nf3', 'd5', 'd4', 'Nf6', 'c4', 'dxc4', 'Nc3', 'c6', 'a4', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'Nc6', 'c3', 'Bc5', 'Be3', 'Bxe3'], ['e4', 'c5', 'Bc4', 'Nf6', 'e5', 'd5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nfxd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'c3', 'd6', 'd4', 'Bd7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Be2', 'Bd6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nc6', 'Be2', 'Bb4+'], ['b4', 'c6', 'e3', 'e6', 'Bb2', 'Nf6', 'a3', 'd5', 'Qf3', 'Nbd7'], ['d4', 'Nf6', 'Nf3', 'd5', 'e3', 'g6', 'c4', 'c6', 'cxd5', 'cxd5'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['Nf3', 'Nf6', 'c4', 'Nc6', 'd4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qd8'], ['d4', 'Nf6', 'c4', 'e6', 'g3', 'd5', 'Bg2', 'Be7', 'Nf3', 'O-O'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nf6', 'e3', 'Be6', 'e4', 'c6'], ['d4', 'g6', 'c4', 'Bg7', 'Nc3', 'c6', 'e4', 'e6', 'Nf3', 'h6'], ['d4', 'd5', 'Nf3', 'Nc6', 'g3', 'Bf5', 'Bg2', 'e6', 'O-O', 'Be7'], ['Nf3', 'e6', 'g3', 'Bd6', 'd4', 'c6', 'Bg2', 'Ne7', 'e4', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'g6', 'd4', 'd6', 'd5', 'Ne5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Qf6'], ['d4', 'd5', 'Nc3', 'e6', 'Bf4', 'Nf6', 'Nf3', 'Bb4', 'a3', 'Ba5'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['d4', 'Nf6', 'c4', 'd6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'e4', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['d4', 'c6', 'Nf3', 'd5', 'Nc3', 'Bg4', 'h3', 'Bxf3', 'gxf3', 'e6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Bg4', 'Be2', 'f5'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'b6', 'e3', 'Nc6', 'Bxc4', 'e6'], ['d3', 'e5', 'e4', 'Bb4+', 'Nd2', 'Bxd2+', 'Bxd2', 'd5', 'Qe2', 'f6'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Na5', 'Bd2', 'Nc4', 'Bxc4'], ['e4', 'd5', 'e5', 'f6', 'exf6', 'gxf6', 'Qh5+', 'Kd7', 'Qxd5+', 'Ke8'], ['d4', 'd5', 'e3', 'c5', 'dxc5', 'e5', 'Bb5+', 'Nc6', 'Bc4', 'dxc4'], ['e4', 'e5', 'd4', 'Nc6', 'dxe5', 'Nxe5', 'Qd5', 'd6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'Nd7', 'Nf3', 'b5', 'Bxb5', 'c6'], ['e3', 'd5', 'Qf3', 'e6', 'Bb5+', 'Bd7', 'Bd3', 'Nc6', 'Qh3', 'Be7'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb4', 'd4', 'd6', 'Nc3', 'Qd7'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'Nf3', 'dxe5', 'dxe5', 'f6'], ['Nf3', 'e6', 'd4', 'd5', 'g4', 'c5', 'dxc5', 'Bxc5', 'Nh4', 'Nf6'], ['e4', 'Nc6', 'Nc3', 'g5', 'd4', 'Nxd4', 'Qxd4', 'Nf6', 'Bxg5', 'Rhg8'], ['e4', 'Nc6', 'd4', 'Nxd4', 'Qxd4', 'Nf6', 'Qe3', 'h5', 'Bd3', 'Rh6'], ['d4', 'Nf6', 'c4', 'b6', 'Nc3', 'Nc6', 'e4', 'Nxd4', 'Qxd4', 'c6'], ['e4', 'g6', 'Nc3', 'Bh6', 'Bc4', 'Nf6', 'b3', 'e5', 'Bb2', 'Nc6'], ['g4', 'e5', 'Bg2', 'Qf6', 'c3', 'Nc6', 'h4', 'Nh6', 'g5', 'Qd6'], ['f3', 'c6', 'Nh3', 'e5', 'Nf2', 'f6', 'Nd3', 'Qe7', 'g4', 'e4'], ['e4', 'e5', 'Nf3', 'Nf6', 'g3', 'Nxe4', 'd3', 'Nxf2', 'Kxf2', 'd5'], ['e4', 'g5', 'Nc3', 'Na6', 'd4', 'Nb4', 'Bxg5', 'h6', 'Bh4', 'Nf6'], ['Nc3', 'd5', 'd4', 'c6', 'e3', 'e6', 'Nf3', 'f5', 'Bd3', 'Nf6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'h3', 'dxc4', 'a4', 'Bf5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'Nxe5', 'Nxe5', 'dxe5'], ['c4', 'c6', 'd4', 'd5', 'c5', 'Bf5', 'Nf3', 'e6', 'h3', 'Nd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'c4', 'Bg7'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'e6', 'Nf3', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'g6', 'd4', 'Bg7', 'Be3', 'e6', 'f3', 'Ne7', 'Nc3', 'd5'], ['d4', 'd5', 'g3', 'c6', 'Bg2', 'Nf6', 'Nf3', 'Bg4', 'Bg5', 'h6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'g6', 'c4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'f6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bd3', 'Bd6', 'Nh4', 'Nxe4', 'Bxe4', 'Qxh4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['e4', 'e5', 'Nf3', 'd5', 'Bd3', 'dxe4', 'Bxe4', 'Nc6', 'd4', 'exd4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'c6', 'Nf3', 'Nbd7'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bd3', 'Nc6', 'c3', 'Nf6'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'e6', 'Nc3', 'Nbd7', 'Bf4', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Qe2', 'Nf6', 'Bxf7+', 'Kxf7'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['e4', 'b6', 'd4', 'Bb7', 'Bd3', 'e6', 'Ne2', 'h6', 'O-O', 'g5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'e5', 'd5', 'Bb4'], ['e4', 'e5', 'f4', 'Qf6', 'fxe5', 'Qxe5', 'd3', 'd6', 'Nf3', 'Qh5'], ['e4', 'e5', 'Qh5', 'Nc6', 'c3', 'g6', 'Qf3', 'Nf6', 'd3', 'Bg7'], ['e4', 'c6', 'f4', 'b5', 'Nf3', 'e6', 'd4', 'Bb7', 'Be3', 'd6'], ['c4', 'Nf6', 'Nc3', 'g6', 'd4', 'Bg7', 'e4', 'd6', 'Nf3', 'O-O'], ['e4', 'e5', 'f4', 'Qh4+', 'g3', 'Qe7', 'fxe5', 'Qxe5', 'd3', 'd5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'e3', 'Bg4', 'f3', 'Bf5'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'e4', 'Qe2', 'Nf6', 'Nc3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Nc3', 'Bg4', 'd4', 'exd4'], ['e4', 'Nf6', 'Nc3', 'd5', 'e5', 'Nfd7', 'f4', 'Nc6', 'Nf3', 'Nc5'], ['b3', 'd5', 'Nf3', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qf4', 'e6'], ['e4', 'g6', 'd4', 'Bg7', 'e5', 'd6', 'Nf3', 'dxe5', 'Bc4', 'exd4'], ['h3', 'e5', 'a3', 'd5', 'Nc3', 'd4', 'Ne4', 'Bf5', 'Ng3', 'Bg6'], ['e4', 'd6', 'c4', 'Nc6', 'd4', 'e5', 'dxe5', 'Nxe5', 'Nf3', 'Nf6'], ['e4', 'Nc6', 'd4', 'Nxd4', 'Qxd4', 'd6'], ['Nf3', 'd5', 'Nd4', 'e5', 'Nf5', 'g6', 'Ng3', 'Nf6', 'b4', 'a5'], ['e4', 'a5', 'Nf3', 'Ra6', 'd4', 'Re6', 'Nc3', 'Nc6', 'd5', 'Rd6'], ['g4', 'e5', 'g5', 'Qxg5', 'Nf3', 'Qh5', 'Nxe5', 'Qxe5', 'Na3', 'Bxa3'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'Nc6', 'd4', 'Bg4', 'h3', 'Bh5'], ['e4', 'e5', 'Nc3', 'c6', 'd3', 'Nf6', 'Nf3', 'Bc5', 'Bg5', 'h6'], ['e4', 'Nf6', 'Nc3', 'e5', 'Bc4', 'Nxe4', 'Qh5', 'Nd6', 'Qxe5+', 'Qe7'], ['e4', 'c5', 'b4', 'cxb4', 'a3', 'd5', 'e5', 'Nc6', 'd4', 'e6'], ['e4', 'c5', 'b4', 'cxb4', 'a3', 'd5', 'e5', 'Nc6', 'd4', 'Qb6'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'Bc5', 'e3', 'Nc6'], ['e4', 'c5', 'b4', 'cxb4', 'a3', 'bxa3', 'Nxa3', 'Nc6', 'd4', 'd5'], ['c4', 'e6', 'Nc3', 'd5', 'd4', 'Nf6', 'g3', 'Be7', 'Bg2', 'b6'], ['d4', 'Nf6', 'Bf4', 'g6', 'c4', 'Bg7', 'Nc3', 'c5', 'e3', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Qg4', 'Bd7'], ['d4', 'Nf6', 'Bf4', 'd6', 'c4', 'g6', 'h3', 'Bg7', 'e3', 'O-O'], ['e4', 'e6', 'Qe2', 'c5', 'Nf3', 'Nc6', 'g3', 'd5', 'exd5', 'Qxd5'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'd5'], ['e4', 'e6', 'Qe2', 'c5', 'g3', 'Nc6', 'Bg2', 'd6', 'Nf3', 'Nf6'], ['e4', 'c5', 'Nf3', 'g6', 'Bc4', 'Bg7', 'Nh4', 'Nf6', 'Qe2', 'd6'], ['d4', 'b6', 'Nf3', 'Bb7', 'Bf4', 'd6', 'e3', 'Nf6'], ['Nf3', 'd5', 'd4'], ['d4', 'b5', 'b4', 'a5', 'bxa5', 'c5', 'dxc5', 'd5', 'Nc3', 'Rxa5'], ['d4', 'd6', 'Nf3', 'd5', 'e3', 'Nd7', 'c4', 'c6', 'Nc3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bb5', 'Nf6', 'd3', 'Na5'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'e6', 'Bb5', 'Nge7', 'O-O', 'a6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'Nc6', 'Qxe4', 'Nxe5'], ['e3', 'e5', 'b4', 'd5', 'Nc3', 'Nf6', 'a3', 'Nc6', 'Bb2', 'Bg4'], ['e4', 'e5', 'Nc3', 'Nc6', 'Nf3', 'd6', 'Bb5', 'Bd7', 'O-O', 'Nh6'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'Nf6', 'fxe5', 'Nxe4', 'd4', 'd5'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'O-O', 'Bd6', 'Ng5', 'O-O'], ['e4', 'e5', 'Nc3', 'Bb4', 'a3', 'Bxc3', 'bxc3', 'd5', 'd4', 'dxe4'], ['d4', 'f5', 'c4', 'Nc6', 'd5', 'Nd4', 'Qxd4', 'Nf6', 'Bg5', 'c5'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'Nc6', 'g4', 'Bb4+', 'c3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'Bb4', 'd3', 'O-O'], ['e4', 'e6', 'd4', 'd6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Bg5', 'Ne7'], ['e4', 'e5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'd3', 'g5', 'Bxg5', 'h5'], ['e4', 'e5', 'd3', 'Nc6', 'h3', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bc5'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'e5', 'd3', 'h6', 'Be2', 'Nf6'], ['e4', 'Nf6', 'e5', 'Nd5', 'Bc4', 'Nb6', 'Bb3', 'd5', 'd4', 'Nc6'], ['Nc3', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Nd4', 'O-O', 'Nxf3+'], ['e4', 'e5', 'd3', 'Nf6', 'g4', 'Nc6', 'g5', 'Ng8', 'c3', 'h6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Qf3', 'Nc6', 'g4', 'Nd4', 'Qf5', 'Nxf5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Na5', 'Bb3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'e5', 'd3', 'd6', 'Nf3', 'Nd7', 'Be2', 'Ngf6', 'Nc3', 'c6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Nc3', 'Nf6', 'Qh4', 'Nd4', 'Kd1', 'd5'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nf6'], ['e4', 'Nc6', 'Qf3', 'd5', 'exd5', 'Nd4', 'Qc3', 'Nf3+', 'gxf3', 'Nf6'], ['e4', 'c5', 'Nf3'], ['d4', 'Nc6', 'e3', 'Nf6', 'c3', 'd5', 'Bd3', 'e5', 'f3', 'Bd6'], ['d4', 'Nc6', 'd5', 'Ne5', 'e4', 'Nf6', 'Nc3', 'd6', 'h3', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'b6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Bd2', 'Bb4'], ['e3', 'e5', 'a3', 'd5', 'h3', 'f6', 'Nc3', 'c6', 'b3', 'Nd7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'Nc3', 'c6', 'd3', 'Qf6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'O-O', 'd5', 'exd5', 'exd5'], ['e4', 'e6', 'd4', 'd6', 'Nf3', 'h6', 'Nc3', 'a6', 'e5', 'd5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'a3', 'a6', 'd3', 'b5'], ['d4', 'd5', 'Nf3', 'Nc6', 'h3', 'Bf5', 'g4', 'Be4', 'Bg2', 'Bxf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e3', 'e6', 'Qh5', 'g6', 'Qh3', 'Qh4', 'Qg4', 'Qxg4'], ['Nc3', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['Nc3', 'd5', 'Nf3', 'Nf6', 'd4', 'Nc6', 'Qd3', 'e6', 'Bf4', 'Bd6'], ['d4', 'd6', 'e4', 'Nf6', 'Nc3', 'Bg4', 'f3', 'Bd7', 'Bc4', 'Be6'], ['e4', 'e5', 'd4', 'f5', 'dxe5', 'Nc6', 'exf5', 'Nxe5', 'Bf4', 'Nf7'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'Bb4+', 'Bd2', 'Qe7'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'e6', 'Bg5', 'Bb4', 'e3', 'O-O'], ['Nc3', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Be7', 'Nxc6', 'bxc6'], ['d4', 'd5', 'e4', 'e6', 'e5', 'c5', 'c3', 'c4', 'Nf3', 'h6'], ['d3', 'd5', 'b4', 'f5', 'e3', 'e6', 'c3', 'Nf6', 'd4', 'c6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nc3', 'Bg7'], ['d4', 'e6', 'c4', 'Nf6', 'Nc3', 'Be7', 'e4', 'O-O', 'Bd3', 'Bb4'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Bf5', 'Bg5', 'e6', 'e3', 'c6'], ['e4', 'e5', 'd4', 'd6', 'Nc3', 'c5', 'dxc5', 'dxc5', 'Qxd8+', 'Kxd8'], ['e4', 'e6', 'f4', 'c5', 'c4', 'Nc6', 'd3', 'g6', 'g4', 'Bg7'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'c5', 'Nxe5', 'Nc6', 'Nxc6', 'dxc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Be2', 'Nd4', 'Nxd4', 'cxd4', 'c3', 'dxc3'], ['e4', 'c6', 'Nc3', 'd5', 'exd5', 'cxd5', 'd4', 'Nf6', 'Nf3', 'Bg4'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'd3', 'Bg4', 'O-O', 'Nf6'], ['e4', 'c5', 'd3', 'e6', 'Nf3', 'a6', 'Be3', 'Nc6', 'Nc3', 'b5'], ['e4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'e5', 'd3', 'Bc5', 'h3', 'd5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Qf3', 'Be7', 'h3', 'd6', 'd3', 'c6'], ['Nf3', 'Nc6', 'd4', 'd5', 'c4', 'dxc4', 'Nc3', 'Bg4', 'e3', 'e6'], ['f4', 'd5', 'g3', 'Bg4', 'Nf3', 'Bxf3', 'exf3', 'Nc6', 'Bg2', 'e5'], ['Nf3', 'd6', 'd4', 'e5', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8', 'Nxe5', 'Ke8'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nc3', 'Nxd4', 'Nf3', 'Nxf3+', 'exf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nc3', 'c6', 'Bc4', 'Nf6', 'Nxe5', 'd5'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nc3', 'Nxd4', 'Qxd4', 'c5', 'Qxc5', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nxd4', 'Nxd4', 'exd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'c6', 'd4', 'd5', 'f3', 'Nf6', 'e5', 'Ng8', 'Nc3', 'Bf5'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Bb5', 'Nxd4'], ['d4', 'e6', 'd5', 'exd5', 'Qxd5', 'Ne7', 'Qd1', 'Nbc6', 'a3', 'd6'], ['d4', 'd5', 'h3', 'Nc6', 'Nf3', 'Nf6', 'a3', 'Bf5', 'Nc3', 'e6'], ['d4', 'e5', 'c4', 'd5', 'e3', 'dxc4', 'Bxc4', 'exd4', 'Qxd4', 'Bb4+'], ['d4', 'd5', 'Nf3', 'Nc6', 'c4', 'e6', 'Nc3', 'Bb4', 'a3', 'Bxc3+'], ['e4', 'c5', 'Nc3', 'e6', 'Bc4', 'Nc6', 'd3', 'Nf6', 'Bf4', 'd5'], ['e4', 'e5', 'Qh5', 'Nc6', 'Nc3', 'Nf6', 'Qf3', 'Nd4', 'Qd1', 'd5'], ['d4', 'Nf6', 'Nc3', 'd5'], ['e3', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'Nh3', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'b6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'exd5', 'Qxd5', 'Ngf3', 'cxd4'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nf6', 'Nf3', 'Bg4'], ['f4', 'e6', 'Nf3', 'd5', 'e3', 'Nd7', 'Nc3', 'a6', 'Be2', 'f5'], ['d4', 'd5', 'b4', 'e6', 'Nf3', 'Bxb4+', 'Bd2', 'Nc6', 'c3', 'Bd6'], ['e4', 'd6', 'g3', 'Nf6', 'Bg2', 'g6', 'b3', 'Bg7', 'Bb2', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'Nc3', 'Nf6', 'Ng5', 'h6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Bc4', 'Qxc4', 'b3', 'Qe6+', 'Qe2', 'Qxe2+'], ['e4', 'e5', 'Nf3', 'Qh4', 'Nxh4', 'Bd6', 'd3', 'Nc6', 'Nf5', 'g6'], ['e4', 'e5', 'd3', 'd6', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'h4', 'h5'], ['e4', 'e5', 'd3', 'd6', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'g4', 'Bxg4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Nf3', 'Bb4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'd5', 'Qxd5', 'c6', 'Qxd8+', 'Kxd8'], ['d4', 'd5', 'e3', 'Bf5', 'Nc3', 'Nc6', 'Nf3', 'e6', 'Bb5', 'Nf6'], ['e4', 'e5', 'd3', 'Nf6', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'd4', 'd5'], ['e4', 'e5', 'd3', 'Bc5', 'd4', 'Bb4+', 'c3', 'Ba5', 'Qe2', 'Nc6'], ['e4', 'e5', 'd3', 'Qf6', 'Nf3', 'Nc6', 'c4', 'Nb4', 'a3', 'Na6'], ['d4', 'd5', 'e3', 'e6', 'f4', 'c5', 'dxc5', 'Bxc5', 'Nc3', 'Bb4'], ['e4', 'e6', 'Nh3', 'b6', 'd3', 'g6', 'Qf3', 'Nc6', 'Be2', 'Nf6'], ['e3', 'b6', 'Nf3', 'a6', 'd4', 'c6', 'Be2', 'd6', 'O-O', 'e6'], ['d4', 'a5', 'c4', 'f5', 'Nf3', 'b6', 'e3', 'e6', 'Ne5', 'g6'], ['g3', 'e5', 'e3', 'd5', 'c3', 'Nf6', 'a3', 'Bd6', 'b3'], ['e4', 'd6', 'Bc4', 'c6', 'Qf3', 'Bh3', 'Qxh3', 'e6', 'Qf3', 'f6'], ['e4', 'e6', 'd4', 'c6', 'c4', 'g6', 'd5', 'a6', 'Nc3', 'b6'], ['e3', 'e5', 'Qh5', 'g5', 'Qg4', 'Nf6', 'Qxg5', 'Qe7', 'b3', 'Qe6'], ['d4', 'd6', 'e4', 'c6', 'Bc4', 'b6', 'd5', 'e6', 'dxc6', 'Nxc6'], ['d4', 'Nh6', 'Nh3', 'Rhg8', 'Nc3', 'Na6', 'Bxh6', 'gxh6', 'e3', 'Rab8'], ['Na3', 'e5', 'Rab1'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'd4', 'd6', 'Nf3', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'f6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'd4', 'f6', 'c3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'h5', 'Ng5', 'a5'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd3', 'd5', 'exd5', 'Qxd5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'O-O', 'Nf6', 'Nc3', 'Nd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'd6', 'd5', 'Nxe4', 'Nh3', 'Bxh3'], ['e3', 'e5', 'e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'e4', 'Nh4', 'Be7'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'd3', 'Nc6', 'Qg5', 'O-O'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'd6'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'b6', 'Be2', 'Bb7', 'Nf3', 'c6'], ['e4', 'e5', 'd3', 'h6', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'g4', 'Nxg4'], ['d4', 'e6', 'c4', 'Bb4+', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'e3', 'Ng4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bd6', 'Be2', 'Nf6', 'O-O', 'O-O'], ['c4', 'e5', 'Nc3', 'Nc6', 'e4', 'Nf6', 'Nf3', 'd6', 'Nd5', 'Nxd5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'e6', 'Nf3', 'h6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'g6', 'Bc4', 'Be6', 'Bxe6', 'fxe6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Bc4', 'Qf6', 'Nd5', 'Bxf3'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'e6', 'Nc3', 'g6', 'Bf4', 'Bg7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'a6', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'f6', 'Nxe5', 'fxe5', 'Qh5+', 'Ke7', 'Bc4', 'Kd6'], ['c3', 'd5', 'd4', 'c5', 'f4', 'e6', 'Nf3', 'Nf6', 'Be3', 'Nbd7'], ['Nf3', 'd5', 'd4', 'Nc6', 'c3', 'Nf6', 'h3', 'Bf5', 'a3', 'e6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'd6', 'Bf4', 'Nbd7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'Nc3', 'Be7', 'd3', 'Nc6'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Bc4', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'Nc3', 'exd4', 'Nxd4', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'h6', 'Nxe5', 'Nce7', 'Nf3', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'Nc3', 'c6', 'O-O', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nb3', 'Bb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Be7', 'O-O', 'O-O'], ['e4', 'e5', 'Nc3', 'd6', 'Nf3', 'Nf6', 'Bc4', 'Bg4', 'h3', 'Bxf3'], ['Nf3', 'd5', 'd4', 'Nc6', 'Nc3', 'e6', 'Bf4', 'a6', 'e3', 'Nf6'], ['e4', 'e5', 'Nc3', 'Nf6', 'Bc4', 'g6', 'Nf3', 'd6', 'd3', 'Bg7'], ['g3', 'h6', 'Bg2', 'g5', 'b3', 'Bg7', 'Nc3', 'a6', 'Bb2', 'b5'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nb6', 'Nf3', 'e5'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'Qd6', 'Bxc4', 'Qb4+', 'Bd2', 'Qxc4'], ['d4', 'd5', 'c4', 'c5', 'dxc5', 'dxc4', 'Qxd8+', 'Kxd8', 'e4', 'Be6'], ['d4', 'e5', 'dxe5', 'd6', 'exd6', 'cxd6', 'Nf3', 'Bf5', 'Nc3', 'Nf6'], ['e4', 'c5', 'Bc4', 'e6', 'd3', 'd5', 'exd5', 'exd5', 'Bb5+', 'Bd7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Bg5', 'd5', 'Bxf6', 'Bxf6'], ['d4', 'e6', 'c4', 'c5', 'dxc5', 'Bxc5', 'Nc3', 'Nf6', 'Nf3', 'd5'], ['e4', 'c5', 'Nf3', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Be2', 'Nc6'], ['d4', 'h6', 'c4', 'a6', 'Nc3', 'b6', 'Nf3', 'Bb7', 'e4', 'e6'], ['d4', 'd5', 'e3', 'Nc6', 'a3', 'Nf6', 'Nc3', 'Bf5', 'Nf3', 'e6'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'dxc4', 'Bxc4', 'Nc6', 'Qb3', 'Bd7'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'f6', 'exf6', 'Bb4+', 'Nc3', 'Qxf6'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'e5', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['d4', 'd5', 'e3', 'Nc6', 'f4', 'Nf6', 'h3', 'Bf5', 'c3', 'e6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'h6', 'e3', 'Bf5'], ['d4', 'e6', 'c4', 'Qh4', 'Nf3', 'Qe4', 'Nc3', 'Qc6', 'e3', 'Qd6'], ['e4', 'c5', 'Qh5', 'e6', 'Bc4', 'Nf6', 'Qf3', 'Nc6', 'c3', 'd5'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nc6', 'c3', 'Bg4'], ['d4', 'd5', 'Nf3', 'Nf6', 'g3', 'e6', 'Bg2', 'c5', 'O-O', 'Nc6'], ['e4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'Be7', 'h3', 'O-O'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'Nf3', 'd6', 'exd6', 'cxd6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'c4', 'Ne7'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'exd6', 'cxd6', 'Nf3', 'Nc6'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'Nf3', 'Bg4', 'Bc4', 'e6'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'Nc6', 'e3', 'Bg4', 'Qb3', 'Bxf3'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Nc3', 'Bg4', 'h3', 'Bh5'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'c6', 'c4', 'd6', 'Nc3', 'f5'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd4', 'exd4', 'e5', 'Ng8'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Nxe4', 'Bxf7+', 'Kxf7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bc4', 'Bc5', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd4', 'exd4', 'e5', 'Ng8'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nc3', 'Bc5', 'd3', 'Nf6', 'Nf3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Bc5', 'O-O', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'd5', 'Qa4', 'Qd6', 'd4', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'a6', 'd4', 'Bd6', 'Bd3', 'h6'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'Nc6', 'Nc3', 'e6', 'Nf3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Bc5', 'O-O', 'd6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nc3', 'Bc5', 'Nf3', 'Nf6', 'd3', 'd6'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'c6', 'Be3', 'b5', 'Nc3', 'b4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'c4', 'Nf6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'a3', 'Nf6', 'c5', 'Be7'], ['e4', 'e6', 'f4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Bb5', 'a6'], ['d4', 'e6', 'c4', 'b6', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'a3', 'Bxc3+'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'g6', 'Bxc4', 'Bg7', 'Be3', 'Nc6'], ['e4', 'e6', 'd3', 'd5', 'Nc3', 'c5', 'Nf3', 'd4', 'Ne2', 'Nc6'], ['d4', 'd5', 'c3', 'e6', 'Nf3', 'c5', 'Ne5', 'Nc6', 'Nxc6', 'bxc6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'dxc4', 'e3', 'b5', 'Nc3', 'a6'], ['c4', 'e5', 'b3', 'Nf6', 'Bb2', 'Nc6', 'g3', 'd5', 'cxd5', 'Qxd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f6', 'dxe5', 'fxe5', 'Nc3', 'c6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Be3', 'Qb6'], ['e4', 'e6', 'e5', 'd6', 'Qe2', 'dxe5', 'Qxe5', 'Nc6', 'Qb5', 'a6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'e6', 'c5', 'b6', 'b4', 'Nf6'], ['d4', 'd5', 'a3', 'c6', 'Nf3', 'Bg4', 'e3', 'e6', 'Be2', 'Nf6'], ['b3', 'e5', 'Bb2', 'Nc6', 'g3', 'd5', 'Bg2', 'Nf6', 'e3', 'Bd6'], ['d4', 'd5', 'Nc3', 'c6', 'a3', 'Nf6', 'f3', 'e6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'd3', 'Bc5'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'e5', 'Nf3', 'd6'], ['e4', 'e6', 'e5', 'd6', 'exd6', 'cxd6', 'c4', 'Nf6', 'd4', 'd5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'c5', 'Bd3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'cxd4', 'cxd4', 'a6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb3', 'c5', 'a3', 'Nc6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'dxc5', 'Bxc5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'c5', 'dxc5', 'Bxc5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c5', 'cxd5', 'exd5', 'Nf3', 'cxd4'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'g5', 'Bc4', 'Bg7', 'O-O', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'a6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd4', 'exd4'], ['d4', 'd5', 'h3', 'e6', 'a3', 'Be7', 'Bf4', 'Nf6', 'Nc3', 'c5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Nf3', 'Nf6'], ['e4', 'd6', 'Nf3', 'e5', 'd4', 'Nc6', 'd5', 'Nce7', 'c4', 'Bg4'], ['e4', 'e6', 'g3', 'd5', 'Bg2', 'Nc6', 'exd5', 'exd5', 'd4', 'Be7'], ['e4', 'e5', 'd3', 'Nf6', 'Bg5', 'Be7', 'Qc1', 'd5', 'f3', 'Nc6'], ['e4', 'a6', 'Nf3', 'h6', 'd4', 'e6', 'Nc3', 'b5', 'd5', 'd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'Nd6', 'Nc6+', 'Be7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e6', 'e5', 'd6', 'Nf3', 'Nc6', 'Bb5', 'Bd7', 'exd6', 'cxd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qf6', 'Nc3', 'a6', 'Ba4', 'b5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be7', 'd4', 'Nf6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7'], ['e4', 'e6', 'Nf3', 'd5', 'd4', 'c5', 'e5', 'cxd4', 'Nxd4', 'Bc5'], ['d4', 'd5', 'Bg5', 'Nc6', 'h3', 'f6', 'Bh4', 'e5', 'c3', 'Nge7'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'h6', 'c3', 'g5', 'd4', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6'], ['e4', 'e5', 'd3', 'Qf6', 'f3', 'Bc5', 'a3', 'Nh6', 'Ne2', 'O-O'], ['d4', 'e5', 'e3', 'Qf6', 'Bb5', 'exd4', 'Na3', 'dxe3', 'fxe3', 'Bc5'], ['e4', 'e5', 'f4', 'Nf6', 'fxe5', 'Nxe4', 'Qf3', 'Nc5', 'd4', 'Ne6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'O-O', 'O-O'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'a6', 'Nf3', 'Bg4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Bb4', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'd6', 'O-O', 'Bg4'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qe5', 'Nf3', 'Qe6', 'e4', 'Nc6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Bc4', 'Nf4', 'Qf3', 'g5'], ['e4', 'c5', 'Qh5', 'd6', 'Bb5+', 'Bd7', 'Bc4', 'g6', 'Qf3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bb3', 'Bxb3', 'axb3', 'Nc6'], ['e4', 'c5', 'Qf3', 'Nc6', 'Bc4', 'Nf6', 'a3', 'd6', 'Ba2', 'b6'], ['e4', 'c5', 'Nh3', 'Nc6', 'Bd3', 'e6', 'O-O', 'Nf6', 'Nc3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'a6', 'Ng5', 'd5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qc5', 'Nf3', 'Bf5', 'b3', 'Nd7'], ['d4', 'd5', 'g3', 'Nf6', 'Bg2', 'Nc6', 'c4', 'dxc4', 'Bg5', 'h6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'a6', 'Ng5', 'd5'], ['e4', 'e6', 'd4', 'c5', 'dxc5', 'Bxc5', 'Nf3', 'Bxf2+', 'Kxf2', 'Nf6'], ['d4', 'd5', 'f3', 'Nc6', 'e4', 'Nf6', 'e5', 'Nd7', 'Nc3', 'Nb6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nc6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Qh5', 'Nxh5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'd6'], ['e4', 'e6', 'd4', 'c6', 'Nf3', 'h6', 'Nc3', 'd5', 'exd5', 'cxd5'], ['e3', 'e5', 'Bc4', 'Nc6', 'Qf3', 'Nf6', 'e4', 'Bc5', 'Qb3', 'd6'], ['f4', 'e6', 'Nf3', 'Bb4', 'c3', 'Bc5', 'd4', 'Bd6', 'g3', 'Nf6'], ['e4', 'f5', 'Bc4', 'Nf6', 'Qe2', 'e6', 'd4', 'Be7', 'Bg5', 'O-O'], ['c4', 'e6', 'Nc3', 'd5', 'd3', 'dxc4', 'dxc4', 'Qxd1+', 'Kxd1', 'Bd6'], ['Nf3', 'c6', 'd4', 'Qc7', 'g3', 'd5', 'Bg2', 'Bd7', 'O-O', 'Na6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'Nd4', 'Nxd4', 'exd4'], ['c3', 'd6', 'f3', 'e5', 'd3', 'Nf6', 'c4', 'Nc6', 'f4', 'Nd4'], ['Nc3', 'e6', 'e4', 'f6', 'Qf3', 'Qe7', 'Bc4'], ['e4', 'f6', 'd4', 'c6', 'Nf3'], ['e3', 'g5', 'h4', 'gxh4', 'Rxh4', 'Nf6', 'b3', 'Rhg8', 'Bb2', 'Rg5'], ['e3', 'e6', 'd3', 'g6', 'h4', 'Bg7', 'a4', 'Nf6', 'Ra3', 'O-O'], ['e4', 'd6', 'Nf3', 'f6', 'd4', 'g5', 'd5', 'Bh6', 'g4', 'Qd7'], ['e4', 'd5', 'Nf3', 'g5', 'd3', 'h6', 'Nc3', 'dxe4', 'Nxe4', 'f5'], ['e4', 'd6', 'b3', 'f6', 'Bb2', 'a6', 'Qh5+', 'Kd7', 'Bc4', 'c6'], ['e4', 'f6', 'e5', 'fxe5', 'd3', 'c5', 'Bh6', 'gxh6', 'Qh5#'], ['e4', 'a6', 'Qh5', 'Ra7', 'Bc4', 'Nf6', 'Qxf7#'], ['d3', 'e5', 'f3', 'd5', 'c3', 'b5', 'a4', 'bxa4', 'Rxa4', 'Nf6'], ['e4', 'e5'], ['e4', 'e6', 'f4', 'f5', 'Nc3', 'Nf6', 'e5', 'Nd5', 'd4', 'Nc6'], ['e4', 'e5'], ['e4', 'e5', 'c4', 'Nc6', 'Nc3', 'Nd4', 'f3', 'd5', 'Nge2', 'Bc5'], ['e4', 'e5', 'f4', 'Bd6', 'Nf3', 'exf4', 'Bc4', 'h6', 'd4', 'g5'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'Bc4', 'Nxe4', 'd3', 'Nd6'], ['Nf3', 'Nc6', 'Nc3', 'e5', 'e4', 'Nf6', 'Bb5', 'a6', 'Bxc6', 'bxc6'], ['e4', 'e5', 'f4', 'Qh4+', 'g3', 'Qe7', 'Nf3', 'exf4', 'gxf4', 'Qxe4+'], ['e4', 'd5', 'd3', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'Nd7', 'f4', 'Ngf6'], ['e4', 'e5', 'd3', 'Nf6', 'f4', 'Qe7', 'Nc3', 'Nc6', 'g4', 'd6'], ['e4', 'e5', 'f4', 'Bd6', 'Nf3', 'Nc6', 'Bc4', 'exf4', 'Ng5', 'Nh6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'c3', 'Bc5', 'h3', 'O-O'], ['c4', 'e5', 'Nc3', 'Qf6', 'd3', 'Bc5', 'Ne4', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'Be7', 'd4', 'c5', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nc3', 'd6', 'Bc4', 'c6', 'd3', 'b5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'd6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bb4+', 'c3', 'Bd6', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'd6', 'd3', 'Nf6', 'Ng5', 'O-O'], ['b3', 'e5'], ['e4', 'e5'], ['d4', 'd5'], ['e4', 'e6'], ['e4', 'e6'], ['d4', 'd5'], ['a3', 'e5'], ['d4', 'h5'], ['a4', 'e6'], ['d4', 'g5'], ['a4', 'e6'], ['d4', 'h5'], ['a4', 'e5'], ['d4', 'h6'], ['Nc3', 'Nc6'], ['d4', 'e5'], ['Nh3', 'e6'], ['d4', 'Nc6'], ['Nc3', 'e5'], ['e4', 'e5'], ['Nf3', 'e5'], ['d4', 'd5'], ['e3', 'e5'], ['d4', 'd5'], ['e3', 'c6'], ['e4', 'e5'], ['e4', 'd5'], ['d4', 'd5'], ['e4', 'Nh6'], ['d4', 'd5'], ['e4', 'Nc6'], ['d4', 'd5'], ['e4', 'e6'], ['d3', 'e5'], ['e4', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'dxc6', 'Nc3', 'Bd6'], ['d4', 'd5', 'c4', 'e6', 'cxd5', 'exd5', 'Nc3', 'Nf6', 'g3', 'Bb4'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Bg5', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'b3', 'Nf6', 'Bb2', 'd6', 'Nc3', 'Be7'], ['c4', 'e5', 'Nc3', 'g6', 'd3', 'Bg7', 'e3', 'Ne7', 'Be2', 'c6'], ['c4', 'e5', 'Nc3', 'c6', 'd3', 'Bc5', 'e3', 'd6', 'a3', 'a5'], ['c4', 'e5', 'Nc3', 'Bc5', 'd3', 'Qf6', 'e3', 'Nc6', 'a3', 'Nge7'], ['c4', 'e5', 'Nc3', 'Bc5', 'd3', 'Nf6', 'e3', 'd6', 'a3', 'Bf5'], ['c4', 'e6', 'd3', 'Bb4+', 'Bd2', 'c5', 'a3', 'Ba5', 'Bxa5', 'Qxa5+'], ['c4', 'g6', 'Nc3', 'Bg7', 'd3', 'b6', 'e3', 'Bb7', 'Nf3', 'Nf6'], ['b3', 'f5', 'c4', 'Nf6', 'Bb2', 'd6', 'd3', 'e5', 'Nc3', 'c6'], ['c4', 'e5', 'Nc3', 'Bc5', 'd3', 'd6', 'e3', 'a6', 'a3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'O-O', 'h6'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'e6', 'e4', 'Nf6'], ['c4', 'e5', 'Nc3', 'Nf6', 'd3', 'Bb4', 'e3', 'O-O', 'a3', 'Be7'], ['c4', 'e6', 'Nc3', 'c5', 'd3', 'Nc6', 'e3', 'Qf6', 'a3', 'Nh6'], ['b3', 'b6', 'Bb2', 'Bb7', 'd3', 'd6', 'e4', 'e5', 'Nf3', 'Be7'], ['c4', 'e5', 'Nc3', 'Bc5', 'd3', 'Nc6', 'e3', 'Nf6', 'a3', 'd5'], ['b3', 'e5', 'Bb2', 'Nc6', 'd3', 'd5', 'e4', 'd4', 'Nf3', 'Bb4+'], ['c4', 'e5', 'Nc3', 'Bc5', 'd3', 'Qf6', 'e3', 'Nh6', 'Ne4', 'Qc6'], ['c4', 'c6', 'Nc3', 'Qc7', 'd3', 'd6', 'e3', 'Be6', 'Nf3', 'g6'], ['c4', 'c5', 'Nc3', 'e6', 'd3', 'a6', 'e3', 'b6', 'Nf3', 'Bb7'], ['c4', 'c5', 'Nc3', 'b6', 'd3', 'e6', 'e3', 'Bb7', 'Nf3', 'd6'], ['c4', 'e5', 'Nc3', 'Nf6', 'd3', 'Be7', 'e3', 'd5', 'cxd5', 'Nxd5'], ['c4', 'e5', 'Nc3', 'Bc5', 'd3', 'Qh4', 'e3', 'Nf6', 'Nf3', 'Qh6'], ['c4', 'f5', 'Nc3', 'Nf6', 'd3', 'g6', 'e3', 'Bg7', 'Nf3', 'O-O'], ['b3', 'b6', 'Bb2', 'c5', 'c4', 'd5', 'd3', 'd4', 'e3', 'e5'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'e6', 'e3', 'Bb4'], ['c4', 'e6', 'Nc3', 'd6', 'd3', 'a6', 'e3', 'b6', 'Nf3', 'Nc6'], ['c4', 'e5', 'Nc3', 'Bc5', 'd3', 'Qf6', 'e3', 'Nh6', 'Qf3', 'Qxf3'], ['c4', 'e5', 'Nc3', 'Bb4', 'd3', 'd6', 'e3', 'Bxc3+', 'bxc3', 'Qh4'], ['c4', 'c5', 'Nc3', 'e6', 'd3', 'a6', 'e3', 'd6', 'Nf3', 'Bd7'], ['b3', 'b6', 'Bb2', 'Bb7', 'd3', 'c6', 'e4', 'f6', 'Nf3', 'g6'], ['c4', 'b6', 'Nc3', 'Bb7', 'd3', 'c6', 'e3', 'd6', 'Nf3', 'Nd7'], ['c4', 'e5', 'Nc3', 'Bc5', 'd3', 'c6', 'e3', 'Nf6', 'h3', 'O-O'], ['d4', 'e6', 'e4', 'Nc6', 'e5', 'f6', 'f4', 'fxe5', 'fxe5', 'Qh4+'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'exd4', 'Bg5', 'Qe6', 'Qxd4', 'Nc6'], ['e4', 'd5', 'Qh5', 'Nf6', 'Qf3', 'dxe4', 'Qc3', 'e6', 'd4', 'c5'], ['e4', 'd6', 'Qh5', 'g6', 'Qf3', 'Nf6', 'b3', 'e5', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'c3', 'g6', 'd4', 'd6'], ['d3', 'e5', 'Nf3', 'Nc6', 'd4', 'e4', 'd5', 'exf3', 'dxc6', 'fxg2'], ['e4', 'e5', 'a3', 'd6', 'h3', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Bb4', 'Qe2', 'Bxc3'], ['e4', 'e5', 'h3', 'd6', 'Nf3', 'c5', 'Bc4', 'h6', 'a3', 'Nf6'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'a3', 'h6', 'Nf3', 'Nf6'], ['d4', 'c5', 'dxc5', 'Qa5+', 'Bd2', 'Qxc5', 'b4', 'Qd4', 'e3', 'Qxa1'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Bc5'], ['c4', 'e5', 'e4', 'Nf6', 'd3', 'Bb4+', 'Bd2', 'Bxd2+', 'Qxd2', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'h6', 'b3', 'd6', 'Bb2', 'Nf6'], ['d4', 'd5', 'Nc3', 'Nf6', 'e3', 'Nc6', 'Nf3', 'h6', 'Be2', 'Bg4'], ['e4', 'c6', 'e5', 'd5', 'exd6', 'e6', 'Nf3', 'Bxd6', 'a3', 'Nf6'], ['e4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'c6', 'Bc4', 'e6', 'e5', 'Ne7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'dxc4', 'e3', 'b5', 'a4', 'a6'], ['e4', 'd5', 'e5', 'c5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'Nf3', 'e6'], ['e4', 'e5', 'Nc3', 'Nf6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'h6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'g5', 'd4', 'd5', 'e5', 'f6'], ['e4', 'e5', 'Nf3', 'Qe7', 'Nc3', 'a6', 'Bc4', 'h6', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'h6', 'Bc4', 'Nc6', 'Bb5', 'Qf6', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'h6', 'Nxe5', 'Qe7', 'Nf3', 'Qxe4+', 'Qe2', 'Nf6'], ['d4', 'd5', 'Bg5', 'h6', 'Bh4', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Qb6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Qe7', 'Qxc7', 'Qxe4+', 'Ne2', 'Nc6'], ['e4', 'e6', 'e5', 'd6', 'exd6', 'Qxd6', 'Nf3', 'b6', 'd4', 'Bb7'], ['e4', 'c5', 'Qh5', 'e6', 'Nf3', 'Nc6', 'Ng5', 'g6', 'Qf3', 'Nh6'], ['e4', 'e5', 'Qh5', 'Qf6', 'Nf3', 'g6', 'Qxe5+', 'Qxe5', 'Nxe5', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd3', 'a6', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4+', 'Nc3', 'Bxc3+'], ['e4', 'e5', 'Nc3', 'Nf6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd3', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'b3', 'Nf6', 'Ba3', 'Bxa3', 'Nxa3', 'Nxe4'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'c6', 'c5', 'b6', 'Nc3', 'bxc5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'c5', 'b6', 'b4', 'a5'], ['e4', 'e5', 'Nf3'], ['e4', 'g6', 'h3', 'Bg7', 'Nc3', 'b6', 'd4', 'Bb7', 'e5', 'e6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Qe7', 'Nc3', 'Nf6', 'Qe2', 'Nd4'], ['e4', 'c5', 'Qh5', 'Nf6', 'Qxc5', 'Nxe4', 'Qe5', 'd5', 'Bb5+', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd3', 'Nf6', 'O-O', 'Be7'], ['e4', 'Nc6', 'Bc4', 'Nf6', 'Nf3', 'Nxe4', 'Ng5', 'Nxg5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Ne5'], ['e4', 'e5', 'Qh5', 'Qe7', 'Nf3', 'Nf6', 'Qxe5', 'Qxe5', 'Nxe5', 'Nxe4'], ['e4', 'e5', 'd3', 'd6', 'c4', 'c5', 'Nc3', 'Nc6', 'f4', 'f5'], ['d4', 'd5', 'Nf3', 'c6', 'e3', 'f6', 'c3', 'Nd7', 'b4', 'e5'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nd4', 'Nf3', 'd6', 'Nxd4', 'exd4'], ['d4', 'f6', 'Nf3', 'e5', 'e3', 'Nc6', 'Nc3', 'd5', 'Nb5', 'Qd7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bd3', 'Bd6', 'O-O', 'O-O', 'c4', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nc6', 'Bb5', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'Nxe5', 'Nxe5'], ['Nc3', 'e5', 'e4', 'Nf6', 'd3', 'c6', 'Bg5', 'Be7', 'Nf3', 'O-O'], ['Nf3', 'e5', 'Nxe5', 'Nc6', 'Nxc6', 'dxc6', 'g3', 'Nf6', 'Bg2', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bb4+', 'c3', 'Ba5', 'Bb5', 'Nb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'a6', 'd4', 'exd4', 'cxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'c3', 'f6', 'd4', 'Bg4', 'dxe5', 'Bxf3'], ['d4', 'Nc6', 'c3', 'd5', 'b3', 'e6', 'Bb2', 'f6', 'Nd2', 'e5'], ['e3', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Qe7', 'Qxh8', 'Nf6', 'b3', 'Nh5'], ['e4', 'e5', 'Qh5', 'Qf6', 'Nf3', 'Nh6', 'Nxe5', 'Nf5'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'Qh6', 'Nxe5', 'Nf6', 'd4', 'Qh5'], ['e4', 'e5', 'Nf3', 'Qg5'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Nc6', 'd3', 'Nb4', 'Ng5', 'Qh6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'Qh6', 'd3', 'Nc6', 'Bxh6'], ['e3', 'e5', 'b3', 'Qf6', 'Bb2', 'Nh6', 'Nf3', 'c6', 'Bxe5', 'Qf5'], ['e4', 'e5', 'Nf3', 'Qf6', 'd3', 'Nh6', 'Be2', 'Qb6', 'O-O', 'f6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'Nh6', 'Nd5', 'Qc6', 'c4', 'Qc5'], ['e4', 'd5', 'Qf3', 'd4', 'Bc4', 'f6', 'Nh3', 'e5', 'c3', 'dxc3'], ['e4', 'd5', 'Qf3', 'c6', 'exd5', 'cxd5', 'b3', 'Be6', 'c4', 'Qd7'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'Qf6', 'Nc3', 'Nh6', 'Nd5', 'Qc6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Nh6', 'h3', 'Qb6', 'b3', 'd6'], ['e4', 'e5', 'Qf3', 'a6', 'Bc4', 'Nf6', 'Nh3', 'h6', 'Be2', 'b5'], ['e4', 'd5', 'Qf3', 'dxe4', 'Qxe4', 'Nf6', 'Nh3', 'Nxe4'], ['e4', 'e5', 'Qf3', 'Nf6', 'Nh3', 'd5', 'exd5', 'Qxd5', 'Qxd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Qb6', 'O-O', 'Nh6', 'd4', 'Be7'], ['d4', 'e5', 'dxe5', 'Qe7', 'Nf3', 'Nh6', 'h3', 'Nf5', 'Nc3', 'Qe6'], ['e4', 'c5', 'Qf3', 'Nc6', 'Bd3', 'Ne5', 'Bc4', 'Nxc4', 'd3', 'Ne5'], ['Nf3', 'd6', 'e4', 'e5', 'h3', 'Nf6', 'Nc3', 'Be7', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'Be7', 'd3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd4', 'exd4', 'Ng5', 'd5'], ['e4', 'e5', 'Bb5', 'Nf6', 'd3', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'd4', 'cxd4'], ['e4', 'c5', 'Bc4', 'e6', 'b3', 'a6', 'Nc3', 'b5', 'Be2', 'Bb7'], ['e4', 'e5'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'b3', 'd4', 'Na3', 'Ne7'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nxe4', 'Nxe5', 'Nxf2', 'Kxf2', 'Qh4+'], ['d4', 'Nf6', 'e3', 'a6', 'Nf3', 'e6', 'Ne5', 'd5', 'a3', 'c5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Qxd4', 'Nf6', 'Bg5', 'c5'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'a6', 'd4', 'b5', 'Be2', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'h6', 'Be2', 'Bc5', 'Nxe5', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'Be2', 'Bc5', 'Nc3', 'O-O'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Be7'], ['e4', 'e5', 'a3', 'Nf6', 'Nc3', 'd6', 'Bc4', 'Be7', 'd3', 'h6'], ['Nf3', 'c5', 'e4', 'Nc6', 'b3', 'd6', 'c4', 'Nf6', 'Nc3', 'g6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4+', 'c3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'd4', 'exd4', 'Nxd4', 'Ne5'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'c5', 'Nd5', 'Bc4', 'e6'], ['e4', 'e5', 'Bc4', 'Nf6', 'f3', 'Be7', 'Ne2', 'Nc6', 'c3', 'Na5'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Nc6', 'Bb5', 'Bd7', 'Nc3', 'a6'], ['e4', 'c5', 'c3', 'Nf6', 'e5', 'Nd5', 'b4', 'cxb4', 'cxb4', 'Nxb4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'O-O', 'Nxe4', 'd3', 'Nf6'], ['e4', 'd5', 'exd5', 'e6', 'dxe6', 'Bxe6', 'Nc3', 'Bb4', 'Nf3', 'Bxc3'], ['d4', 'Nf6', 'Bg5', 'd5', 'Bxf6', 'exf6', 'Nc3', 'Bb4', 'Qd3', 'g6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'd4', 'Nxe4', 'dxe5', 'Qh4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nc3', 'Be6'], ['d4', 'Nf6', 'c4', 'e6', 'a3', 'd5', 'Nc3', 'c5', 'Nf3', 'cxd4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Qxd4', 'Nf6', 'Nc3', 'Be7'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'e3', 'c5', 'Be2', 'cxd4'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Nxd5', 'Qxd5', 'd3', 'Nc6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Bc5', 'd3', 'Ng4', 'O-O', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxe5', 'Qg5', 'O-O', 'Qxe5'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nf3', 'd6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nf3', 'd5', 'Bxd5', 'Ng4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd3', 'Bf5', 'Bf4', 'e6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'Nh3', 'Ng4', 'Qxg4', 'd5'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'Nc6', 'd4', 'f6', 'Bb5', 'Bd7'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'f6', 'Bc4', 'Ne7', 'O-O', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'c5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'cxd5', 'exd5', 'Bg5', 'Be7'], ['e4', 'd5', 'e5', 'd4', 'Nf3', 'Nc6', 'Bc4', 'Bg4', 'Be2', 'e6'], ['h4', 'e5', 'g3', 'Bc5', 'Bh3', 'Qf6', 'Nf3', 'e4', 'O-O', 'exf3'], ['e4', 'h5', 'd3', 'Nh6', 'Qxh5', 'g6', 'Qf3', 'Bg7', 'd4', 'O-O'], ['e4', 'e5', 'd3', 'd6', 'Nf3', 'Nf6', 'Nh4', 'Nh5', 'Qxh5', 'Qxh4'], ['e4', 'e6', 'Bc4', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'Nf3'], ['Nc3', 'e5', 'Nf3', 'Nf6', 'b3', 'd5', 'g3', 'Ne4', 'Na4', 'Bg4'], ['d4', 'e6', 'e4', 'd6', 'Nf3', 'Kd7', 'Ng5', 'Qxg5', 'Bxg5', 'f6'], ['b4', 'e5', 'Na3', 'Nf6', 'Bb2', 'Ne4', 'Rb1', 'Qh4', 'e3', 'Qxf2#'], ['e4', 'g6', 'd4', 'Nh6', 'e5', 'Bg7', 'Bxh6', 'Bxh6', 'g3', 'a5'], ['e4', 'g6', 'Nf3', 'b6', 'Ng5', 'Nf6', 'Bc4', 'Nxe4', 'Nxf7', 'Ng5'], ['b3', 'e6', 'g3', 'd5'], ['e4', 'h5', 'd4', 'g6', 'f4', 'Bh6', 'c4', 'Nf6', 'e5', 'Ng8'], ['d4', 'Nc6', 'e3', 'Nb4', 'c3', 'Nd5', 'Bc4', 'Ndf6', 'Qf3', 'Nh6'], ['g4', 'd5', 'b3', 'Bxg4', 'h3', 'Bf5', 'Nc3', 'Nf6', 'Nb5', 'c5'], ['g3', 'c6', 'Bh3', 'g6', 'e3', 'Bg7', 'Bg2', 'a5', 'a3', 'Na6'], ['e4', 'd6', 'Nf3'], ['e4', 'd6', 'd3', 'b6', 'Nf3', 'Bg4', 'Nc3', 'Na6', 'Be2', 'Nc5'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'Nf3', 'Bg4', 'Be2', 'dxe5'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'exf4', 'd4', 'd5', 'Nc3', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'd6', 'Bg5', 'Nge7'], ['e4', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'd6', 'd3', 'g6', 'h3', 'b6'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'Bc5', 'd4', 'd5', 'Bb5+', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Bc5'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'b6', 'Nc3', 'Bb7', 'Bc4', 'e6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'b3', 'd6', 'Qb5+', 'c6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'dxe5', 'Bb5', 'Qxd1+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'b3', 'd6', 'c3', 'h6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bd6', 'd3', 'Nc6', 'a3', 'Nd4'], ['d4', 'd5', 'Nc3', 'Nc6', 'Nf3', 'Be6', 'e4', 'dxe4', 'd5', 'exf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nce7', 'd3', 'a6', 'Bc4', 'Nh6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Nxe5', 'Nxe4', 'Nxe4', 'h6'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'Nc6', 'Nc3', 'Bb4', 'O-O', 'Bxc3'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'exd4', 'Nxd4', 'Nc6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'Bb5', 'Bd7', 'Nd5', 'Nf6'], ['Nf3', 'd5', 'd4', 'Bg4', 'h3', 'Bxf3', 'gxf3', 'e6', 'e3', 'Nc6'], ['e4', 'e6', 'd4', 'f5', 'Nc3', 'a6', 'Bd3', 'Bb4', 'Bd2', 'Nf6'], ['e3', 'e5', 'Na3', 'Bxa3', 'bxa3', 'd5', 'Bb2', 'f6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd4', 'f6'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'Ne7', 'O-O', 'Nbc6', 'Nc3', 'd6'], ['Nc3', 'e5', 'Nf3', 'Nc6', 'e3', 'Bb4', 'a3', 'Bxc3', 'dxc3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'b3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8'], ['e4', 'e5', 'Qh5', 'Nc6', 'Nf3', 'Qe7', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'Ne7', 'O-O', 'Nec6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Qh5', 'd6', 'Bc4', 'Qe7', 'd3', 'Nf6', 'Qf3', 'Be6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Qd6', 'Nf3', 'e5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Bg4', 'f3', 'Bf5'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Qe7', 'Qxe7+', 'Bxe7', 'Bd3', 'Nc6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e6', 'Bxc4', 'Nc6', 'a3', 'e5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'f6', 'Bb5', 'c6', 'Bc4', 'b5', 'Bxg8', 'Rhxg8'], ['e4', 'e5', 'Nf3', 'f6', 'Nc3', 'Bb4', 'd4', 'Bxc3+', 'bxc3', 'exd4'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'g6'], ['e4', 'e6', 'e5', 'Qg5', 'Nf3', 'Qf5', 'd3', 'Bc5', 'Nc3', 'g5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Be2', 'c6', 'Nf3', 'e6'], ['e4', 'e5', 'Nf3', 'Qf6', 'd3', 'h6', 'Be3', 'c6', 'd4', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'Nc3', 'Ba6'], ['e4', 'e6', 'e5', 'Nc6', 'd4', 'd6', 'Bb5', 'Bd7', 'exd6', 'Bxd6'], ['e4', 'e6', 'Nf3', 'd5', 'Nc3', 'c5', 'exd5', 'exd5', 'Bb5+', 'Nc6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'd6', 'g3', 'e5'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'b5', 'a4', 'b4', 'e4', 'Ba6'], ['d4', 'Nf6', 'Nc3', 'g6', 'e4', 'd6', 'Bg5', 'Bg7', 'e5', 'dxe5'], ['e4', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Nxd5', 'Qxd5', 'Nf3', 'Nc6'], ['d4', 'f5', 'e4', 'fxe4', 'Nc3', 'Nf6', 'Bg5', 'd5', 'Bxf6', 'exf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'O-O'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'e3', 'Bg4', 'h3', 'Bxf3'], ['d4', 'd5', 'Bg5', 'f6', 'Bh4', 'h5', 'f4', 'Nh6', 'Nc3', 'Nc6'], ['c4', 'e5', 'b3', 'Nc6', 'Ba3', 'Nf6', 'Bxf8', 'Kxf8', 'Na3', 'd5'], ['d4', 'Nf6', 'Nc3', 'g6', 'e4', 'd6', 'Nf3', 'Bg7', 'Bc4', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'Nf3', 'O-O'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['d4', 'f5', 'Bf4', 'g6', 'Nc3', 'c6', 'e4', 'e6', 'exf5', 'exf5'], ['e4', 'c6', 'Nf3', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bg4', 'Be2', 'Nd7'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'e6', 'Nf3', 'Bd6'], ['e4', 'e5', 'd4', 'Nf6', 'Qd3', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'b6'], ['f4', 'e6', 'e3', 'd5', 'b3', 'Bd6', 'Ba3', 'Bxa3', 'Nxa3', 'Nc6'], ['e3', 'e5', 'b3', 'e4', 'Bb2', 'd5', 'Nc3', 'c5', 'Nge2', 'd4'], ['e4', 'e6', 'e5', 'c5', 'Nf3', 'h6', 'd4', 'a6', 'd5', 'exd5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Nc6', 'Nf3', 'Qf4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bd6', 'Bg5', 'f6', 'Bd2', 'g5'], ['e3', 'e5', 'Qh5', 'Nc6', 'Bc4', 'd5', 'Bb5', 'Bd6', 'Nf3', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'e3', 'dxc4', 'Bxc4', 'Nc6', 'Ne2', 'Bd6'], ['d4', 'b6', 'e4', 'e6', 'Bd3', 'Ba6', 'Bxa6', 'Nxa6', 'c3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'b3', 'Nf6', 'Bb2', 'Bc5', 'Bxe5', 'Ng4'], ['f4', 'e6', 'e3', 'b6', 'Nc3', 'Bb7', 'd4', 'Qh4+', 'Ke2', 'Ba6+'], ['c4', 'Nf6', 'Nf3', 'b6', 'd4', 'e6', 'e3', 'Bb7', 'Bd3', 'd5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Nge2', 'Qh5', 'Ng3', 'Qxd1+'], ['e4', 'Nf6', 'Bc4', 'Nxe4', 'Qf3', 'Nd6', 'Bd5', 'e6', 'Be4', 'Qg5'], ['e4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nf6'], ['e4', 'e5', 'f4', 'exf4', 'Qg4', 'Nf6', 'Qxf4', 'Bc5', 'Nc3', 'O-O'], ['g3', 'e5', 'Bg2', 'Nc6', 'c4', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Be7'], ['d4', 'd5', 'e3', 'Nc6', 'c4', 'e5', 'Nc3', 'Bb4', 'Bd2', 'dxc4'], ['e4', 'c5', 'b3', 'Nc6', 'Ba3', 'b6', 'b4', 'd6', 'g3', 'cxb4'], ['d4', 'd6', 'e4', 'Nf6', 'Nc3', 'b6', 'Bg5', 'Bb7', 'Bxf6', 'gxf6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'd6', 'Nf3', 'Nc6', 'Qd5', 'Be6'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'c4', 'Nb6', 'f4', 'e6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qc4', 'h6', 'Qd5', 'Qe7'], ['c4', 'e5', 'Nc3', 'Nc6', 'Nf3', 'd6', 'd3', 'Nf6', 'Qb3', 'Be6'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Qe7', 'Qxh8', 'f6', 'd3', 'Qg7'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'e6', 'e4', 'Be7', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'd3', 'c6', 'a3', 'b5'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'a6', 'd4', 'd5', 'exd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Bd6', 'd3', 'Nf6', 'Bg5', 'O-O', 'Nc3', 'Qe8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'd6', 'Bxc6+', 'bxc6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qa4', 'Nf6', 'Nc3', 'e6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'd6', 'Ng5', 'Ne5', 'Bb3', 'Bg4'], ['e4', 'c5', 'd3', 'Nc6', 'Nf3', 'e5', 'Bg5', 'Be7', 'Bxe7', 'Ngxe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'h6', 'Be2', 'd6', 'Bd2', 'Be6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'h3', 'g6', 'Ng5', 'Ne5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'O-O', 'e6', 'c3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'Nc3', 'a6', 'Ba4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7', 'dxe5', 'Nxe5'], ['d4', 'Nf6', 'e3', 'd6', 'Nf3', 'Bg4', 'Be2', 'g6', 'h3', 'Bf5'], ['e4', 'c5', 'c4', 'e6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'd4', 'cxd4'], ['e4', 'c5', 'Bc4', 'Nc6', 'c3', 'e6', 'Nf3', 'd6', 'd3', 'd5'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nc6', 'Nf3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bc5', 'O-O', 'O-O'], ['b4', 'e5', 'a3', 'd5', 'Bb2', 'Bd6', 'Nc3', 'd4', 'Ne4', 'Bf5'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nge7', 'Bb5', 'a6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'd3', 'e6', 'Bg5', 'h6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'Bb4'], ['b3', 'e6', 'Bb2', 'd5', 'd4', 'c5', 'c3', 'Nc6', 'dxc5', 'Bxc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Nc3', 'Bd7', 'd3', 'a6'], ['e3', 'c5', 'd3', 'd6', 'Nf3', 'Bg4', 'Be2', 'Nc6', 'c3', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'O-O', 'Bg4', 'h3', 'Bh5'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qa4', 'e6', 'a3', 'Be7'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Ne7', 'd4', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'bxc6', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'O-O', 'a6'], ['e4', 'c5', 'c4', 'Nc6', 'Nf3', 'e5', 'Nc3', 'Nf6', 'd3', 'd6'], ['e4', 'c5', 'e5', 'e6', 'Bb5', 'Qc7', 'd4', 'Qa5+', 'Nc3', 'cxd4'], ['e4', 'c5', 'f4', 'Nc6', 'Bc4', 'd6', 'd3', 'Bd7', 'c3', 'e6'], ['c4', 'Nf6', 'Nc3', 'e6', 'e4', 'Bb4', 'Nf3', 'Bxc3', 'bxc3', 'd6'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'Nc6', 'b3', 'Nf6', 'Bd3', 'g6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'cxd4', 'c3', 'dxc3'], ['d4', 'g6', 'e3', 'Bg7', 'b3', 'Nf6', 'Bb2', 'O-O', 'Bc4', 'd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'e6', 'Bxc6', 'dxc6', 'd3', 'Qb6'], ['e4', 'c5', 'Qf3', 'Nc6', 'Bc4', 'Ne5', 'Qc3', 'Nxc4', 'Qxc4', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'Nbd2', 'a6', 'dxe5', 'dxe5'], ['e4', 'c5', 'Bc4', 'Nc6', 'a3', 'd6', 'Nc3', 'Nf6', 'd3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bc4', 'd6', 'Bxf7+', 'Kxf7', 'Qf3+', 'Ke8'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Qf6', 'd3', 'h6', 'a3', 'a6'], ['e4', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'Ne5', 'd3', 'Nfg4'], ['Nf3', 'd5', 'Nc3', 'd4', 'Ne4', 'f5', 'Neg5', 'h6', 'Ne6', 'Bxe6'], ['e4', 'Nf6', 'Nc3', 'g6', 'Bc4', 'Bh6', 'd3', 'Ng4', 'h3', 'Nf6'], ['h4', 'Nf6', 'g3', 'Nc6', 'b3', 'Na5', 'a4', 'Nh5', 'Rh3', 'b6'], ['e4', 'd5', 'd4', 'dxe4', 'Bf4', 'c6', 'Bc4', 'b5', 'Nf3', 'bxc4'], ['d4', 'd5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'Bf4', 'e5', 'dxe5', 'Bd6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Qe7', 'Nf3', 'Qxe5', 'Nxe5', 'Nc6'], ['e4', 'e5', 'g3', 'Nf6', 'Nf3', 'Nc6', 'b3', 'd6', 'Bb2', 'Bg4'], ['e4', 'e5', 'f4', 'Bc5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'exf4'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Qc7'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'c5', 'cxd5', 'Nxd5'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Qf6', 'Nc3', 'Nge7', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'Nxe5', 'Nxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'a6', 'Bc4', 'Bb4', 'a3', 'Bxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'a3', 'd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'd5', 'd3', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'd3', 'd6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nc6', 'Nf3', 'b5', 'Nxb5', 'Ba6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'd5', 'exd5', 'Qxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nf3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'bxc6'], ['e4', 'e6', 'd4', 'Qh4', 'Bd3', 'b6', 'Nf3', 'Qg4', 'Rg1', 'Bb7'], ['e4', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Nxd5', 'Qxd5', 'Nf3', 'Bg4'], ['e4', 'e6', 'Nc3', 'Nc6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bb4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qc6', 'Bb5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Qh4'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Nc3', 'Bc5', 'Nd5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Qf6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Qf6', 'Bg5', 'Qg6', 'Nc3', 'Be7'], ['e4', 'c5', 'Bc4', 'd6', 'Nc3', 'Nc6', 'Nf3', 'e6', 'd4', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Na5', 'Nc3', 'c6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nd7', 'dxe5', 'dxe5', 'Bc4', 'f6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf3', 'a6'], ['e4', 'e6', 'Nf3', 'd5', 'Nc3', 'c5', 'd4', 'Nc6', 'Bb5', 'Qb6'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nf3', 'Qb6'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'Nf3', 'c5', 'd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'e6', 'd4', 'g5', 'Nf3', 'h6', 'Bc4', 'a6', 'Nc3', 'd6'], ['e4', 'd6', 'd4', 'f5', 'Nc3', 'fxe4', 'Nxe4', 'Bf5', 'Bd3', 'Qd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bb4+', 'Nc3', 'Nf6', 'Bd2', 'exd4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Nxe5', 'Bxc3', 'dxc3', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'c6', 'd4', 'exd4', 'Qxd4', 'Qxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nce7', 'Bc4', 'Nf6'], ['e4', 'b6', 'd4', 'Ba6', 'Bxa6', 'Nxa6', 'Nf3', 'e6', 'Nc3', 'Qe7'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'e5', 'Bc4', 'h6', 'Bd5', 'Be7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Bg4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'f4', 'Qb6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nc6', 'O-O', 'Nxe4', 'd4', 'Bd6'], ['e4', 'e6', 'Nf3', 'c5', 'Bc4', 'a6', 'a4', 'd5', 'exd5', 'exd5'], ['e4', 'e5', 'd3', 'f6', 'h3', 'Bb4+', 'c3', 'Bc5', 'Qh5+', 'g6'], ['e4', 'e5', 'Bc4', 'd6', 'Qf3', 'f5', 'exf5', 'Qf6', 'd3', 'Bxf5'], ['d4', 'd5', 'e3', 'e6', 'f4', 'Qh4+', 'g3', 'Qf6', 'Nf3', 'Bb4+'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Qf6', 'dxe5', 'dxe5', 'Bg5', 'Qd6'], ['e4', 'Nf6', 'Nc3', 'd5', 'e5', 'Ng8', 'd4', 'e6', 'Nce2', 'Bb4+'], ['Nf3', 'e6', 'd4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'c6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nd7', 'Bd3', 'Ngf6'], ['c4', 'e6', 'g3', 'd5', 'Bg2', 'c6', 'Nf3', 'Nf6', 'O-O', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'b4', 'Nf6', 'b5', 'Nd4', 'Nxe5', 'Ne6'], ['e4', 'e5', 'Qf3', 'Nc6', 'Bc4', 'Nf6', 'g4', 'h6', 'h4', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'Bc5', 'c3', 'O-O'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'Qd7'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nce7', 'Nf3', 'Ng6', 'b3', 'd6'], ['e4', 'Nc6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'h3', 'Qd7'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nc3', 'Bf5', 'h3', 'e6', 'g4', 'Bg6'], ['d4', 'd5', 'e3', 'c6', 'Be2', 'Qa5+', 'Bd2', 'Qc7', 'Nf3', 'e6'], ['d4', 'Nf6', 'c4', 'Nc6', 'Nf3', 'Nxd4', 'Nxd4', 'Ne4', 'f3', 'Nc5'], ['e4', 'e5', 'd4', 'exd4', 'Bg5', 'Be7', 'Bxe7', 'Qxe7', 'Nd2', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'e5', 'Nd5', 'd4', 'cxd4'], ['d4', 'c6', 'c4', 'e6', 'e4', 'Bb4+', 'Nc3', 'h6', 'a3', 'Ba5'], ['d4', 'Nf6', 'd5', 'g6', 'c3', 'Bg7', 'e3', 'O-O', 'Bd3', 'c6'], ['e4', 'e5', 'Nc3', 'c6', 'f4', 'd6', 'Nf3', 'Nd7', 'Bc4', 'Qf6'], ['e3', 'd5', 'Be2', 'Bf5', 'd3', 'e6', 'g4', 'Bg6', 'h4', 'h6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'c6', 'd4', 'd6', 'dxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'd6', 'c3', 'h6', 'Qa4+', 'c6'], ['Nc3', 'd5', 'e4', 'd4', 'Nce2', 'e5', 'Ng3', 'a6', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'h6', 'O-O', 'd6', 'd4', 'Bg4'], ['e4', 'e5', 'f4', 'd6', 'Bc4', 'a6', 'fxe5', 'dxe5', 'd3', 'h6'], ['d4', 'c6', 'e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'Nf3', 'h6'], ['d4', 'c6', 'Bf4', 'd5', 'e3', 'h6', 'Bd3', 'Nf6', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'h6', 'd3', 'd6', 'a3', 'Bg4'], ['d4', 'Nf6', 'd5', 'd6', 'Bg5', 'Ne4', 'Bf4', 'e5', 'Bc1', 'Be7'], ['e4', 'e5', 'c4', 'Bc5', 'h3', 'Nf6', 'd3', 'a6', 'a3', 'Bd4'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'h6', 'd3', 'd6', 'h3', 'Be7'], ['d4', 'c6', 'e4', 'e6', 'Nh3', 'h6', 'Nc3', 'd5', 'Qh5', 'Nf6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'c6', 'Bc4', 'h6', 'd4', 'd6'], ['d4', 'c6', 'c4', 'e6', 'e4', 'Bb4+', 'Nc3', 'Bxc3+', 'bxc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'c6', 'Bc4', 'h6', 'd3', 'd6'], ['e4', 'e5', 'Qf3', 'Nf6', 'd3', 'h6', 'h3', 'Bc5', 'Be2', 'Nc6'], ['d4', 'c6', 'Nf3', 'd5', 'Bf4', 'h6', 'e3', 'Bf5', 'c4', 'e6'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'd6', 'dxe5', 'dxe5', 'Bg5', 'Qd6'], ['d4', 'c6', 'Nf3', 'd5', 'e3', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'h6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'c6', 'Bc4', 'h6', 'a3', 'a6'], ['d4', 'c6', 'e4', 'e6', 'Nf3', 'h6', 'Bd3', 'd6', 'Bf4', 'Qf6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'c6', 'Bc4', 'h6', 'a3', 'd6'], ['d4', 'c6', 'c4', 'e6', 'Nc3', 'd5', 'c5', 'h6', 'e4', 'Nd7'], ['d4', 'd5', 'e3', 'e6', 'c4', 'Bb4+', 'Bd2', 'Bxd2+', 'Qxd2', 'Ne7'], ['e4', 'e5', 'Bc4', 'Qf6', 'Nf3', 'h6', 'Nc3', 'c6', 'a3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'h6', 'h3', 'd6', 'Nc3', 'c6'], ['Nf3', 'd5', 'd4', 'Bg4', 'e3', 'Bxf3', 'Qxf3', 'Nf6', 'c4', 'e6'], ['e4', 'e5', 'Nc3', 'c6', 'd3', 'h6', 'Nf3', 'Qf6', 'Be2', 'd6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'h6', 'd4', 'd6', 'Nxe5', 'dxe5'], ['d4', 'c6', 'Nc3', 'd5', 'Bf4', 'Bf5', 'e3', 'h6', 'Bd3', 'Qd7'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'h6', 'c3', 'd6', 'd4', 'Be6'], ['d4', 'c6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'Bxc3', 'Bxc3', 'd5'], ['d4', 'd5', 'Bg5', 'Nf6', 'Nf3', 'Nc6', 'h3', 'Bf5', 'a3', 'Ne4'], ['e4', 'e5', 'c4', 'Bc5', 'Nc3', 'a6', 'Nf3', 'd6', 'd4', 'exd4'], ['e4', 'e5', 'Qf3', 'Qf6', 'Bc4', 'Bc5', 'd3', 'Nc6', 'c3', 'a6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'h6', 'h3', 'd6', 'd3', 'Be7'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'h6', 'Nc3', 'c6', 'O-O', 'd6'], ['d4', 'c6', 'c4', 'e6', 'd5', 'cxd5', 'cxd5', 'e5', 'e4', 'd6'], ['c3', 'c5', 'd4', 'cxd4', 'cxd4', 'd5', 'Bf4', 'Nc6', 'Nc3', 'e6'], ['e4', 'e5', 'c3', 'h6', 'Nf3', 'Qf6', 'd4', 'd6', 'Bc4', 'Ne7'], ['d4', 'c6', 'e4', 'e6', 'Nf3', 'h6', 'Nc3', 'd5', 'e5', 'Bb4'], ['e4', 'e5', 'Bc4', 'Qf6', 'c3', 'h6', 'd3', 'Ne7', 'Nd2', 'Ng6'], ['d4', 'a6', 'e4', 'd5', 'e5', 'e6', 'Bf4', 'Nc6', 'Nf3', 'Bd7'], ['e3', 'e5', 'a3', 'd5', 'Nf3', 'e4', 'Nd4', 'Nf6', 'c4', 'Bc5'], ['e4', 'c6', 'Nf3', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nd7', 'Bc4', 'e6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'e6', 'c4', 'Nd7', 'cxd5', 'cxd5'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['d4', 'd5', 'c4', 'c6', 'a4', 'Nf6', 'Nc3', 'Bg4', 'h3', 'Bh5'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd3', 'Nf6', 'Be3', 'Bg4'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'Bc4', 'Bg4', 'd3', 'Be7'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'c6', 'Bc4', 'Be7', 'd3', 'Bg4'], ['d4', 'Nf6', 'c4', 'e6', 'Bg5', 'c5', 'd5', 'exd5', 'cxd5', 'd6'], ['e4', 'e5', 'd4', 'exd4', 'Bc4', 'Nf6', 'e5', 'd5', 'Qxd4', 'dxc4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'd4', 'Bg4', 'd5', 'Nd4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'e6', 'O-O', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7', 'Nc3', 'a6'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'b6', 'e3', 'Bb7', 'Bd3', 'c5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e6', 'Nc3', 'Bb4'], ['e3', 'e5', 'Qf3', 'Nf6', 'Nc3', 'Nc6', 'Ne4', 'Nxe4', 'Qxe4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e3', 'Nf6', 'Qf3', 'Nc6', 'd4', 'd5', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6'], ['Nc3', 'Nc6', 'e3', 'Nf6', 'Qf3', 'd5', 'd4', 'Bg4', 'Qf4', 'h6'], ['e4', 'Nc6', 'd4', 'Nf6', 'Nc3', 'd5', 'e5', 'Ne4', 'Nxe4', 'dxe4'], ['e4', 'Nf6', 'd3', 'e5', 'c4', 'Bb4+', 'Nc3', 'Nc6', 'a3', 'Ba5'], ['d4', 'Nc6', 'Nf3', 'd5', 'c4', 'dxc4', 'Nc3', 'e5', 'Bg5', 'Be7'], ['e4', 'e5', 'd3', 'Nc6', 'Nf3', 'Nf6', 'Bg5', 'd6', 'g4', 'Bxg4'], ['e4', 'g6', 'c3', 'Bg7', 'd4', 'b6', 'Nd2', 'Bb7', 'Ngf3', 'd6'], ['c4', 'e6', 'Nc3', 'f5', 'Nf3', 'g5', 'h3', 'Bh6', 'd4', 'Nf6'], ['e4', 'g6', 'c3', 'Bg7', 'Nf3', 'd6', 'd4', 'Bg4', 'Bb5+', 'c6'], ['e4', 'e5', 'c4', 'Bc5', 'Nf3', 'd6', 'd3', 'Bg4', 'Qa4+', 'Nd7'], ['e4', 'd6', 'c4', 'c5', 'Be2', 'Nc6', 'Nc3', 'Bd7', 'h3', 'e5'], ['e4', 'd6', 'd4', 'f6', 'Nf3', 'Nd7', 'Bc4', 'g5', 'O-O', 'Nh6'], ['d4', 'e6', 'e3', 'Qh4', 'g3', 'Qe4', 'Nf3', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'e6', 'd4', 'Qh4', 'Nc3', 'f5', 'Nf3', 'Qg4', 'e5', 'd5'], ['e3', 'd5', 'Qh5', 'g6', 'Qe5', 'f6', 'Qf4', 'e5', 'Qa4+', 'Bd7'], ['Nf3', 'e6', 'Ne5'], ['e3', 'h5', 'Qf3', 'e6', 'Bd3', 'f6', 'b3', 'd5', 'Ba3', 'Bxa3'], ['e3', 'h5', 'Qf3', 'c6', 'Bc4', 'e6', 'b3', 'd5', 'Bd3', 'f5'], ['e3', 'e5'], ['Nf3', 'e6', 'g3', 'Nc6', 'Bg2', 'd6', 'O-O', 'Nf6', 'Nc3', 'Be7'], ['d4', 'e6', 'e3', 'Nf6', 'c3', 'Nc6', 'Nf3', 'a5', 'Be2', 'h5'], ['e3', 'd5', 'Qh5', 'g6', 'Qe5', 'Nf6', 'Qd4', 'Bg7', 'Qa4+', 'c6'], ['e4', 'e6', 'Nf3', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'Nc3', 'h5'], ['e4', 'e6', 'e5', 'Qh4', 'Nf3', 'Qe4+', 'Be2', 'g5', 'd3', 'Qg4'], ['e4', 'e6', 'Bc4', 'Qh4', 'Nc3', 'Bc5', 'g3', 'Qd8', 'd3', 'f6'], ['e3', 'd5', 'Qh5', 'g6', 'Qe5', 'Nf6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7'], ['e3', 'e5', 'Qh5', 'd6', 'Bc4', 'Qe7', 'Qd1', 'Nf6', 'Bb5+', 'Bd7'], ['e4', 'e6', 'd4', 'Qh4', 'Bd3', 'Qe7', 'Nf3', 'Qb4+', 'c3', 'Qe7'], ['e3', 'e6', 'c3', 'Qh4', 'Nf3', 'Qd8', 'h4', 'd6', 'h5', 'h6'], ['e3', 'd5', 'Qh5', 'Nf6', 'Qd1', 'e6', 'Nf3', 'Nc6', 'd3', 'e5'], ['e3', 'e5', 'Qh5', 'Qf6', 'Qf3', 'Qe6', 'd4', 'e4', 'Qf4', 'Bd6'], ['e3', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qd1', 'Nf6', 'Bf1', 'd5'], ['e4', 'e6', 'Nc3', 'Qh4', 'd3', 'Bc5', 'Nf3', 'Qxf2#'], ['e3', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Nf6', 'Qxf7#'], ['e4', 'e6', 'Bb5', 'Qh4', 'Nc3', 'Qd8', 'Nf3', 'Nc6', 'd3', 'd6'], ['e3', 'e5', 'Nf3', 'Nc6', 'Nc3', 'e4', 'Ng1', 'd5', 'f3', 'exf3'], ['e4', 'e6', 'd4', 'Qh4', 'Nf3', 'Qd8', 'Bb5', 'Nc6', 'd5', 'Nb8'], ['e4', 'e6', 'e5', 'Qh4', 'g3', 'Qe4+', 'Ne2', 'Qxh1', 'Ng1', 'Qxg1'], ['b4', 'e6', 'Bb2', 'h6', 'e3', 'Qh4', 'Nf3', 'Qd8', 'b5', 'a6'], ['e4', 'e6', 'e5', 'Qh4', 'Nf3', 'Qh5', 'd4', 'g5', 'Nc3', 'f6'], ['e4', 'e6', 'Nf3', 'Nf6', 'e5', 'Nh5', 'd4', 'f6', 'Nc3', 'd6'], ['e4', 'e6', 'd4', 'Nf6', 'e5', 'Ng8', 'a3', 'f6', 'Nf3', 'd6'], ['d3', 'e6', 'e3', 'Nc6', 'Nf3', 'Nf6', 'Ng5', 'Be7', 'Nh3', 'd6'], ['e3', 'd5', 'Qh5', 'c6', 'Qf3', 'g6', 'Qd1', 'Nf6', 'd3', 'Bg4'], ['Nf3', 'e6', 'a3', 'Nc6', 'e4', 'Nf6', 'Nc3', 'd6', 'd4', 'Bd7'], ['e3', 'e5', 'Qh5', 'd6', 'Bc4', 'Be6', 'Bb5+', 'c6', 'Bf1', 'g6'], ['d4', 'e6', 'e3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'bxc6', 'Nf3', 'd6'], ['e4', 'e6', 'Nf3', 'Nc6', 'd4', 'd6', 'Bb5', 'Bd7', 'O-O', 'a6'], ['e4', 'e6', 'g4', 'Qh4', 'c3', 'Qd8', 'Nf3', 'Nc6', 'd3', 'd6'], ['e4', 'e6', 'd4', 'Qh4', 'e5', 'Qe4+', 'Be3', 'Bb4+', 'c3', 'Bf8'], ['d4', 'e6', 'Nc3', 'Qh4', 'g3', 'Qd8', 'e3', 'Nf6', 'Bb5', 'Nc6'], ['d4', 'Nc6', 'Nf3', 'Nf6', 'e3', 'e6', 'Bc4', 'd6', 'Bb5', 'a6'], ['e3', 'e6', 'Qh5', 'Nf6', 'Qb5', 'a6', 'Qe5', 'Nc6', 'Qc3', 'a5'], ['d4', 'e6', 'e4', 'Qh4', 'e5', 'Qe4+', 'Be3', 'Bb4+', 'Nd2', 'Qh4'], ['e3', 'e5', 'Qh5', 'Qf6', 'Qf3', 'Qxf3', 'gxf3', 'd6', 'Ne2', 'Nf6'], ['Nf3', 'e6', 'e4', 'Bb4', 'e5', 'Qe7', 'c3', 'Bc5', 'd4', 'Bb6'], ['e4', 'e6', 'd4', 'Qh4', 'Nc3', 'Nc6', 'd5', 'exd5', 'exd5', 'Nd4'], ['e4', 'a6', 'f4', 'e6', 'Nf3', 'b5', 'd4', 'Bb7', 'Bd3', 'Nf6'], ['d4', 'e6', 'Bf4', 'd5', 'e3', 'c6', 'a3', 'a6', 'c4', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'd3', 'Nf6', 'Nc3', 'Qa5', 'f4', 'c6'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'd4', 'd6', 'f4', 'dxe5'], ['Nf3', 'e6', 'g3', 'd5', 'Bg2', 'Nf6', 'O-O', 'c5', 'c4', 'Bd6'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'd6', 'fxe5', 'dxe5', 'Be2', 'Bd6'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nf3', 'Be7'], ['e4', 'e6', 'f4', 'Be7', 'Nf3', 'Nf6', 'e5', 'Ng4', 'Bc4', 'd5'], ['e4', 'c5', 'f4', 'a6', 'Nf3', 'd6', 'd4', 'b6', 'c3', 'Bg4'], ['d4', 'e6', 'Nf3', 'd5', 'g3', 'c6', 'Bg2', 'Nf6', 'O-O', 'h6'], ['e4', 'e6', 'f4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd5'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'd4', 'a6', 'c3', 'Nc6'], ['d4', 'e6', 'c3', 'd5', 'Nf3', 'Nf6', 'g3', 'Bd6', 'Bg2', 'c6'], ['g3', 'e6', 'Bg2', 'd5', 'e3', 'c5', 'd3', 'Nc6', 'c3', 'Bd7'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'g5', 'Bc4', 'g4', 'O-O', 'gxf3'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'c4', 'Be7'], ['e4', 'e5', 'f4', 'd5', 'exd5', 'Qxd5', 'd3', 'Bd6', 'fxe5', 'Bxe5'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nf3', 'c6'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nc6', 'c3', 'Bg4', 'Be2', 'e6'], ['e4', 'e5', 'f4', 'Bc5', 'Nf3', 'd6', 'fxe5', 'dxe5', 'd3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c6', 'Bd3', 'a6', 'Nf3', 'Ne7'], ['e4', 'e6', 'd4', 'd5', 'Bd3', 'c6', 'e5', 'a6', 'f4', 'Be7'], ['e4', 'c6', 'f4', 'd5', 'exd5', 'cxd5', 'Nf3', 'e6', 'd4', 'Nf6'], ['e4', 'e6', 'd3', 'd5', 'Nd2', 'c5', 'Ngf3', 'd4', 'g3', 'Nf6'], ['e4', 'e6', 'f4', 'b6', 'Nf3', 'Bb7', 'd3', 'd5', 'exd5', 'Bxd5'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd5', 'exd5', 'Bg4', 'Be2', 'Qxd5'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd6', 'Bc4', 'h6', 'O-O', 'g5'], ['d4', 'e6', 'Nf3', 'd5', 'c4', 'c6', 'Bf4', 'Nf6', 'h3', 'h6'], ['g3', 'e6', 'b3', 'd5', 'Bb2', 'c5', 'Bg2', 'Nf6', 'd3', 'Nc6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nc3', 'c6'], ['Nf3', 'e6', 'c4', 'd5', 'e3', 'c6', 'Be2', 'Nf6', 'b3', 'Nbd7'], ['e4', 'd5', 'exd5', 'Qxd5', 'd4', 'Nf6', 'f4', 'Qe4+', 'Ne2', 'Bg4'], ['d4', 'e6', 'e4', 'd5', 'e5', 'a6', 'c4', 'c5', 'dxc5', 'Bxc5'], ['g3', 'e6', 'b3', 'd5', 'Bb2', 'Nf6', 'Bg2', 'c5', 'd3', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'Nf6', 'd4', 'c6'], ['d4', 'Nf6', 'Bf4', 'd5', 'e3', 'c5', 'Bd3', 'Nc6', 'c3', 'Qb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'Bc5', 'd3', 'd6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nc6', 'c3', 'Bg4'], ['d4', 'd5', 'Nf3', 'Nf6', 'g3', 'e6', 'Bg2', 'c5', 'O-O', 'Nc6'], ['e4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'Be7', 'h3', 'O-O'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'Nf3', 'd6', 'exd6', 'cxd6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'c4', 'Ne7'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'exd6', 'cxd6', 'Nf3', 'Nc6'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'Nf3', 'Bg4', 'Bc4', 'e6'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'Nc6', 'e3', 'Bg4', 'Qb3', 'Bxf3'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Nc3', 'Bg4', 'h3', 'Bh5'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'c6', 'c4', 'd6', 'Nc3', 'f5'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd4', 'exd4', 'e5', 'Ng8'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Nxe4', 'Bxf7+', 'Kxf7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bc4', 'Bc5', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd4', 'exd4', 'e5', 'Ng8'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nc3', 'Bc5', 'd3', 'Nf6', 'Nf3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Bc5', 'O-O', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'd5', 'Qa4', 'Qd6', 'd4', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'a6', 'd4', 'Bd6', 'Bd3', 'h6'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'Nc6', 'Nc3', 'e6', 'Nf3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Bc5', 'O-O', 'd6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nc3', 'Bc5', 'Nf3', 'Nf6', 'd3', 'd6'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'c6', 'Be3', 'b5', 'Nc3', 'b4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'c4', 'Nf6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'a3', 'Nf6', 'c5', 'Be7'], ['e4', 'e6', 'f4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Bb5', 'a6'], ['d4', 'e6', 'c4', 'b6', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'a3', 'Bxc3+'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'g6', 'Bxc4', 'Bg7', 'Be3', 'Nc6'], ['e4', 'e6', 'd3', 'd5', 'Nc3', 'c5', 'Nf3', 'd4', 'Ne2', 'Nc6'], ['d4', 'd5', 'c3', 'e6', 'Nf3', 'c5', 'Ne5', 'Nc6', 'Nxc6', 'bxc6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'dxc4', 'e3', 'b5', 'Nc3', 'a6'], ['c4', 'e5', 'b3', 'Nf6', 'Bb2', 'Nc6', 'g3', 'd5', 'cxd5', 'Qxd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f6', 'dxe5', 'fxe5', 'Nc3', 'c6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Be3', 'Qb6'], ['e4', 'e6', 'e5', 'd6', 'Qe2', 'dxe5', 'Qxe5', 'Nc6', 'Qb5', 'a6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'e6', 'c5', 'b6', 'b4', 'Nf6'], ['d4', 'd5', 'a3', 'c6', 'Nf3', 'Bg4', 'e3', 'e6', 'Be2', 'Nf6'], ['b3', 'e5', 'Bb2', 'Nc6', 'g3', 'd5', 'Bg2', 'Nf6', 'e3', 'Bd6'], ['d4', 'd5', 'Nc3', 'c6', 'a3', 'Nf6', 'f3', 'e6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'd3', 'Bc5'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'e5', 'Nf3', 'd6'], ['e4', 'e6', 'e5', 'd6', 'exd6', 'cxd6', 'c4', 'Nf6', 'd4', 'd5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'c5', 'Bd3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'cxd4', 'cxd4', 'a6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb3', 'c5', 'a3', 'Nc6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'dxc5', 'Bxc5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'c5', 'dxc5', 'Bxc5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c5', 'cxd5', 'exd5', 'Nf3', 'cxd4'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'g5', 'Bc4', 'Bg7', 'O-O', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'a6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd4', 'exd4'], ['d4', 'd5', 'h3', 'e6', 'a3', 'Be7', 'Bf4', 'Nf6', 'Nc3', 'c5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Nf3', 'Nf6'], ['e4', 'd6', 'Nf3', 'e5', 'd4', 'Nc6', 'd5', 'Nce7', 'c4', 'Bg4'], ['e4', 'e6', 'g3', 'd5', 'Bg2', 'Nc6', 'exd5', 'exd5', 'd4', 'Be7'], ['e4', 'e5', 'd3', 'Nf6', 'Bg5', 'Be7', 'Qc1', 'd5', 'f3', 'Nc6'], ['e4', 'a6', 'Nf3', 'h6', 'd4', 'e6', 'Nc3', 'b5', 'd5', 'd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'Nd6', 'Nc6+', 'Be7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e6', 'e5', 'd6', 'Nf3', 'Nc6', 'Bb5', 'Bd7', 'exd6', 'cxd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qf6', 'Nc3', 'a6', 'Ba4', 'b5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be7', 'd4', 'Nf6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7'], ['e4', 'e6', 'Nf3', 'd5', 'd4', 'c5', 'e5', 'cxd4', 'Nxd4', 'Bc5'], ['d4', 'd5', 'Bg5', 'Nc6', 'h3', 'f6', 'Bh4', 'e5', 'c3', 'Nge7'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'h6', 'c3', 'g5', 'd4', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6'], ['e4', 'e5', 'd3', 'Qf6', 'f3', 'Bc5', 'a3', 'Nh6', 'Ne2', 'O-O'], ['d4', 'e5', 'e3', 'Qf6', 'Bb5', 'exd4', 'Na3', 'dxe3', 'fxe3', 'Bc5'], ['e4', 'e5', 'f4', 'Nf6', 'fxe5', 'Nxe4', 'Qf3', 'Nc5', 'd4', 'Ne6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'O-O', 'O-O'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'a6', 'Nf3', 'Bg4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Bb4', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'd6', 'O-O', 'Bg4'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qe5', 'Nf3', 'Qe6', 'e4', 'Nc6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Bc4', 'Nf4', 'Qf3', 'g5'], ['e4', 'c5', 'Qh5', 'd6', 'Bb5+', 'Bd7', 'Bc4', 'g6', 'Qf3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bb3', 'Bxb3', 'axb3', 'Nc6'], ['e4', 'c5', 'Qf3', 'Nc6', 'Bc4', 'Nf6', 'a3', 'd6', 'Ba2', 'b6'], ['e4', 'c5', 'Nh3', 'Nc6', 'Bd3', 'e6', 'O-O', 'Nf6', 'Nc3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'a6', 'Ng5', 'd5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qc5', 'Nf3', 'Bf5', 'b3', 'Nd7'], ['d4', 'd5', 'g3', 'Nf6', 'Bg2', 'Nc6', 'c4', 'dxc4', 'Bg5', 'h6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'a6', 'Ng5', 'd5'], ['e4', 'e6', 'd4', 'c5', 'dxc5', 'Bxc5', 'Nf3', 'Bxf2+', 'Kxf2', 'Nf6'], ['d4', 'd5', 'f3', 'Nc6', 'e4', 'Nf6', 'e5', 'Nd7', 'Nc3', 'Nb6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nc6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Qh5', 'Nxh5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'd6'], ['e4', 'e6', 'd4', 'c6', 'Nf3', 'h6', 'Nc3', 'd5', 'exd5', 'cxd5'], ['e3', 'e5', 'Bc4', 'Nc6', 'Qf3', 'Nf6', 'e4', 'Bc5', 'Qb3', 'd6'], ['d4', 'd5', 'Nf3', 'Bf5', 'Nc3', 'Nf6', 'Bf4', 'Ng4', 'e3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'd5', 'Nb4', 'a3', 'Na6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bxb4', 'c3', 'Bc5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'e6', 'd5', 'exd5', 'exd5', 'Na5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'dxc5', 'Bxc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'b6', 'd4', 'Na5'], ['e4', 'e5', 'Bb5', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'd4', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'Qa4+', 'Nc6', 'Qxc4', 'Qxd4', 'Qxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'c3', 'Bg4', 'd4', 'exd4'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'Nf6', 'd4', 'cxd4', 'Nxd4', 'a6'], ['e4', 'b6', 'd4', 'Bb7', 'd5', 'e6', 'Nc3', 'Nf6', 'Bg5', 'h6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e6', 'Nc3', 'a6'], ['f3', 'd5', 'Kf2', 'e5', 'e3', 'Nf6', 'c4', 'd4', 'exd4', 'Qxd4+'], ['e4', 'e6', 'd4', 'Nc6', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bb5', 'Bd7'], ['c4', 'Nf6', 'Nc3', 'g6', 'g3', 'Bg7', 'Bg2', 'h5', 'd4', 'h4'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'b5', 'Nc3', 'Nc6', 'd5', 'Ne5'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'b5', 'Nf3', 'f6', 'Nc3', 'c6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'dxc4', 'e4', 'Bb4+', 'Nc3', 'e5'], ['d4', 'd5', 'c4', 'Nc6', 'cxd5', 'Qxd5', 'Nf3', 'Nf6', 'Nc3', 'Qd8'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb3', 'Nf6', 'Nc3', 'Bf5'], ['d4', 'e6', 'e4', 'd5', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'dxe4'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'g4', 'Bg6', 'f4', 'Be4'], ['d4', 'b6', 'e4', 'Bb7', 'Nc3', 'Nf6', 'Bd3', 'd5', 'e5', 'Ne4'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'Bg4', 'd4', 'e6', 'Be2', 'Bxf3'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'Nf6', 'h3', 'Bf5', 'Bd3', 'Bg6'], ['Nf3', 'd5', 'd4', 'Nf6', 'Nc3', 'Bf5', 'e3', 'e6', 'Be2', 'Nbd7'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'h6', 'Nc3', 'e6', 'Bf4', 'Bb4'], ['d4', 'e6', 'e4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'Bd3', 'O-O'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e6', 'Bxc4', 'Nc6', 'Nf3', 'Bb4+'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Nf3', 'O-O', 'e3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'f5', 'Nc3', 'fxe4', 'Nxe4', 'Nf6'], ['d4', 'Nf6', 'c3', 'd6', 'e3', 'g6', 'Qf3', 'Bg7', 'Nd2', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'c5', 'Bb5+', 'Bd7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f3', 'Nbd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['Nf3', 'Nf6', 'b3', 'd5', 'Bb2', 'c5', 'e3', 'Nc6', 'd4', 'Bg4'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Be3', 'Bg7', 'Qd2', 'Ng4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c6', 'f4', 'd5', 'Nf3', 'dxe4', 'Ne5', 'Nf6', 'Bc4', 'e6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nc6', 'c3', 'Nf6'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Nxd5', 'Nf3', 'Bg4', 'Be2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'Nc3', 'Bxf3', 'Qxf3', 'Nf6'], ['d4', 'Nf6', 'Nf3', 'e5', 'dxe5', 'Ng4', 'Nc3', 'Nc6', 'Qd5', 'Bb4'], ['g3', 'd5', 'Bg2', 'e5', 'c4', 'c6', 'cxd5', 'cxd5', 'Qb3', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Qc7'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'Bb4+', 'Nbd2', 'c5', 'dxc5', 'Bxc5'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'a6', 'd4', 'cxd4', 'cxd4', 'Nf6'], ['d4', 'c6', 'c4', 'd6', 'Nf3', 'Nd7', 'g3', 'h6', 'Bg2', 'g5'], ['d4', 'f5', 'c4', 'g6', 'g3', 'Bg7', 'Bg2', 'Nf6', 'Nc3', 'c6'], ['g4', 'd5', 'g5', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3+', 'Be7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Bd3', 'Nc6'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'Nf6', 'Nc3', 'e6', 'g3', 'Bb4'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'b6', 'g3', 'Bb4+', 'Nbd2', 'Bb7'], ['d4', 'Nf6', 'Nf3', 'g6', 'e3', 'Bg7', 'Bd3', 'O-O', 'O-O', 'b6'], ['c4', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'Nc3', 'O-O', 'd4', 'c6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'g3', 'e6', 'Bg2', 'Bd6'], ['d4', 'Nf6', 'f4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'O-O', 'e4', 'd6'], ['d3', 'e5', 'Nc3', 'Nf6', 'Nf3', 'd5', 'Nxe5', 'Bb4', 'Bd2', 'Qe7'], ['d4', 'd5', 'c4', 'g6', 'Nf3', 'Bg7', 'g3', 'Nf6', 'Bg2', 'O-O'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'a6', 'Bd3', 'Qc7', 'O-O', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'c3', 'Nf6'], ['e4', 'c5', 'Nc3', 'Nc6', 'g3', 'g6', 'Bg2', 'Bg7', 'd3', 'e6'], ['d4', 'Nf6', 'Nf3', 'g6', 'c4', 'Bg7', 'g3', 'O-O', 'Bg2', 'd6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'c6', 'g3', 'dxc4', 'Bg2', 'Nf6'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'Nf3', 'O-O', 'Be2', 'd6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bg4', 'Ne5', 'Bf5'], ['e4', 'c5', 'f4', 'g6', 'Nf3', 'Bg7', 'c3', 'Nc6', 'Bc4', 'e6'], ['d4', 'Nf6', 'Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O', 'c4', 'd6'], ['d4', 'e6', 'e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Bb4', 'Ne2', 'Nf6'], ['e4', 'c5', 'a3', 'g6', 'b4', 'Bg7', 'Nc3', 'cxb4', 'axb4', 'Nc6'], ['d4', 'Nf6', 'Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O', 'O-O', 'c5'], ['e4', 'c5', 'Nf3', 'e6', 'Bc4', 'a6', 'd4', 'cxd4', 'Nxd4', 'b5'], ['d4', 'Nf6', 'Nf3', 'c5', 'd5', 'e6', 'c4', 'b5', 'dxe6', 'fxe6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'e6', 'Nf3', 'a6'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'Nc3', 'exd5', 'Qe2+', 'Be7'], ['Nf3', 'Nf6', 'd4', 'd5', 'Bg5', 'c6', 'c3', 'Nbd7', 'e3', 'h6'], ['Nf3', 'd5', 'c4', 'e6', 'g3', 'c5', 'cxd5', 'exd5', 'd4', 'Nc6'], ['Nf3', 'Nf6', 'c4', 'c5', 'b3', 'Nc6', 'Bb2', 'e6', 'g3', 'g6'], ['c4', 'Nf6', 'Nc3', 'c5', 'g3', 'b6', 'Bg2', 'Nc6', 'Nf3', 'Bb7'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Bg4', 'Be2', 'Bxe2', 'Nxe2', 'Qxd5'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Bg4', 'Be2', 'Bxe2', 'Nxe2', 'Qxd5'], ['Nf3', 'd6', 'c4', 'e5', 'd3', 'h6', 'b4', 'Bd7', 'g3', 'Qe7'], ['Nf3', 'd5', 'c4', 'c6', 'b3', 'f5', 'Bb2', 'e6', 'g3', 'Nf6'], ['f4', 'Nf6', 'Nf3', 'c5', 'd3', 'd5', 'Nbd2', 'Nc6', 'e4', 'e5'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'Bg4', 'Ne5', 'Bh5'], ['b3', 'Nf6', 'Bb2', 'g6', 'e3', 'Bg7', 'Nf3', 'O-O', 'Nc3', 'd5'], ['d4', 'e6', 'c4', 'd5', 'Nf3', 'Nf6', 'Bg5', 'Nbd7', 'Nc3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd3', 'h6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f3', 'O-O'], ['e4', 'e5', 'f3', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bc5', 'Nge2', 'O-O'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nf6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'd3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'd3', 'd6', 'Nc3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'b6', 'Rf1', 'Bb7', 'Nc3', 'Bb4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Bd3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'O-O', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'g6', 'Nxe5', 'f5', 'exf5', 'gxf5', 'Be2', 'd6'], ['d4', 'd5', 'e3', 'e6', 'Bb5+', 'c6', 'Ba4', 'b5', 'Bb3', 'Bd6'], ['d4', 'd5', 'e3', 'e6', 'Bd2', 'Nf6', 'Be2', 'Bd6', 'Nf3', 'O-O'], ['e4', 'Nf6', 'Nc3', 'd6', 'Nf3', 'Bg4', 'h3', 'Be6', 'd4', 'Na6'], ['e4', 'e5', 'Nf3', 'c6', 'Nxe5', 'Qe7', 'd4', 'd6', 'Nf3', 'Qxe4+'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'd3', 'Bg7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'a6', 'Bxc6+', 'bxc6'], ['g3', 'e5', 'e4', 'Nf6', 'Bg2', 'Bc5', 'a3', 'a5', 'Nc3', 'd6'], ['d4', 'd5', 'e3', 'Nf6', 'h3', 'e6', 'a3', 'Bd6', 'c4', 'c6'], ['e3', 'e6', 'Qf3', 'Nf6', 'Nc3', 'Nc6', 'Nb5', 'a6', 'Nd4', 'Nxd4'], ['e4', 'e6', 'd4', 'Qh4', 'Nc3', 'Nf6', 'e5', 'Ne4', 'Nf3', 'Qxf2#'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'Nc3', 'Nb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bxe6', 'fxe6', 'd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'c6', 'd4', 'e6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Nc3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd5', 'Nf6', 'Qc4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'f6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'Ng5', 'Qe7'], ['e3', 'e5', 'd4', 'exd4', 'exd4', 'Nf6', 'Nf3', 'Nc6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Ng5', 'O-O'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'Nxe5', 'Nxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'Nc3', 'Bg4', 'h3', 'Bh5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'd3', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'e6', 'Nf3', 'Qa5'], ['h4', 'e5', 'a4', 'd5', 'b4', 'Nc6', 'b5', 'Na5', 'g4', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'd3', 'Nf6', 'Ng5', 'O-O'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb4', 'a3', 'N4c6', 'd4', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'c4', 'Nc6', 'Be2', 'e6', 'd3', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'd3', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'Nf3', 'Bb4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'Ng5', 'e6', 'Nc3', 'Qxg5'], ['e4', 'b6', 'd4', 'Bb7', 'Bd3', 'g6', 'Nf3', 'Bg7', 'O-O', 'h6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'h6', 'd4', 'd5'], ['e4', 'c5', 'Nc3', 'e6', 'f4', 'a6', 'a4', 'b6', 'Bc4', 'Bb7'], ['e4', 'c5', 'Nf3', 'd6', 'a3', 'Nf6', 'd3', 'Nc6', 'Nc3', 'e6'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'b5', 'a4', 'c6', 'e5', 'e6'], ['d4', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Nc3', 'Nf6', 'Nf3', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nf6', 'Bc4', 'a6'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'c6', 'Nc3', 'e6', 'Bg5', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'c4', 'a6', 'Bxd7+', 'Qxd7'], ['e4', 'g6', 'd4', 'Bg7', 'Nc3', 'd6', 'f4', 'Nf6', 'Nf3', 'O-O'], ['e4', 'c5', 'Nc3', 'd6', 'f4', 'e5', 'fxe5', 'dxe5', 'Nf3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Bf4', 'a6'], ['e4', 'f5', 'exf5', 'Nh6', 'Qh5+', 'Nf7', 'Bc4', 'd5', 'Be2', 'Nd7'], ['e4', 'c5', 'Bc4', 'd6', 'd3', 'a6', 'Nc3', 'Nf6', 'Nf3', 'e6'], ['e4', 'c5', 'f4', 'd6', 'g4', 'Nf6', 'g5', 'Nxe4', 'd3', 'Qa5+'], ['e4', 'e5'], ['e4', 'd5'], ['e4', 'd5'], ['e4', 'd5'], ['e4', 'e5'], ['e4', 'e5'], ['e4', 'e5'], ['e4', 'd5'], ['e4', 'e5'], ['e4', 'd5'], ['e4', 'd5'], ['e4', 'Nf6'], ['e4', 'e5'], ['d4', 'e5', 'dxe5'], ['e4', 'd5'], ['e4', 'c5'], ['e4', 'e5'], ['e4', 'c5'], ['e4', 'c5', 'Nh3'], ['e4', 'e6', 'd4'], ['e4', 'e5'], ['e4', 'e5', 'Nf3'], ['Nf3', 'd5', 'd4'], ['e4', 'e5', 'f4', 'd5', 'exd5', 'exf4', 'Qf3', 'Nf6', 'Nc3', 'Bd6'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nf3', 'h6', 'e3', 'b6', 'Bb5', 'Bb7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Qh4', 'Nf3', 'Qxe4+'], ['d4', 'd5', 'e3', 'Nc6', 'a3', 'e5', 'dxe5', 'Nxe5', 'h3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nxe4', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nxe5', 'Nxe5'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'b6', 'e5', 'Bc5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bc4', 'Qc7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'd5', 'Nxe5', 'dxe4', 'dxe4', 'Nxe4'], ['e4', 'e5', 'Nc3', 'Nf6'], ['e4', 'Nc6', 'Nf3', 'e6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qf5'], ['e4', 'e5', 'Qh5', 'd6', 'Nf3', 'Qf6', 'Bc4'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nd5', 'Nxd5', 'exd5', 'c6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Bc4', 'Bc5', 'Nxf7', 'Qh4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Qh4', 'Nc3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'd6', 'dxe5', 'dxe5', 'g4', 'Bxg4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'd3', 'dxe4', 'dxe4', 'Qxd1+'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'd5', 'exd5', 'Qxd5', 'c4', 'Qa5+'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'e3', 'Nbd7', 'Qc2', 'c6'], ['d4', 'c5', 'd5', 'e5', 'c4', 'd6', 'Nc3', 'Nf6', 'e4', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nd4'], ['c4', 'e5', 'Nf3', 'Nc6', 'd3', 'Bc5', 'g3', 'Nf6', 'Bg2', 'd6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'e6', 'a3', 'Be7'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c5', 'cxd5', 'exd5', 'Bf4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'h6', 'Nc3', 'd6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bf4', 'e6', 'e3', 'Nbd7'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'h3', 'h6'], ['d4', 'd5', 'c4', 'Nc6', 'Nf3', 'e6', 'a3', 'Nf6', 'Nc3', 'Ne4'], ['d4', 'd5', 'b4', 'Nf6', 'c3', 'Bf5', 'e3', 'e6', 'Bb2', 'b6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f4', 'O-O'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'Nxd5', 'Qxd5'], ['d4', 'd5', 'Nf3', 'c5', 'c3', 'Bf5', 'dxc5', 'e6', 'b4', 'a5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Bb4', 'Bd2', 'Nc6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'Bb4', 'Qc2', 'O-O'], ['d4', 'g6', 'c4', 'Bg7', 'e4', 'b6', 'f4', 'Bb7', 'Nc3', 'a6'], ['g3', 'e5', 'Bg2', 'd5', 'b3', 'c5', 'Bb2', 'Nc6', 'd3', 'f5'], ['d4', 'Nf6', 'c4', 'h6', 'Nc3', 'a6', 'e4', 'e6', 'a3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nge7', 'O-O', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'd3', 'h6'], ['d4', 'e6', 'e4', 'c6', 'c4', 'h6', 'Nc3', 'Nf6', 'Nf3', 'a6'], ['d4', 'b6', 'e4', 'e6', 'c4', 'Bb7', 'Nc3', 'Bb4', 'Qc2', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd4', 'Nxe4', 'dxe5', 'Bc5'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'Bc5', 'e3', 'Nc6'], ['b4', 'e5', 'a3', 'd5', 'd4', 'e4', 'e3', 'Nf6', 'c4', 'c6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'Nc6', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'e4', 'e6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'Bc4', 'Nc6', 'Qf4', 'Nd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'c3', 'd5', 'exd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'h6', 'Nc3', 'Bc5'], ['d3', 'e5', 'e4', 'Nf6', 'a3', 'Bc5', 'Nf3', 'Nc6', 'b4', 'Bb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Bxf7+', 'Kxf7', 'Nxe5+', 'Nxe5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'a3', 'Nc6', 'h3', 'h6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'Bf4', 'dxc4', 'e3', 'b5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Bc5', 'Nxe5', 'O-O', 'd3', 'Re8'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'Bf4', 'dxc4', 'e3', 'b5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Bg5', 'Nc6', 'h3', 'h6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'Bf4', 'dxc4', 'e4', 'b5'], ['d4', 'b6', 'c4', 'Bb7', 'Nc3', 'g6', 'e4', 'Bg7', 'Nf3', 'Nf6'], ['d4', 'b6', 'c4', 'Bb7', 'Nc3', 'e6', 'e4', 'Bb4', 'Bd3', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'd3', 'd5', 'Nbd2', 'Nc6', 'g3', 'Bd6'], ['e4', 'c5', 'Ne2', 'e6', 'Nbc3', 'a6', 'g3', 'b5', 'Bg2', 'Bb7'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'e6', 'Bg5', 'h6'], ['d4', 'e6', 'c4', 'c6', 'e4', 'd5', 'Nc3', 'Bb4', 'cxd5', 'exd5'], ['e4', 'e5', 'Nc3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nf3', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'exd5', 'Bg5', 'c6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Bb4', 'e3', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'cxd5', 'exd5', 'Bg5', 'c6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'd3', 'a6', 'a4', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'g6', 'b3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Nc6', 'd3', 'Bc5', 'Bg5', 'Qd6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'Ngf3', 'a6', 'exd5', 'exd5'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Ng5', 'e6', 'Nc3', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'e3', 'Bd6', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'Qc2', 'Nc6', 'd4', 'cxd4'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bb5', 'Bd6', 'O-O', 'Nf6', 'Re1', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'd3', 'Nf6', 'Nc3', 'g6', 'Be2', 'Bg7'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'Qg5'], ['c3', 'e5', 'Qc2', 'Nf6', 'd3', 'd5', 'Qa4+', 'Bd7', 'Qh4', 'g6'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'Nf3', 'Nf6', 'Bd3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Nc3', 'O-O'], ['e4', 'c5', 'Nc3', 'd6', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Bg5', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'c3', 'Ba6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nc3', 'Nf6', 'Nf3', 'e6', 'd3', 'd5'], ['g3', 'g6', 'Bg2', 'Bg7', 'd4', 'Nh6', 'Nf3', 'O-O', 'O-O', 'd6'], ['c4', 'c6', 'Nc3', 'd5', 'cxd5', 'cxd5', 'e3', 'Nf6', 'd4', 'Bf5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Bc4', 'Nc6', 'Nf3', 'Bg4'], ['e4', 'e6', 'e5', 'd5', 'c4', 'c5', 'Ne2', 'Nc6', 'Nbc3', 'd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nc3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['Nf3', 'd5', 'd4', 'c5', 'e3', 'e6', 'c3', 'Nc6', 'Bb5', 'Bd7'], ['Nf3', 'Nf6', 'Nc3', 'c5', 'd4', 'Nc6', 'd5', 'Nb8', 'e4', 'd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'h6'], ['Nf3', 'd5', 'd4', 'Nf6', 'Nc3', 'c6', 'Bg5', 'Bf5', 'e3', 'Nbd7'], ['d3', 'Nf6', 'e4'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'Bc4', 'Nc6', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Bc5'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e3', 'e5', 'd4', 'exd4', 'exd4', 'Nf6', 'Nc3', 'd5', 'Nf3', 'Be7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'd6', 'e4', 'O-O'], ['Nf3', 'd5', 'g3', 'Nf6', 'Bg2', 'e6', 'O-O', 'Bd6', 'd3', 'c5'], ['Nf3', 'Nf6', 'd4', 'g6', 'c4', 'Bg7', 'Nc3', 'O-O', 'e4', 'c5'], ['b3', 'd5', 'Bb2', 'Bg4', 'h3', 'Bh5', 'Nf3', 'Bxf3', 'exf3', 'Nf6'], ['Nf3', 'd5', 'e3', 'Nf6', 'b3', 'b6', 'Bb2', 'c5', 'd4', 'e6'], ['d4', 'e6', 'c4', 'Nf6', 'Nc3', 'Bb4', 'Bd2', 'O-O', 'e3', 'b6'], ['b3', 'Nf6', 'Bb2', 'g6', 'e3', 'Bg7', 'Nf3', 'O-O', 'c4', 'c5'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'Bb4+', 'Bd2', 'Qe7', 'g3', 'b6'], ['f4', 'd5', 'Nf3', 'Nf6', 'Nc3', 'c5', 'd3', 'e6', 'b3', 'Bd6'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'd5', 'Nc3', 'dxc4', 'e4', 'b5'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'e3', 'Bg4', 'cxd5', 'Qxd5'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'Bf5', 'Bg5', 'e6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Bf5', 'Bf4', 'e6', 'e3', 'Qa5+'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bf4', 'Bf5', 'Rc1', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Nc3', 'O-O'], ['e4', 'c5', 'f4', 'Nc6', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qh5'], ['b3', 'Nf6', 'Bb2', 'd6', 'Bxf6', 'gxf6', 'd4', 'Bf5', 'c3', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bd3', 'Nbd7'], ['e4', 'c5', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'Nc6', 'Be2', 'e5'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Qc7', 'Be3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Bc5', 'Nxf7', 'Bxf2+'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd4', 'exd4', 'e5', 'Nd5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'exd4', 'Nf3', 'd6', 'Qxd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nxe5', 'Nxe5', 'd4', 'Nxc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'g6', 'O-O', 'Bg7', 'c3', 'Nge7'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'd6', 'Nc3', 'Nf6'], ['d4', 'Nf6', 'Nc3', 'd6', 'Bf4', 'Bf5', 'Nb5', 'c6', 'Nc3', 'Nbd7'], ['e4', 'g6', 'd4', 'Bg7', 'Nc3', 'd6', 'Be2', 'Nd7', 'h4', 'h6'], ['Nh3', 'e5', 'g3', 'd5', 'Bg2', 'c6', 'd3', 'Nf6', 'O-O', 'Bc5'], ['e4', 'c5', 'b4', 'Nc6', 'bxc5', 'b6', 'cxb6', 'Qxb6', 'Nc3', 'e5'], ['b3', 'g6', 'Bb2', 'Nf6', 'Bxf6', 'exf6', 'd4', 'd5', 'Nd2', 'Bb4'], ['e4', 'c5', 'b4', 'Nf6', 'e5', 'Nd5', 'bxc5', 'Nc6', 'd4', 'd6'], ['Nh3', 'e5', 'g3', 'd5', 'Bg2', 'c6', 'O-O', 'Be7', 'e3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['Nf3', 'Nf6', 'c4', 'd6', 'Nc3', 'g6', 'd4', 'Bg7', 'g3', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'g6', 'Nc3', 'Bg7', 'd4', 'd6', 'Be2', 'Nd7', 'h4', 'h6'], ['b3', 'd5', 'Bb2', 'd4', 'Nf3', 'c5', 'c3', 'Nc6', 'cxd4', 'cxd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nc6', 'Ng5', 'Bc5', 'Bxf7+', 'Kf8'], ['b3', 'Nf6', 'Nf3', 'c5', 'Bb2', 'Nc6', 'd4', 'd5', 'Nbd2', 'e6'], ['Nh3', 'e5', 'g3', 'd5', 'Bg2', 'Nf6', 'O-O', 'c5', 'f4', 'exf4'], ['b3', 'c5', 'c4', 'e5', 'Bb2', 'Nc6', 'g3', 'd6', 'Bg2', 'Nge7'], ['e4', 'Nc6', 'Nc3', 'e5', 'Nf3', 'Nf6', 'd4', 'exd4', 'Nd5', 'Bb4+'], ['b3', 'c5', 'Bb2', 'd5', 'Nf3', 'Nc6', 'e3', 'f6', 'd4', 'Bg4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'd6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd4', 'exd4'], ['b3', 'Nf6', 'Nf3', 'g6', 'c4', 'Bg7', 'Bb2', 'O-O', 'd4', 'd6'], ['e4', 'e5', 'f4', 'exf4', 'Bc4', 'Qh4+', 'Kf1', 'Bc5', 'd4', 'Bb6'], ['b3', 'Nf6', 'Nf3', 'g6', 'Bb2', 'Bg7', 'c4', 'O-O', 'd4', 'Ne4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Nxe5', 'Nf6', 'Nxc6', 'dxc6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'e6', 'd4', 'cxd4'], ['b3', 'Nf6', 'Bb2', 'd6', 'd3', 'e5', 'Nd2', 'g6', 'g3', 'Bg7'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nce7', 'g4', 'Nf6', 'Bd3', 'h6'], ['b3', 'Nf6', 'Bb2', 'd5', 'd4', 'Bf5', 'Nd2', 'e6', 'Ngf3', 'h5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'g5', 'h3', 'Bg7', 'Bc4', 'h6'], ['b3', 'e5', 'Bb2', 'd6', 'd3', 'Nc6', 'Nd2', 'Nf6', 'Ngf3', 'Be7'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'a3', 'Nc6', 'Bg5', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'c3', 'a6'], ['Nf3', 'g6', 'd4', 'd6', 'e3', 'Nf6', 'c4', 'b6', 'b4', 'Nbd7'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'Nbd7', 'Nf3', 'b6', 'e5', 'dxe5'], ['d4', 'd5', 'Nf3', 'Nc6', 'g3', 'e6', 'Bg2', 'e5', 'dxe5', 'Nxe5'], ['g3', 'e5', 'd3', 'Bc5', 'Bg2', 'd6', 'Nd2', 'Nc6', 'e4', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'c4', 'Nf3', 'Nc6'], ['e3', 'e5', 'Qf3', 'Nf6', 'b3', 'Bc5', 'Bb2', 'd6', 'Nh3', 'O-O'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'e6', 'g4', 'Be4', 'Nf3', 'Nc6'], ['d4', 'Nf6', 'Bf4', 'd6', 'Nf3', 'g6', 'h3', 'Bg7', 'c3', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'd6', 'O-O', 'b6', 'b3', 'Ne7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'd4', 'cxd4', 'Qxd4', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Be7', 'e4', 'dxe4', 'Nxe4', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'Nc6', 'd5', 'exd5', 'exd5', 'Nb8'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nc6', 'Nf3', 'Be7', 'cxd5', 'exd5'], ['e4', 'e6', 'f4', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nf3', 'Bd6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'e6', 'Nf3', 'Bd6', 'Bxd6', 'Qxd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'Re1', 'd5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'Nc6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4+', 'c3', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'Qf6'], ['Nf3', 'd5', 'd3', 'Nc6', 'Nc3', 'd4', 'Ne4', 'e5', 'e3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Bd7'], ['g3', 'e5', 'Bg2', 'd5', 'd4', 'e4', 'f3', 'f5', 'fxe4', 'fxe4'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'Nf6', 'e3', 'e6', 'c3', 'Bd6'], ['d4', 'd5', 'Bf4', 'Bf5', 'Nc3', 'Nc6', 'Nb5', 'Rc8', 'a3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'e5', 'Nc6', 'exd6', 'Bxd6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nc6', 'Bf4', 'Bb4+', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'c3', 'Nf6', 'd3', 'd5'], ['e4', 'd5', 'exd5', 'c6', 'dxc6', 'Nxc6', 'Nc3', 'Bf5', 'Nf3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nf3', 'd6', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'O-O', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f6', 'Bc4', 'a6', 'O-O', 'Nc6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Nxd5', 'Qxd5', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Bd6', 'd4', 'Nc6', 'd5', 'Nb4', 'Bd2', 'c6'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'Bg4', 'Be2', 'Nd7', 'd4', 'c5'], ['e4', 'e6', 'Nf3', 'Ne7', 'Bc4', 'Ng6', 'O-O', 'd6', 'd4', 'Nh4'], ['d3', 'd5', 'e3', 'Nc6', 'Ne2', 'Nf6', 'Ng3', 'e5', 'Nd2', 'Bb4'], ['e4', 'e6', 'Nf3', 'h6', 'd4', 'Nf6', 'e5', 'Nd5', 'Bc4', 'Nb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'dxe5', 'Bd3', 'Be7'], ['h3', 'e5', 'e4', 'd5', 'exd5', 'Qxd5', 'd3', 'Nc6', 'Nc3', 'Qd8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'O-O'], ['d4', 'd5', 'e3', 'Nc6', 'c4', 'e6', 'cxd5', 'exd5', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'Bc4', 'a6', 'O-O', 'Nc6', 'Nc3', 'b5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'c5', 'Nf3', 'f5'], ['e4', 'e6', 'Nf3', 'c5', 'Bc4', 'a6', 'O-O', 'b5', 'Be2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'd6', 'c3', 'Bg4'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'c4', 'e6', 'Nc3', 'dxc4'], ['e4', 'Nc6', 'Nf3', 'e5', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd5'], ['d4', 'c6', 'c4', 'd5', 'e3', 'Nf6', 'Nf3', 'Bf5', 'Bd3', 'Bxd3'], ['Nf3', 'Nc6', 'g3', 'e5', 'Bg2', 'Qe7', 'O-O', 'd6', 'Nc3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c5', 'exd5', 'exd5', 'dxc5', 'Be6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Be7', 'Nf3', 'Nf6', 'Bg5', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'g6'], ['Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'O-O', 'c4', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'O-O', 'Nf3', 'b6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'h6'], ['d4', 'e6', 'c4', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'c5'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'c6', 'e3', 'Nbd7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nxc3'], ['e4', 'c6', 'Nc3', 'd5', 'd4', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd6', 'd4', 'exd4'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'Nf3', 'c6', 'Bg5', 'h6'], ['d4', 'Nf6', 'Bf4', 'd5', 'Nf3', 'c5', 'Nbd2', 'cxd4', 'Nxd4', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'd6', 'Nxc6', 'bxc6'], ['Nf3', 'd5', 'c4', 'dxc4', 'Na3', 'Qd5', 'Qa4+', 'Bd7', 'Qxc4', 'Qxc4'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'Qb6'], ['c4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'c6', 'e3', 'Nbd7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'c4', 'Nf6'], ['e4', 'c5'], ['d4', 'Nf6', 'Nf3', 'd5', 'e3', 'c6', 'c3', 'b6', 'Bd3', 'Bb7'], ['e4', 'c5', 'c3', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'dxc5', 'Bxc5'], ['e4', 'c5', 'Nc3', 'Nc6', 'f4', 'd6', 'Nf3', 'Nf6', 'Bc4', 'Bg4'], ['e4', 'c6', 'Nc3', 'd5', 'Nf3', 'd4', 'Ne2', 'c5', 'c3', 'd3'], ['d4', 'Nf6', 'g3', 'd5', 'Bg2', 'c6', 'Nf3', 'e6', 'O-O', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'Nf3', 'Qxe4+', 'Be2', 'Bc5'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'b5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Qf3', 'Be6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'c3', 'd5', 'exd5', 'Nxd5'], ['d4', 'd5', 'g3', 'c6', 'Bg2', 'Nf6', 'Nf3', 'e6', 'O-O', 'Bd6'], ['e4', 'c6', 'Nc3', 'd5', 'Nf3', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'dxe4'], ['d4', 'd5', 'g3', 'c6', 'Bg2', 'Nf6', 'Bf3', 'e6', 'Bg2', 'Bd6'], ['e4', 'c6', 'Nc3', 'd5', 'Nf3', 'd4', 'Ne2', 'c5', 'c3', 'd3'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'c6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Bg5', 'e6', 'a3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Ne7'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Nxd5', 'c4', 'Nb4', 'a3', 'N4a6'], ['e4', 'c5', 'c3', 'e6', 'd4', 'd5', 'e5', 'Nc6', 'Nf3', 'Qb6'], ['d4', 'Nf6', 'g3', 'd5', 'Bg2', 'e6', 'Nf3', 'Nbd7', 'O-O', 'c5'], ['d4'], ['d4', 'Nf6', 'Nf3', 'd5', 'g3', 'e6', 'Bg2', 'c5', 'O-O', 'Nc6'], ['d4', 'Nf6', 'g3', 'd5', 'Bg2', 'e6', 'Nf3', 'c5', 'O-O', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['Nf3', 'd5', 'd4', 'Nf6', 'Bf4', 'Bf5', 'e3', 'e6', 'Bd3', 'Bxd3'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Ne7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'e5'], ['d4', 'Nc6', 'Nf3', 'd5', 'Bf4', 'Nf6', 'Nc3', 'e6', 'e3', 'Bb4'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nc6', 'Nf3', 'h6'], ['e4', 'c5', 'Nf3', 'b6', 'd4', 'cxd4', 'Nxd4', 'g5', 'Bxg5', 'b5'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'd5', 'Qxd4', 'Nf6', 'Bg5', 'Be7'], ['d4', 'Nf6', 'Nf3', 'g6', 'c4', 'Bg7', 'Nc3', 'O-O', 'e4', 'd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e3', 'O-O', 'Nf3', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Bc4', 'Nf6', 'd3', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd3', 'd6', 'g3', 'Nf6', 'Bg2', 'g6'], ['e4', 'c5', 'Nc3', 'd6', 'Bc4', 'e6', 'd3', 'a6', 'a4', 'Bd7'], ['e4', 'c5', 'Nf3', 'd6', 'd3', 'Bg4', 'h3', 'Bd7', 'Nbd2', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'Nbd2', 'g6', 'g3', 'Bg7'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nc6'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bf4', 'Bg7', 'e3', 'Nh5', 'Be5', 'f6'], ['e4', 'c5', 'c4', 'Nc6', 'f4', 'd6', 'Nf3', 'Nf6', 'd3', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Bc4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Bd7'], ['e4', 'c5', 'Nf3', 'e6', 'd3', 'Nc6', 'Nbd2', 'd5', 'e5', 'Qc7'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'Bc5', 'd4', 'exd4'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nc6', 'Nf3', 'g6'], ['d4', 'Nf6', 'Nf3', 'g6', 'c4', 'Bg7', 'Nc3', 'd6', 'Bg5', 'O-O'], ['e4', 'a5', 'd4', 'b6', 'Nc3', 'Ba6', 'Bxa6', 'Nxa6', 'a3', 'e6'], ['d4', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'Nf3', 'd5', 'O-O', 'O-O'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'd6', 'Bc4', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'c3', 'd6'], ['e4', 'Nc6', 'Nf3', 'f5', 'exf5', 'd5', 'Bb5', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'Nc3', 'Nf6', 'd4', 'cxd4'], ['e4', 'c5', 'Nc3', 'Nc6', 'f4', 'e6', 'Nf3', 'd5', 'Bb5', 'd4'], ['e4', 'a6', 'Nc3', 'b5', 'a3', 'Bb7', 'f4', 'Nf6', 'd3', 'h6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'a6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nc6', 'c3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'O-O', 'Ngf6'], ['c3', 'e5', 'd4', 'exd4', 'cxd4', 'd5', 'Nf3', 'Nf6', 'Nc3', 'Be7'], ['f4', 'g6', 'e4', 'Bg7', 'd4', 'f5', 'e5', 'd6', 'Bd3', 'c5'], ['e4', 'c5', 'c3', 'd6', 'd4', 'cxd4', 'cxd4', 'Nf6', 'Nc3', 'e6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'O-O'], ['e4', 'c5', 'c3', 'd6', 'Nf3', 'Nf6', 'd3', 'e6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd3', 'h6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bb5+', 'Bd7', 'd4', 'cxd4'], ['e4', 'c5', 'Nc3', 'e6', 'Nf3', 'a6', 'Be2', 'Qc7', 'O-O', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Nc3', 'Nf6', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd3', 'd6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'Nc6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nc6', 'Nf3', 'Bg4'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'e6', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'h6', 'c3', 'Na5'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'a3', 'd6', 'Nf3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nf6', 'Bf4', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'c3', 'Nf6', 'd3', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'c5', 'Nc3', 'd6', 'g3', 'Nc6', 'Bg2', 'Nf6', 'f4', 'Bg4'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nc3', 'Nf6', 'd3', 'g6', 'Nf3', 'Bg7'], ['e4', 'Nc6', 'Nf3', 'e5', 'd4', 'd6', 'dxe5', 'Bg4', 'exd6', 'Bxf3'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'Nxe4', 'Bd3', 'Nc6', 'd5', 'Nc5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'c5', 'Nf3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'd6', 'Nxd4', 'Nxd4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'e6', 'd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Bg4', 'Be2', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'e5', 'dxe5', 'Nxe5', 'e6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'Bc5', 'd3', 'd6', 'Bg5', 'Qg6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['c3', 'e5', 'e3', 'Nf6', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'e4'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'e6', 'Nc3', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['e4', 'c5', 'f4', 'd6', 'Bc4', 'e6', 'd3', 'Bd7', 'Be3', 'b5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be6'], ['e4', 'e5', 'Nc3', 'Nf6', 'Bc4', 'c6', 'Nf3', 'b5', 'Bb3', 'a5'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Bg4', 'f3', 'Bh5', 'Nh3', 'c6'], ['e4', 'e5', 'Nc3', 'Nf6', 'Bc4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5'], ['d3', 'd5', 'Nf3', 'Nf6', 'Nbd2', 'Bg4', 'Ne5', 'Bh5', 'c3', 'e6'], ['e4', 'c6', 'Nc3', 'd5', 'e5', 'd4', 'Nce2', 'Qb6', 'f4', 'Bf5'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Bg4', 'Nbd2', 'e6', 'e3', 'c5'], ['d4', 'd5', 'Nf3', 'Nc6', 'c4', 'dxc4', 'd5', 'Nb4', 'Qa4+', 'Nc6'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'd4', 'Bb4', 'Bd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'a6', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'e6', 'Bc4', 'c6', 'Nf3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nc3', 'Bd6'], ['b3', 'e5', 'Bb2', 'Nc6', 'c4', 'd6', 'e3', 'f5', 'Be2', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'c4', 'e6', 'Nc3', 'Bb4'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'd5', 'Be2', 'Bd6', 'c4', 'd4'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'd5', 'd4', 'e4', 'Be2', 'f5'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Bg4', 'Be2', 'e6'], ['b3', 'd5', 'Bb2', 'c5', 'e3', 'Nc6', 'd4', 'cxd4', 'exd4', 'e6'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nf6', 'Nc3', 'e6'], ['b3', 'd5', 'Bb2', 'Bf5', 'e3', 'e6', 'd4', 'Nc6', 'Nf3', 'Bd6'], ['b3', 'e5', 'Bb2', 'd6', 'e3', 'Be7', 'c4', 'Nh6', 'd4', 'exd4'], ['b3', 'e6', 'Bb2', 'd5', 'd4', 'c5', 'e3', 'Nc6', 'Nf3', 'Nge7'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb3', 'Bf5', 'Qf3', 'e6'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'Bc5', 'd4', 'exd4', 'exd4', 'Qe7+'], ['b3', 'd5', 'Bb2', 'c5', 'e3', 'Nc6', 'd4', 'e6', 'Nf3', 'Nf6'], ['e4', 'c6', 'Nc3', 'd5', 'Nf3', 'Bg4', 'Be2', 'e6', 'h3', 'Bh5'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'Bf5', 'd4', 'e6', 'g3', 'c5'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'Nf6', 'Ne2', 'd5', 'Nd4', 'exd4'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'Bg4', 'Be2', 'e6', 'O-O', 'g6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'h4', 'h6', 'c4', 'e6'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'd5', 'Be2', 'Qg5', 'g3', 'd4'], ['b3', 'g6', 'Bb2', 'Nf6', 'e3', 'Bg7', 'd4', 'O-O', 'Nf3', 'd5'], ['b3', 'e5', 'Bb2', 'e4', 'e3', 'd5', 'Be2', 'Nf6', 'c4', 'c6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'c4', 'e6', 'cxd5', 'cxd5'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'Bg4', 'h3', 'Bh5', 'g4', 'Bg6'], ['b3', 'd6', 'Bb2', 'Nf6', 'e3', 'e5', 'd4', 'exd4', 'exd4', 'Qe7+'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nf6', 'c3', 'Bg4'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'd5', 'd4', 'Bd6', 'Be2', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'Bd3', 'Bxd3'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Qe7', 'dxe5', 'dxe5', 'Nc3', 'c6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Bg4', 'Be2', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Bg4', 'Be2', 'Nf6'], ['b4', 'Nf6', 'Bb2', 'e6', 'b5', 'g6', 'e3', 'Bg7', 'Be2', 'O-O'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'Bg4', 'f3', 'Bh5', 'Bd3', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7', 'Nc3', 'Nc6'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'd5', 'Be2', 'Bg7', 'h3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'Nf6', 'O-O', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'Nc3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'd3', 'Bc5', 'a4', 'Ng4'], ['e4', 'e6', 'd4', 'Qh4', 'Qf3', 'Nf6', 'Nh3', 'Qxe4+', 'Qxe4', 'Nxe4'], ['e3', 'e5', 'Qh5', 'Qf6', 'Nc3', 'g6', 'Qg4', 'Nc6', 'Nd5', 'd6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nc6', 'Bd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'c3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Bc4', 'c5', 'Nf3', 'd6', 'c3', 'h6', 'Qb3', 'Qd7'], ['Nf3', 'c5', 'e3', 'd5', 'd4', 'cxd4', 'exd4', 'Nc6', 'Bd3', 'Nf6'], ['e4', 'd6', 'd4', 'Nc6', 'Nc3', 'e5', 'Nf3', 'exd4', 'Nxd4', 'Nf6'], ['e4', 'c5', 'b4', 'e5', 'bxc5', 'Bxc5', 'c3', 'd6', 'Nf3', 'Bg4'], ['d4', 'e6', 'e4', 'Nf6', 'e5', 'Nd5', 'a3', 'd6', 'c4', 'Nb6'], ['e3', 'Nf6', 'd4', 'd5', 'c4', 'c6', 'Nc3', 'Bf5', 'cxd5', 'cxd5'], ['Nf3', 'g6', 'd4', 'd6', 'e4', 'Bg7', 'Nc3', 'Nc6', 'Be3', 'Nf6'], ['f4', 'd5', 'Nf3', 'e5', 'fxe5', 'Nc6', 'e3', 'Nge7', 'd4', 'Ng6'], ['d4', 'd5', 'f4', 'Nf6', 'Nf3', 'g6', 'e3', 'Bg7', 'Be2', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'c5', 'd5', 'b5', 'dxe6', 'fxe6'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'cxb5', 'a6', 'e3', 'Qa5+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'Bc5', 'c3', 'O-O'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'Be7', 'g3', 'c5'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'c6', 'Nf3', 'b5', 'a4', 'b4'], ['d4', 'Nf6', 'Nc3', 'g6', 'e4', 'd6', 'Bf4', 'Bg7', 'f3', 'O-O'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Bg5', 'Nbd7'], ['c4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'd3', 'd5', 'cxd5', 'Nxd5'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'd6', 'd3', 'g6', 'Bg5', 'Bg7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'cxd5', 'cxd5', 'Nf3', 'e6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'f4', 'c5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'e6', 'cxd5', 'exd5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'f4', 'c5'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'c5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'Nf3', 'Nf6', 'Bg5', 'h6'], ['e4', 'e6', 'd4', 'd5', 'Be3', 'dxe4', 'Nd2', 'f5', 'f3', 'Nf6'], ['e4', 'e6', 'd3', 'd5', 'Nd2', 'd4', 'e5', 'c5', 'Ngf3', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'b6', 'e4', 'Bb7'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'Bd3', 'c5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Be2', 'O-O'], ['d4', 'd5', 'c4', 'a6', 'Nc3', 'e6', 'Nf3', 'Nc6', 'cxd5', 'exd5'], ['e4', 'e6', 'd4', 'd5', 'Bd3', 'dxe4', 'Bxe4', 'Nf6', 'Bf3', 'c5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['d4', 'e6', 'c4', 'Nf6', 'Nc3', 'Bb4', 'Qc2', 'O-O', 'a3', 'Bxc3+'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'c4', 'dxc4', 'Bxc4', 'Nf6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'O-O', 'a3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'a5', 'Be2', 'd6', 'O-O', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Be2', 'h6', 'O-O', 'Bc5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'Be6', 'Bxe6', 'fxe6'], ['d4', 'g6', 'e4', 'Bg7', 'e5', 'd6', 'f4', 'dxe5', 'fxe5', 'Nc6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'a6', 'f3', 'Bf5', 'g4', 'Bd7'], ['e4', 'e6', 'Nf3', 'd6', 'd4', 'Nf6', 'Nc3', 'Nbd7', 'Bd3', 'h5'], ['d4', 'd5', 'e3', 'Nc6', 'h3', 'e5', 'Nf3', 'e4', 'Nfd2', 'Nf6'], ['d4', 'g6', 'Nf3', 'Bg7', 'e4', 'Nf6', 'Bc4', 'e6', 'e5', 'Nd5'], ['e4', 'd5', 'e5', 'c5', 'd4', 'cxd4', 'Qxd4', 'e6', 'Nf3', 'Nd7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f3', 'c6'], ['e4', 'c5', 'Qh5', 'd6', 'e5', 'd5', 'e6', 'Bxe6', 'd4', 'Nf6'], ['Nf3', 'c5', 'g3', 'Nc6', 'Bg2', 'e5', 'd3', 'Nf6', 'e4', 'd5'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'd6', 'c4', 'Nd7', 'Nc3', 'c5'], ['e4', 'e6', 'Qh5', 'Nf6', 'Qe2', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'd6', 'Bc4', 'a6', 'a3', 'Nd7'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'd6', 'Bc4', 'a6', 'O-O', 'b5'], ['d4', 'g6', 'Bf4', 'Bg7', 'h4', 'e6', 'h5', 'd6', 'Nf3', 'b6'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'Bd6', 'Bg3', 'Nf6', 'e3', 'c5'], ['d4', 'f5', 'c4', 'b6', 'Nc3', 'Bb7', 'e3', 'Nf6', 'Bd3', 'Bxg2'], ['e4', 'c5', 'Bc4', 'Nc6', 'Bxf7+', 'Kxf7', 'Qh5+', 'g6', 'Qxc5', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nf6', 'Bg5', 'e6'], ['e4', 'e6', 'd4', 'c5', 'c3', 'b6', 'd5', 'd6', 'c4', 'e5'], ['e4', 'c5', 'Nf3', 'd6', 'Ng5', 'h6', 'Nxf7', 'Kxf7', 'Qf3+', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Nc3', 'Be6', 'Bd5', 'Nf6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'b6', 'e3', 'Bb7', 'Bd3', 'Nbd7'], ['e4', 'Nc6', 'Nf3', 'e5', 'd4', 'd6', 'd5', 'Nd4', 'Nxd4', 'exd4'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'd5', 'Nc3', 'Bb4', 'Bg5', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bg5', 'c5', 'a3', 'Bxc3+'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'O-O', 'Nf3', 'c5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Nc6'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'c5', 'd5', 'exd5', 'cxd5', 'd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'Nxe4', 'Bd3', 'd5', 'Nxe5', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'O-O', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['d4', 'Nf6', 'Nd2', 'd5', 'e3', 'c5', 'c3', 'Nc6', 'Ngf3', 'Bg4'], ['d3', 'd5', 'Nf3', 'Nf6', 'g3', 'c5', 'Bg2', 'Nc6', 'O-O', 'e5'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'c5', 'd5', 'exd5', 'cxd5', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'Nc3', 'b5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'Bg5', 'c6', 'e3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'Nf6', 'd4', 'Bf5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Nf6', 'Bc4', 'e6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Be7', 'Nf3', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'c6', 'd4', 'd5', 'exd5', 'cxd5'], ['e4'], ['e4', 'e6', 'd4', 'Bb4+', 'c3'], ['d4', 'd5'], ['d4', 'Nf6', 'c4', 'e6', 'a3', 'c5', 'd5', 'Be7', 'Nc3', 'd6'], ['e4', 'c5', 'c3', 'Nf6', 'e5', 'Nd5', 'Bc4', 'Nb6', 'Bb3', 'g6'], ['d4', 'd5', 'c4', 'Nc6', 'Nc3', 'Nf6', 'g3', 'e6', 'e3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Nd4', 'Bc4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'Qf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'c6', 'Nf3', 'Qe6'], ['e4', 'e5', 'Nf3', 'c6', 'Bc4', 'd6', 'd4', 'Bg4', 'Be2', 'exd4'], ['e4', 'c5', 'c3', 'Nf6', 'e5', 'Nd5', 'Bc4', 'Nb6', 'Bb3', 'c4'], ['c4', 'e6', 'b3', 'Nf6', 'Bb2', 'd5', 'cxd5', 'exd5', 'g3', 'c6'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'Nc6', 'Bg2', 'Bb4', 'Nd5', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd4', 'Bxd4'], ['e4', 'd5', 'exd5', 'Nf6', 'Nf3', 'Bg4', 'Be2', 'Qxd5', 'h3', 'Bh5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'g6', 'Bc4', 'd5', 'exd5', 'Nxd5'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'Bd3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'O-O'], ['e4', 'e6', 'd4', 'd6', 'Nf3', 'h6', 'Nc3', 'g6', 'Bd3', 'Bg7'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'd5', 'exd5', 'Qxd5', 'Qxd4', 'Qxd4'], ['e4', 'd5', 'exd5', 'Nf6', 'Nf3', 'e6', 'dxe6', 'Bxe6', 'Be2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd4', 'Bxd4'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'c5', 'Nc3', 'e6', 'Nb5', 'Na6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'f5', 'Nxe5', 'Qf6', 'd4', 'd6', 'Nc4', 'fxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Be3', 'Bxe3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'f5', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'h6'], ['e3', 'e5', 'c4', 'Nf6', 'a3', 'Nc6', 'h3', 'Be7', 'd3', 'd5'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'e6', 'Nf3', 'Bb4'], ['e4', 'e5', 'f4', 'exf4', 'Bc4', 'Qh4+', 'Kf1', 'Nf6', 'Nf3', 'Qh6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'e6', 'e3', 'Nbd7'], ['e4', 'd5', 'd3', 'e6', 'Nf3', 'c6', 'Nc3', 'Nf6', 'Bd2', 'Qb6'], ['d3', 'd5', 'e4', 'e6', 'Qf3', 'Nc6', 'exd5', 'exd5', 'Qe3+', 'Qe7'], ['Nf3', 'Nf6', 'e3', 'g6', 'd3', 'Bg7', 'Be2', 'd6', 'Nc3', 'e5'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['Nf3', 'd5', 'Nc3', 'd4', 'd3', 'dxc3', 'bxc3', 'Nf6', 'e3', 'Bg4'], ['e4', 'e5', 'd3', 'Nf6', 'Nf3', 'd5', 'exd5', 'Qxd5', 'c4', 'Qd6'], ['d4', 'd5', 'Nf3', 'Nf6', 'c3', 'Nc6', 'Bg5', 'Ng4', 'h3', 'h6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qf3', 'Nd6', 'Bc4', 'Nxc4'], ['a4', 'e5', 'Ra3', 'Bxa3', 'f4', 'exf4', 'e3'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nd4', 'Nxd4', 'exd4', 'Qf3', 'f6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nd4', 'Nxd4', 'exd4', 'Qf3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nd4', 'Nxe5', 'Qg5', 'Nxf7', 'Qxg2'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'h3', 'h6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nd4', 'Nxe5', 'Qg5', 'Nxf7', 'Qxg2'], ['d4', 'e5', 'dxe5', 'Bc5', 'Nf3', 'f6', 'exf6', 'Nxf6', 'Bg5', 'Qe7'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'Nf6', 'O-O', 'd6', 'd3', 'Bg4'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nd4', 'Nxe5', 'Qg5', 'Nxf7', 'Qxg2'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qf3', 'Nf6', 'Qb3', 'Qe7', 'Nc3', 'Na5'], ['e3', 'c5', 'd4', 'e6', 'Nf3', 'Nc6', 'Nc3', 'cxd4', 'exd4', 'd5'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Be7', 'Qxh8', 'Bf8', 'Qxg8', 'Ke7'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'Nf6', 'Nxe5', 'O-O', 'Nxf7', 'Qe7'], ['e4', 'g6', 'e5', 'Bg7', 'd4', 'd6', 'Bc4', 'dxe5', 'Qf3', 'e6'], ['e4', 'e5', 'Nf3', 'c6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Ne4'], ['e4', 'e5', 'Qh5', 'Nc6', 'c3', 'Nf6', 'Qf3', 'Be7', 'd4', 'exd4'], ['e4', 'd5', 'Qf3', 'Be6', 'exd5', 'Bxd5', 'Qd3', 'Be6', 'Qxd8+', 'Kxd8'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'f3', 'O-O', 'Bc4', 'Re8'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'h4', 'h5', 'Bd3', 'Bxd3'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'h4', 'h5', 'Bd3', 'Bxd3'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e5', 'Nfd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Qe2', 'Bc5', 'c3', 'a6'], ['e4', 'g6', 'Nf3', 'Bg7', 'd4', 'c5', 'c4', 'cxd4', 'e5', 'Nc6'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'Nf3', 'e6', 'e4', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'Qf6'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'e6', 'd4', 'c5', 'c4', 'Nc6'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'exf4', 'd4', 'd5', 'e5', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Bc5', 'Bxf7+', 'Kf8'], ['d4', 'Nf6', 'f3', 'd5', 'Nc3', 'c5', 'e4', 'a6', 'dxc5', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Bc5', 'Bxf7+', 'Kf8'], ['d4', 'g6', 'Nf3', 'Bg7', 'Bf4', 'c5', 'e3', 'Qb6', 'Qc1', 'd6'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'Bf5', 'e3', 'Nf6', 'c3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'Qf6'], ['e4', 'e6', 'e5', 'd5', 'exd6', 'cxd6', 'Nc3', 'e5', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'Qf6'], ['g3', 'c6', 'Bg2', 'd6', 'e4', 'Nd7', 'd3', 'h6', 'Be3', 'g5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['d4', 'd5', 'Nf3', 'c6', 'Nc3', 'Nf6', 'Bf4', 'Bf5', 'e3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'Nf6', 'Nc3', 'Bc5', 'h3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'c6', 'dxc6', 'Nxc6', 'Nf3', 'e5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['g3', 'e5', 'Bg2', 'd6', 'c4', 'Nf6', 'b4', 'g6', 'Nc3', 'c6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Nc3', 'Be6', 'd4', 'c5'], ['d4', 'e6', 'e4', 'b6', 'c4', 'd5', 'cxd5', 'exd5', 'Nc3', 'Qe7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'g6', 'O-O', 'Bg7'], ['d4', 'd5', 'Bf4', 'Bf5', 'c3', 'e6', 'Nf3', 'Bd6', 'Qd2', 'Qf6'], ['d4', 'd5', 'Bf4', 'f6', 'e3', 'g5', 'Bg3', 'h5', 'h4', 'Bg4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'O-O', 'Nc6', 'h3', 'Bxf3'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'd4', 'cxd4'], ['Nf3', 'd5', 'd4', 'Nf6', 'c4', 'c6', 'e3', 'g6', 'Nc3', 'Bg7'], ['d4', 'd5', 'Bf4', 'Qd7', 'e3', 'e6', 'c3', 'Bd6', 'Nh3', 'Nf6'], ['Nf3', 'd5', 'Nc3', 'Nf6', 'e4', 'dxe4', 'Ne5', 'Nc6', 'Qe2', 'Nxe5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nc6', 'Bxc4', 'e5', 'Nf3', 'exd4'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e5', 'Bxc4', 'exd4', 'Nf3', 'Nc6'], ['d4', 'Nf6', 'Nc3', 'g6', 'e4', 'Bg7', 'e5', 'Ng8', 'Nf3', 'd6'], ['e3', 'e5', 'Bb5', 'Nf6', 'Nf3', 'Bd6', 'd4', 'Qe7', 'O-O', 'e4'], ['Nf3', 'e5', 'Nxe5', 'f5', 'd4', 'd5', 'g3', 'Nf6', 'e3', 'Nc6'], ['e4', 'd5', 'Nc3', 'd4', 'Nb5', 'Nc6', 'Bc4', 'Nf6', 'Nf3', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'd6', 'dxe5', 'dxe5', 'Bg5', 'Qg6'], ['e4', 'e5', 'Nf3', 'd6', 'c3', 'Nf6', 'd3', 'd5', 'exd5', 'Bc5'], ['e4', 'c5', 'Qf3', 'd6', 'Bc4', 'e6', 'd3', 'Nc6', 'Nc3', 'Nd4'], ['e4', 'c5', 'Nc3', 'd6', 'Bc4', 'Nf6', 'Nf3', 'e5', 'Ng5', 'Be6'], ['e4', 'c5', 'c4', 'Nf6', 'e5', 'Nd5', 'cxd5'], ['d4', 'Nf6', 'f4', 'd5', 'e3', 'e6', 'a3', 'c5', 'Nf3', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'Nf6', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'Bxd5', 'Nxd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nxc6', 'bxc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Qe2', 'Qxe2+', 'Ngxe2', 'Nc6'], ['c4', 'Nf6', 'd4', 'g6', 'e3', 'Bg7', 'b4', 'd5', 'c5', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Be7', 'Be3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nf6', 'Nc3', 'cxd4', 'Nxd4', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'c5', 'Nf3', 'd5', 'exd5', 'Bg4', 'Be2', 'Qxd5', 'Nc3', 'Qd8'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd3', 'Be7', 'Be2', 'd5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nf6', 'Nxf6+', 'Qxf6'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'Be6', 'd5', 'Bd7', 'Bxc4', 'e5'], ['d4', 'Nf6', 'd5', 'e6', 'dxe6', 'fxe6', 'Bg5', 'Be7', 'Nc3', 'h6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'd4', 'Nc6', 'dxc5', 'Bxc5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'e5', 'dxe5', 'Qxd1+'], ['e4', 'd6', 'Nf3', 'e5', 'd4', 'f6', 'd5', 'c5', 'c4', 'Be7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'Qxd5', 'd4', 'Nf6', 'b3', 'Qc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxd4', 'exd4', 'c3', 'c6'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'Nc6', 'd5', 'Nce7', 'c4', 'Ng6'], ['d4', 'd5', 'Bf4', 'Nf6', 'Nf3', 'Nc6', 'c3', 'Bf5', 'e3', 'e6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Be3', 'Nc6', 'Nf3', 'b6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'Nc6', 'Nf3', 'Nge7', 'Bb5', 'Bd7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'h3', 'Bf5', 'Qf3', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'd3', 'Bb7'], ['f3', 'd5', 'Kf2', 'c5', 'Kg3', 'Qc7+', 'Kf2', 'e6', 'e3', 'c4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'Ng5', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nf6', 'Nc3', 'cxd4', 'Nxd4', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nf6', 'Nc3', 'cxd4', 'Nxd4', 'Nc6'], ['g3', 'e5', 'Bg2', 'Nf6', 'd4', 'e4', 'Nc3', 'd5', 'f3', 'Bb4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'O-O', 'Nf6', 'd3', 'Nc6'], ['e4', 'e5', 'd3', 'Nc6', 'c3', 'd5', 'Be2', 'dxe4', 'dxe4', 'Qf6'], ['e4', 'b6', 'd4', 'Bb7', 'Bd3', 'e6', 'Nf3', 'Nf6', 'e5', 'Nd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'Nxe4', 'd3', 'Nf6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'e6', 'e3', 'h6', 'Bxf6', 'Qxf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['d4', 'd5', 'c3', 'Nf6', 'Bg5', 'e6', 'Bxf6', 'Qxf6', 'Nf3', 'h6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Be3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'Nxe5', 'Bd6'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'c6', 'Nc3', 'e6', 'f3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qf3', 'Qf6', 'Qb3', 'Nd4', 'Qd3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'Bc5', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'Nc6', 'O-O', 'Nf6', 'd3', 'h6'], ['e4', 'b6', 'd4', 'Bb7', 'Bd3', 'g6', 'Nf3', 'Bg7', 'd5', 'h6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'e6', 'c5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'Re1', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'c3', 'Bd7', 'O-O', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'c3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'd5', 'd3', 'dxe4', 'dxe4', 'Qxd1+'], ['e4', 'e5', 'Bc4', 'd6', 'd3', 'Qf6', 'h4', 'h6', 'b3', 'Be6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nc3', 'Nf6', 'Nf3', 'h6', 'd4', 'exd4'], ['e4', 'e5', 'd4', 'exd4', 'Qd3', 'Nc6', 'Nf3', 'Be7', 'Nxd4', 'Nxd4'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'd6', 'd4', 'exd4'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'd6', 'Be2', 'Bg4', 'h3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nxe4', 'd3', 'd5', 'dxe4', 'dxc4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd4', 'Bxd4', 'Bxf7+', 'Kxf7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'h6'], ['f4', 'e6', 'Nf3', 'Be7', 'e3', 'Bh4+', 'Nxh4', 'Qxh4+', 'g3', 'Qe7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nc3', 'Bg7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'cxd5', 'Nxd5', 'Nxd5', 'Qxd5'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bc4', 'Nf6', 'O-O', 'Bc5', 'd3', 'h6'], ['d4', 'd5', 'c4', 'c6', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'Bf4', 'e6'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd3', 'g6', 'Be2', 'Bg7'], ['d4', 'd5', 'Nf3', 'Bf5', 'e3', 'a6', 'c4', 'e6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Be7'], ['d4', 'd5', 'Nf3', 'c6', 'Bf4', 'Bg4', 'e3', 'Nd7', 'Nbd2', 'e6'], ['g3', 'd5', 'Bg2', 'e6', 'd3', 'Nf6', 'Nf3', 'c5', 'O-O', 'Bd6'], ['e4', 'e6', 'Nc3', 'd5', 'Nf3', 'c6', 'd4', 'Bb4', 'a3', 'Bxc3+'], ['e3', 'Nc6', 'c3', 'd5', 'Nf3', 'Nf6', 'd3', 'e5', 'd4', 'exd4'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'Nc6', 'Bd2', 'e5', 'Bd3', 'exd4'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'a6', 'd3', 'Nc6', 'Be2', 'g6'], ['e4', 'd6', 'd4', 'e6', 'Bc4', 'a6', 'a3', 'b6', 'Be3', 'Bb7'], ['e4', 'e6', 'Nc3', 'd5', 'Nf3', 'Nf6', 'Bd3', 'c5', 'exd5', 'exd5'], ['e4', 'c6', 'Nf3', 'e6', 'd4', 'd5', 'Nc3', 'Nd7', 'Bg5', 'Be7'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'e3', 'a6'], ['e4', 'g6', 'Nc3', 'Bg7', 'd3', 'a6', 'g3', 'b5', 'Bg2', 'Bb7'], ['Nc3', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Bg5', 'Be7'], ['c3', 'd5', 'd4', 'c6', 'Bd2', 'f5', 'Bf4', 'Nf6', 'Nf3', 'Ne4'], ['e4', 'c5', 'f4', 'Nc6', 'c3', 'd5', 'e5', 'Bf5', 'Bb5', 'e6'], ['e4', 'd6', 'Nf3', 'e5', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'd5', 'Nc3', 'Nf6', 'exd5', 'Nxd5', 'Nf3', 'Bg4', 'Be2', 'Nf4'], ['d4', 'c6', 'e3', 'e6', 'Bd3', 'd5', 'h4', 'f5', 'h5', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nd7', 'g3', 'Bd6', 'Bg2', 'h6'], ['d4', 'e6', 'c4', 'c6', 'Nf3', 'd5', 'g3', 'Bd7', 'Bg2', 'Na6'], ['e4', 'e5', 'Nc3', 'Nf6', 'd3', 'Be7', 'g3', 'c5', 'h3', 'h6'], ['e4', 'e5', 'c3', 'Nf6', 'd3', 'Be7', 'Nf3', 'Nc6', 'b4', 'a6'], ['d4', 'd6', 'e3', 'e6', 'f4', 'Nd7', 'Bb5', 'a6', 'Bxd7+', 'Bxd7'], ['c4', 'c5', 'g3', 'd6', 'Bg2', 'g6', 'Nc3', 'Nf6', 'd3', 'Bg7'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Be3', 'Bg7'], ['c4', 'c6', 'g3', 'd5', 'cxd5', 'cxd5', 'Bg2', 'Nf6', 'd4', 'e6'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'g3', 'e5', 'Bg2', 'Nf6'], ['e4', 'c5', 'Nf3', 'g6', 'c3', 'Bg7', 'd4', 'cxd4', 'Nxd4', 'Nc6'], ['b4', 'c5', 'b5', 'd5', 'Bb2', 'Nf6', 'e3', 'Bf5', 'Be2', 'h6'], ['c4', 'Nf6', 'g3', 'e6', 'Bg2', 'c6', 'Nc3', 'd5', 'cxd5', 'cxd5'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nb3', 'Bg7'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'Bc5', 'Nc3', 'c6', 'd3', 'O-O'], ['c4', 'c5', 'Nc3', 'Nc6', 'g3', 'g6', 'Bg2', 'Bg7', 'd3', 'e6'], ['c4', 'c5', 'Nc3', 'g6', 'e3', 'Bg7', 'Nf3', 'Nc6', 'h3', 'd6'], ['e4', 'c5', 'Nc3', 'd6', 'g3', 'e5', 'Bg2', 'Be6', 'd3', 'Nc6'], ['f4', 'c5', 'e3', 'g6', 'Nf3', 'Bg7', 'd4', 'cxd4', 'Nxd4', 'Nc6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'd5', 'e5', 'dxc3', 'f4', 'Bf5'], ['c4', 'Nf6', 'Nc3', 'g6', 'g3', 'c6', 'Bg2', 'Bg7', 'd3', 'O-O'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'Nc6', 'Nc3', 'Bb4', 'd3', 'Bxc3+'], ['e4', 'c5', 'Nf3', 'g6', 'c3', 'Bg7', 'Bc4', 'Nc6', 'a4', 'e6'], ['c4', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'Nc3', 'c6', 'd3', 'd5'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'c4', 'Bg7'], ['d4', 'c5', 'Nf3', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'g6'], ['d4', 'c5', 'c3', 'cxd4', 'cxd4', 'Nf6', 'Nc3', 'g6', 'b3', 'Bg7'], ['c4', 'd6', 'g3', 'e6', 'Bg2', 'g6', 'd3', 'Bg7', 'Nc3', 'Ne7'], ['Nf3', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'g3', 'h6'], ['b3', 'e6', 'Bb2', 'Be7', 'Nf3', 'Nf6', 'd4', 'd5', 'e3', 'c5'], ['e4', 'c5', 'c3', 'g6', 'Qf3', 'Bg7', 'Bc4', 'e6', 'Nh3', 'Nc6'], ['e4', 'c5', 'Nf3', 'g6', 'Bc4', 'Bg7', 'd4', 'cxd4', 'O-O', 'Nc6'], ['c4', 'Nf6', 'g3', 'c6', 'Bg2', 'd5', 'Nf3', 'Bg4', 'O-O', 'e6'], ['Nf3', 'c5', 'e3', 'g6', 'd4', 'cxd4', 'exd4', 'Nf6', 'Bd3', 'Bg7'], ['c4', 'Nf6', 'g3', 'e5', 'Bg2', 'Be7', 'Nc3', 'O-O', 'd3', 'Nc6'], ['c4', 'd6', 'g3', 'Nf6', 'Bg2', 'g6', 'Nc3', 'Bg7', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'Qxf3', 'dxe5'], ['e4', 'c5', 'Nf3', 'g6', 'Bd3', 'Bg7', 'c3', 'Nc6', 'Bc2', 'd6'], ['c4', 'e5', 'g3', 'Bc5', 'Bg2', 'Qf6', 'e3', 'c6', 'Nc3', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'd4', 'Nxd4', 'c3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'd3', 'Nc6', 'h3', 'Bxf3'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e6', 'Bxc4', 'Nc6', 'Nf3', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'c5', 'cxd5', 'exd5', 'dxc5', 'Bxc5'], ['b4', 'f6', 'Bb2', 'Nc6', 'b5', 'Na5', 'e4', 'a6', 'a4', 'c6'], ['c4', 'g6', 'd4', 'Bg7', 'e4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'c6'], ['e3', 'd5', 'd4', 'Nc6', 'h3', 'Bf5', 'Nf3', 'e6', 'a3', 'Nf6'], ['d4', 'c6', 'c4', 'd5', 'e3', 'Nf6', 'Bd3', 'Nbd7', 'Nf3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nd4'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nf6', 'Bd3', 'Nxe4'], ['d4', 'd5', 'c4', 'Bf5', 'Nf3', 'e6', 'e3', 'Nc6', 'cxd5', 'Qxd5'], ['e4', 'Nf6', 'Nc3', 'e5', 'Bc4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5'], ['d4', 'Nf6', 'Bg5', 'g6', 'e3', 'Bg7', 'c4', 'Ne4', 'Bf4', 'c5'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bb5', 'Nd4', 'Bc4', 'e6', 'Nf3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Be7', 'O-O', 'Na5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'e3', 'Be7', 'Nf3', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf5', 'd5'], ['e4', 'c5', 'd4', 'cxd4', 'Bd3', 'Nc6', 'Nf3', 'e5', 'O-O', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'd4', 'cxd4', 'Nxd4', 'Qa5+'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Bg5', 'Be7', 'Nc3', 'O-O'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Qc7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e5', 'd3', 'Nf6', 'c3', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Be7', 'Nc3', 'c6'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'Nf6', 'Nc3', 'Bg4', 'Be2', 'e6'], ['d4', 'd5', 'e4', 'dxe4', 'Bb5+', 'Bd7', 'Nc3', 'Bxb5', 'Nxb5', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'Nc3', 'Bb4'], ['d4', 'd5', 'e3', 'Nc6', 'a3', 'e5', 'c4', 'exd4', 'exd4', 'dxc4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf5', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'Re1', 'Bc5'], ['e3', 'e5', 'b3', 'd5', 'd3', 'Bb4+', 'Bd2', 'Bxd2+', 'Nxd2', 'Nc6'], ['e4', 'e6', 'd4', 'b6', 'Nf3', 'd6', 'Bd3', 'a6', 'O-O', 'h6'], ['e3', 'd5', 'b3', 'e5', 'Bb2', 'Nf6', 'a3', 'Nc6', 'h3', 'd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'Bc4', 'Nf6', 'Ng5', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'Bb4+'], ['e4', 'e6', 'd4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Nf6', 'e5', 'Nd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'Bc5', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qf6', 'O-O', 'Bc5', 'd3', 'h6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'O-O', 'Nf6'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nb4', 'a3', 'Qh4', 'Nc3', 'Na6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'O-O', 'Be7', 'd4', 'exd4'], ['e4', 'e5', 'd3', 'Nc6', 'Nf3', 'Nf6', 'Bg5', 'h6', 'Bh4', 'Be7'], ['e4', 'c5', 'd3', 'Nc6', 'Nf3', 'd6', 'Be3', 'e5', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bxe6', 'fxe6', 'O-O', 'Nc6'], ['d4', 'd5', 'c3', 'Nc6', 'Nf3', 'Bg4', 'Nbd2', 'Nf6', 'Nb3', 'Bxf3'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'e5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'c4', 'Bg7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Bb5', 'Bd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'd4', 'cxd4', 'Nxd4', 'Qb6'], ['e4', 'e6', 'd4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'c5', 'd5', 'd6'], ['e4', 'e6', 'f4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Bb4', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'O-O', 'Nc6'], ['e4', 'b6', 'Nf3', 'Bb7', 'd3', 'e6', 'Be3', 'Bb4+', 'Bd2', 'Bxd2+'], ['e3', 'e6', 'd4', 'b6', 'Nf3', 'Bb7', 'Be2', 'c5', 'O-O', 'cxd4'], ['d4', 'e6', 'Nf3', 'b6', 'e3', 'Bb7', 'Be2', 'Nf6', 'Nc3', 'c5'], ['e4', 'e6', 'Nf3', 'Bc5', 'c3', 'Nf6', 'd3', 'Ng4', 'd4', 'Bb6'], ['e4', 'e5', 'Nf3', 'Qf6', 'c3', 'h6', 'Bb5', 'c6', 'Ba4', 'b5'], ['e4', 'e6', 'Nh3', 'b6', 'd3', 'Bb7', 'Qf3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'Nf6', 'd3', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'c3', 'd6'], ['d4', 'e6', 'e4', 'b6', 'Nc3', 'Bb7', 'Nf3', 'Bb4', 'Bd3', 'c5'], ['d4', 'e6', 'e4'], ['e4', 'e6', 'Nf3', 'b6', 'Nc3', 'Bb7', 'd3', 'Bb4', 'a3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'd6'], ['d4', 'e6', 'c4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Nf6', 'e3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'g6', 'c3', 'Bh6'], ['e4', 'b6', 'Nc3', 'e6', 'Nf3', 'Bb7', 'd3', 'Bb4', 'Bd2', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'c3', 'Nf6', 'h3', 'Nxe4'], ['Nf3', 'e6', 'd4', 'b6', 'Be3', 'Bb7', 'c3', 'c5', 'Nbd2', 'cxd4'], ['Nc3', 'e6', 'd4', 'b6', 'd5', 'Bb7', 'dxe6', 'fxe6', 'Nf3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'c3', 'Bg4', 'h3', 'Bxf3'], ['d4', 'e6', 'a3', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Nf6', 'Bg5', 'h6'], ['e3', 'e6', 'Nf3', 'b6', 'Be2', 'Bb7', 'O-O', 'Nf6', 'Nc3', 'Be7'], ['e4', 'e6', 'Nf3', 'c6', 'd3', 'd5', 'Be3', 'dxe4', 'dxe4', 'Qxd1+'], ['e3', 'e6', 'd4', 'b6', 'c4', 'Bb7', 'Nf3', 'c5', 'Be2', 'cxd4'], ['e4', 'e5', 'Nf3', 'f6', 'Bb5', 'Ne7', 'c3', 'Nec6', 'O-O', 'Bd6'], ['d4', 'e6', 'e3', 'b6', 'c4', 'Bb7', 'Nf3', 'c5', 'Be2', 'cxd4'], ['d4', 'Nf6', 'Nf3', 'g6', 'c4', 'Bg7', 'Nc3', 'd6', 'e4', 'O-O'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'f6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'e6', 'Bc4', 'Nc6'], ['c4', 'e5', 'Nc3', 'Nf6', 'e3', 'd6', 'Nge2', 'Be6', 'Qa4+', 'c6'], ['c4', 'Nf6', 'Nc3', 'e6', 'e4', 'd6', 'd4', 'e5', 'dxe5', 'dxe5'], ['d4', 'f5', 'Nf3', 'Nf6', 'h4', 'e6', 'e3', 'b6', 'h5', 'Bb7'], ['c4', 'Nf6', 'Nc3', 'e6', 'e4', 'd5', 'e5', 'Ng8', 'd4', 'g6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Bd3', 'Bd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'h4', 'Nh5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['d4', 'Nf6', 'c4', 'g6', 'Bg5', 'Bg7', 'Qd2', 'O-O', 'Bh6', 'd5'], ['d4', 'g6', 'c4', 'e6', 'Nc3', 'Ne7', 'd5', 'Bg7', 'e4', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Bb6'], ['e4', 'e5', 'a3', 'Bc5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd4', 'exd4'], ['f4', 'e6', 'g4', 'Qh4#'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'Bf5', 'e3', 'e6'], ['f4', 'e6', 'g4', 'Qh4#'], ['e3', 'f5', 'Nc3', 'g5', 'Qh5#'], ['e4', 'e5', 'a3', 'Nf6', 'f3', 'Nxe4', 'fxe4', 'Qh4+', 'Ke2', 'Qxe4+'], ['f4', 'e6', 'g4', 'Qh4#'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Bf5', 'c3', 'e6', 'Nf3', 'Be7'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'c6', 'Nc3', 'cxd5', 'cxd5', 'Nxd5'], ['e4', 'd5', 'exd5', 'Nf6', 'Bc4', 'Nxd5', 'Qh5', 'e6', 'd3', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'c6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nf6', 'Bf4', 'Bf5'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nc3', 'e6', 'Bd3', 'Bg6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'c4', 'e6', 'Nc3', 'Bb4'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nc3', 'e6', 'Bd3', 'Bxd3'], ['d4', 'd5', 'Nc3', 'Nf6', 'e4', 'dxe4', 'Bb5+', 'c6', 'Bg5', 'cxb5'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'c6', 'dxc6', 'Nxc6', 'Nf3', 'Bg4'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nc6', 'c3', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nc6', 'c3', 'Nf6'], ['e4', 'c6', 'Nc3', 'd5', 'Nf3', 'Bg4', 'h3', 'Bh5', 'exd5', 'cxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'c6', 'd3', 'd5', 'Nd2', 'e5', 'Ngf3', 'Bd6', 'd4', 'exd4'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bf4', 'Nd7', 'Nf3', 'e6'], ['e4', 'e6', 'd4', 'b6', 'c4', 'Bb7', 'Nc3', 'Bb4', 'Bd3', 'Nf6'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'c6', 'dxc6', 'Nxc6', 'b3', 'e5'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Nxd5', 'Qxd5', 'd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Bb6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Bg4', 'Be2', 'h5', 'h3', 'Bxf3'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'Bf5', 'Nf3', 'e6'], ['e4', 'c6', 'c4', 'd5', 'exd5', 'cxd5', 'cxd5', 'Qxd5', 'Nc3', 'Qg5'], ['f4', 'e6', 'g4', 'Qh4#'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Nxd5', 'Nf3', 'Nc6', 'c4', 'Nb6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'd5', 'exd5', 'Nf6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'c4', 'c6'], ['e4', 'd5', 'exd5', 'Nf6', 'Bc4', 'Nxd5', 'Bxd5', 'Qxd5', 'Nf3', 'Bg4'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nc3', 'Bf5', 'cxd5', 'cxd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bc4', 'b5', 'Bd5', 'Bb7'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'Nc3', 'exd5', 'cxd5', 'Nxd5'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'Nc3', 'exd5', 'cxd5', 'Nxd5'], ['e4', 'd6', 'd4', 'f5', 'Bd3', 'fxe4', 'Bxe4', 'Nf6', 'Bd3', 'e6'], ['c4', 'e5', 'd3', 'Nf6', 'a3', 'c5', 'Bd2', 'Nc6', 'h3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nd4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'f3', 'Nc6'], ['e4', 'e5', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8', 'Bc4', 'Nf6'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Ne7', 'Nxd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'a6', 'a4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'c3', 'Bg7'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'e6', 'Nf3', 'Nc6', 'Bb5', 'Qd7'], ['d4', 'd6', 'Bf4', 'c5', 'e3', 'cxd4', 'exd4', 'Nc6', 'Bb5', 'a6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'd6', 'b4', 'O-O'], ['d4', 'd5', 'Bf4', 'c5', 'e3', 'Nf6', 'Nf3', 'Bg4', 'Be2', 'cxd4'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Bf5', 'Nf3', 'Nc6', 'Bb5', 'e6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'g3', 'd6', 'Bg2', 'O-O'], ['d4', 'Nf6', 'Bf4', 'd6', 'e3', 'g6', 'c4', 'Bg7', 'Nc3', 'O-O'], ['d4', 'Nf6', 'e3', 'd6', 'Nd2', 'g6', 'Ngf3', 'Bg7', 'Bd3', 'O-O'], ['d4', 'Nf6', 'c3', 'g6', 'Bf4', 'Bg7'], ['Nc3', 'Nf6', 'd4', 'g6', 'Bf4', 'Bg7', 'e3', 'd6', 'h3', 'O-O'], ['e4', 'c6', 'd4', 'd5', 'e5', 'c5', 'Ne2', 'Nc6', 'Be3', 'e6'], ['d4', 'Nf6', 'Bf4', 'g6', 'Nc3', 'Bg7', 'e3', 'd6', 'Nge2', 'O-O'], ['b4', 'e5', 'Bb2', 'Nc6', 'b5', 'Nd4', 'e3', 'Ne6', 'Bxe5'], ['d4', 'g6', 'Bf4', 'Bg7', 'e3', 'd6', 'Nf3', 'Nf6', 'Bd3', 'O-O'], ['d4', 'e6', 'Bf4', 'Nf6', 'e3', 'Bb4+', 'c3', 'Ba5', 'Nf3', 'O-O'], ['d4', 'd5', 'Bf4', 'e5', 'Bxe5'], ['f4', 'd5', 'e3', 'c5', 'b3', 'Nc6', 'Bb2', 'Bf5', 'g4', 'Bg6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd3', 'Bf5', 'Nh4', 'Bg6'], ['d4', 'e6', 'Bf4', 'Nf6', 'e3', 'b6', 'Nf3', 'Bb7', 'Be2', 'Nc6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'a3', 'a5'], ['Nf3', 'Nf6', 'e3', 'g6', 'b3', 'Bg7', 'Bb2', 'd6', 'Nc3', 'O-O'], ['d4', 'Nf6', 'Bf4', 'd6', 'e3', 'Nc6', 'Nf3', 'Nh5', 'Bg3', 'Bg4'], ['e4', 'c6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Bb5', 'e6'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Bf5', 'Nf3', 'Nf6', 'Bb5', 'Ne4'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'Bc5', 'Bf4', 'f6', 'e3', 'fxe5'], ['d4', 'b5', 'Bf4', 'Bb7', 'e3', 'a6', 'Bd3', 'Bxg2', 'Qg4', 'Bxh1'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Nc3', 'd4', 'Nb5', 'Nc6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Bf4', 'O-O'], ['d4', 'd6', 'Bf4', 'Bf5', 'e3', 'Nf6', 'Nf3', 'e6', 'Be2', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'Nxe5', 'f6'], ['f4', 'e6', 'e4', 'd6', 'd4', 'Nf6', 'Qf3', 'e5', 'Ne2', 'exd4'], ['e4', 'c5', 'Bc4', 'Nf6', 'Nf3', 'Nxe4', 'd3', 'Nf6', 'O-O', 'e6'], ['e4', 'e5', 'Nf3', 'c6', 'Bc4', 'g6', 'Ng5', 'Qxg5', 'O-O', 'Bc5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bd3', 'Nc6', 'O-O', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'h6', 'Be3', 'Bb4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'h3', 'Nf6', 'Bg5', 'Bf5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Bd3', 'Bg4'], ['e4', 'e6', 'Nf3', 'd5', 'd3', 'c5', 'Be3', 'dxe4', 'dxe4', 'Qxd1+'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'c5', 'Be7', 'Bg5', 'c6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['d4', 'd5', 'c4', 'Nc6', 'e3', 'dxc4', 'Bxc4', 'e5', 'Qf3', 'Qf6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Be3', 'Bd6'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e6', 'Bxc4', 'Nf6', 'Nc3', 'Be7'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'e3', 'Be7', 'Nf3', 'c5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nf6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'h4', 'e5', 'g4', 'd6', 'h5', 'Bxg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'a3', 'a5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'd5', 'Nxe5', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'c3', 'dxc3'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Bd2', 'Qc7'], ['e4', 'c5', 'e5', 'Nc6', 'Nf3', 'Qc7', 'd4', 'cxd4', 'Nxd4', 'Nxe5'], ['d4', 'd5', 'c4', 'e6', 'a3', 'dxc4', 'Nc3', 'Nc6', 'Nf3', 'e5'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'c3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'O-O', 'a6', 'c3', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'h4', 'Nf6', 'd4', 'cxd4', 'Nxd4', 'Nxe4'], ['e4', 'd5', 'exd5', 'Nf6', 'Nf3', 'Bg4', 'Be2', 'Qxd5', 'Nc3', 'Qd8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'Na5', 'Nxe5', 'd5'], ['e4', 'c5', 'b3', 'e5', 'Bb2', 'd6', 'Nc3', 'Nf6', 'Nf3', 'Bg4'], ['e4', 'e6', 'c3', 'd5', 'exd5', 'exd5', 'd4', 'Be6', 'Nf3', 'Nf6'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'Nc6', 'Nf3', 'g6', 'd3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['Nh3', 'e5', 'g3', 'Nf6', 'Bg2', 'd5', 'O-O', 'h6', 'f4', 'e4'], ['Nf3', 'Nc6', 'g3', 'g6', 'Bg2', 'Nf6', 'O-O', 'Bg7', 'c3', 'O-O'], ['Nf3', 'Nf6', 'g3', 'd5', 'Bg2', 'e6', 'O-O', 'Be7', 'd3', 'O-O'], ['Nf3', 'Nf6', 'g3', 'e6', 'd3', 'b6', 'Bg2', 'Bb7', 'O-O', 'Be7'], ['Nf3', 'd5', 'h3', 'c5', 'd3', 'Nc6', 'Nbd2', 'e5', 'e4', 'd4'], ['Nf3', 'c5', 'g3', 'd5', 'd3', 'Nc6', 'Bg2', 'e5', 'Nc3', 'Nf6'], ['Nf3', 'Nc6', 'g3', 'g6', 'Nc3', 'Nf6', 'Bg2', 'Bg7', 'd3', 'd6'], ['Nf3', 'd5', 'g3', 'Nc6', 'Bg2', 'e6', 'O-O', 'Nf6', 'd4', 'Be7'], ['Nf3', 'd5', 'g3', 'c5', 'Bg2', 'Nc6', 'd3', 'Nf6', 'O-O', 'e5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'a6'], ['Nf3', 'e6', 'g3', 'd5', 'Bg2', 'c5', 'O-O', 'Nc6', 'c3', 'Qb6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nb5', 'a6'], ['Nf3', 'e6', 'g3', 'd5', 'Bg2', 'Nc6', 'O-O', 'Nf6', 'd3', 'Bc5'], ['Nf3', 'c5', 'g3', 'd5', 'Bg2', 'Nf6', 'd4', 'e6', 'c3', 'Be7'], ['Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'd6', 'd4', 'Nf6', 'Nc3', 'O-O'], ['Nf3', 'b6', 'g3'], ['Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'Nf6', 'O-O', 'O-O', 'd3', 'c5'], ['g3', 'c6', 'Bg2', 'd5', 'd4', 'Nf6', 'Nc3', 'e6', 'Bg5', 'Be7'], ['Nf3', 'c6', 'g3', 'Nf6', 'Bg2', 'e5', 'O-O', 'e4', 'd3', 'exf3'], ['Nf3', 'd5', 'g3', 'Nc6', 'Bg2', 'e5', 'O-O', 'Nf6', 'd3', 'Bf5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'e6'], ['d4', 'Nf6', 'c4', 'e6', 'a3', 'b6', 'Nc3', 'Bb7', 'Bg5', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'd5', 'Bf4', 'e6', 'e3', 'Bd6', 'Bg3', 'c6', 'Nd2', 'h5'], ['d4', 'e6', 'Bf4', 'h6', 'e4', 'd6', 'Nf3', 'a6', 'c4', 'b6'], ['d4', 'd5', 'Bf4', 'f6', 'e3', 'e5', 'dxe5', 'fxe5', 'Qh5+', 'g6'], ['d4', 'Nf6', 'e3', 'g6', 'c4', 'Bg7', 'Nc3', 'O-O', 'Bd3', 'd5'], ['e4', 'a6', 'Nf3', 'g5', 'Nxg5', 'f6', 'Nf3', 'Nh6', 'Nd4', 'b6'], ['e4', 'c5', 'Bc4', 'Nc6', 'a3', 'g6', 'Qf3', 'Ne5', 'Bxf7+', 'Nxf7'], ['d4', 'e6', 'c4', 'Qh4', 'Nc3', 'c6', 'g3', 'Qd8', 'Bg2', 'h6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'g6', 'd5', 'Nb4', 'c3', 'Na6'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'd5', 'Nc3', 'Be7', 'Bg5', 'h6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'e3', 'Be7', 'Nf3', 'O-O'], ['Nf3', 'Nf6', 'c4', 'e6', 'g3', 'd5', 'Bg2', 'Be7', 'O-O', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'O-O', 'Nf3', 'd5'], ['d4', 'Nf6', 'c4', 'g6', 'g3', 'd5', 'Nf3', 'Bg7', 'cxd5', 'Nxd5'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Ne5', 'Nf6', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'Nf6', 'd3', 'd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'e3', 'Bg7', 'Qb3', 'e6'], ['f3', 'e5', 'Kf2', 'd5', 'c3', 'c5', 'e3', 'Nc6', 'Bb5', 'Bd6'], ['c4', 'Nf6', 'Nc3', 'g6', 'g3', 'd5', 'cxd5', 'Nxd5', 'Bg2', 'c6'], ['d4', 'Nf6', 'Bg5', 'd5', 'e3', 'c6', 'c3', 'Bf5', 'Qb3', 'Qb6'], ['d4', 'Nf6', 'Bf4', 'g6', 'Nc3', 'c6', 'e4', 'Bg7', 'e5', 'Nd5'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Be7', 'Bg5', 'h6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'Be2', 'Nd7'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Be7', 'Bg5', 'O-O'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'Bc5', 'e3', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'e3', 'Bb7', 'Be2', 'd5'], ['e4', 'c6', 'd4', 'd5', 'e5', 'c5', 'dxc5', 'Qa5+', 'Nc3', 'Qxc5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nf6', 'Nxf6+', 'exf6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nd7', 'Qe2', 'e6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'g6', 'Nc3', 'Bg7', 'Bxc6', 'bxc6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'exd5', 'exd5', 'Nf3', 'Bd6'], ['Nc3', 'c6', 'e4', 'd5', 'd4', 'dxe4', 'Nxe4', 'Nd7', 'Nf3', 'Ngf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'c4', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'exd6', 'Bxd6'], ['d4', 'Nf6', 'Nf3', 'e6', 'e3', 'd5', 'Bd3', 'Be7', 'O-O', 'O-O'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c4', 'Nf6', 'Nc3', 'e6'], ['e4', 'c6', 'Nc3', 'd5', 'Qe2', 'd4', 'Nd1', 'e5', 'g3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['Nf3', 'Nc6', 'c4', 'e5', 'Nc3', 'Nf6', 'a3', 'Be7', 'd4', 'd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'd4', 'd5'], ['d4', 'Nf6', 'c4', 'c6', 'd5', 'e6', 'Nc3', 'Bb4', 'Bg5', 'Bxc3+'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nc6', 'Nf3', 'e6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'f4', 'c5'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'd5', 'Bb5', 'Bd6', 'Nf3', 'f6'], ['e4', 'c5', 'c3', 'Nf6', 'e5', 'Nd5', 'd4', 'cxd4', 'Qxd4', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'b5'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'f4', 'Bg7', 'Nf3', 'c5'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'f3', 'c5', 'd5', 'exf3'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nf6', 'Nxf6+', 'exf6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'c3', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'c5', 'Nc3', 'e6', 'f4', 'd5', 'Nf3', 'dxe4', 'Nxe4', 'Nf6'], ['Nf3', 'd5', 'd4', 'Nc6', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'c4', 'Nb6', 'exd6', 'exd6'], ['d4', 'Nf6', 'Nc3', 'd6', 'Bg5', 'Nbd7', 'e3', 'h6', 'Bf4', 'e5'], ['Nf3', 'd5', 'd4', 'Nf6', 'c4', 'c6', 'Nc3', 'a5', 'e3', 'dxc4'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'b6', 'g3', 'Bb4+', 'Bd2', 'Qe7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['d4', 'Nf6', 'a3', 'd5', 'e3', 'Nc6', 'Nf3', 'e6', 'Nbd2', 'Bd6'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'a6', 'e3', 'b5', 'Nc3', 'Bb7'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'e6', 'Nf3', 'Nc6'], ['e4', 'c5', 'Bc4', 'd6', 'd3', 'Nf6', 'c3', 'e6', 'Nf3', 'Be7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Bb5', 'Bd7'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Bg4', 'Nf3', 'e6', 'Nbd2', 'Bb4'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'Nf6', 'Bd3', 'e6', 'Nf3', 'Bg6'], ['e4', 'e6', 'Nf3', 'd5', 'd4', 'c5', 'exd5', 'Qxd5', 'Nc3', 'Qd8'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'Bd6', 'e3', 'Bxf4', 'exf4', 'f5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nc3', 'c6'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb3', 'Nf6', 'a3', 'c6'], ['d4', 'f5', 'g3', 'd5', 'Bg2', 'e6', 'Nh3', 'Nf6', 'Bf4', 'Bd6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'f4', 'c5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Nge7'], ['d4', 'Nf6', 'Bf4', 'e6', 'e3', 'g6', 'c3', 'Bg7', 'Nf3', 'd6'], ['e4', 'e6', 'f4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Bd7'], ['d4', 'd6', 'Bf4', 'Nf6', 'e3', 'g6', 'Nf3', 'Bg7', 'c3', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Bg5', 'Be7'], ['d4', 'e6', 'Bf4', 'Nf6', 'Nf3', 'c5', 'e3', 'Qa5+', 'c3', 'Nc6'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'Nf6', 'e3', 'b6', 'c3', 'c5'], ['d4', 'b5', 'Bf4', 'e6', 'e3', 'Ba6', 'Nf3', 'Nf6', 'a3', 'Ne4'], ['b3', 'e5', 'Bb2', 'f6', 'e3', 'd5', 'Qe2', 'Nc6', 'Nf3', 'Bf5'], ['d4', 'e6', 'c4', 'f5', 'a3', 'Nf6', 'Nc3', 'd5', 'Bg5', 'c6'], ['d4', 'Nf6', 'Bf4', 'g6', 'c3', 'Bg7', 'Nd2', 'd6', 'e4', 'Nbd7'], ['d4', 'd5', 'Bf4', 'c6', 'e3', 'Nf6', 'Nf3', 'g6', 'c3', 'Bg7'], ['d4', 'Nf6', 'Bf4', 'd5', 'e3', 'e6', 'Nf3', 'Bd6', 'c3', 'Bxf4'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'd4', 'Nge7'], ['e4', 'e6', 'f4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'Nc3', 'Bd6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bd3', 'Bb4', 'e5', 'Nfd7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Bb5+', 'c6', 'Ba4', 'Nf6'], ['d4', 'c6', 'Bf4', 'd6', 'e3', 'h6', 'c3', 'Nd7', 'Nf3', 'g6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Nge7'], ['e4', 'e5', 'Nc3', 'Bc5', 'Bc4', 'Nc6', 'd3', 'd6', 'Nf3', 'h6'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Bg4', 'Be2', 'Bxe2', 'Nxe2', 'Qxd5'], ['e4', 'c5', 'Nc3', 'Nc6', 'f4', 'e6', 'Bc4', 'Be7', 'Nf3', 'Bh4+'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'exd5', 'exd5', 'dxc5', 'Bxc5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Nf3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nd4'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'e6', 'd4', 'Bb4', 'Bd3', 'Nf6'], ['g3', 'd5', 'Bg2', 'Nf6', 'd3', 'e6', 'Nd2', 'Be7', 'Ngf3', 'b6'], ['e4', 'e6', 'Nc3', 'd5', 'Nf3', 'c6', 'exd5', 'exd5', 'd4', 'Nf6'], ['e4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'Nbd7', 'Be2', 'e5', 'O-O', 'Be7'], ['Nc3', 'c6', 'e4', 'd5', 'exd5', 'cxd5', 'd4', 'Nf6', 'Nf3', 'Nc6'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'e6', 'Bc4', 'Bb4', 'O-O', 'Bxc3'], ['e4', 'c5', 'Nc3', 'Nc6', 'f4', 'e5', 'Bc4', 'Nf6', 'd3', 'Be7'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Nf3', 'd5', 'Bg5', 'h6'], ['d4', 'f5', 'Nc3', 'Nf6', 'f3', 'g6', 'e4', 'fxe4', 'fxe4', 'Bg7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'f4', 'c5'], ['e4', 'c5', 'Nc3', 'a6', 'Nf3', 'b5', 'a3', 'Bb7', 'a4', 'b4'], ['e4', 'e6', 'd4', 'c6', 'Nc3', 'd5', 'exd5', 'exd5', 'Bd3', 'Be6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'c4', 'Bg7'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'Nf6', 'e5', 'Nd5', 'Bc4', 'e6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'Nc6', 'd3', 'a6', 'Be3', 'b5'], ['Nf3', 'Nf6', 'Nc3', 'Nc6', 'e4', 'e5', 'Nd5', 'Nxe4', 'Qe2', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'Nxd4'], ['e4', 'c5', 'Nf3', 'e6', 'Bb5', 'a6', 'Bc4', 'b5', 'Be2', 'Bb7'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['d4', 'Nf6', 'Bg5', 'g6', 'Bxf6', 'exf6', 'e3', 'Bg7', 'g3', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'f4', 'c5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Qe2', 'Qe7'], ['e4', 'c5', 'd3', 'Nc6', 'g3', 'd5', 'Nd2', 'dxe4', 'dxe4', 'g6'], ['e4', 'c5', 'Nf3', 'e6', 'Bc4', 'Nc6', 'Nc3', 'a6', 'a3', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'c3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'Bf5', 'Nf3', 'c6', 'e3', 'e6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'd5', 'exd5', 'Qxd5', 'cxd4', 'Bb4+'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nf6', 'Bd3', 'Nc6'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Nc6', 'd4', 'e6', 'e5', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Bxf7+', 'Kxf7', 'Nxe5+', 'Kf8'], ['e4', 'e5', 'b3', 'Nf6', 'Nc3', 'd5', 'd3', 'd4', 'Nce2', 'Bb4+'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qh5', 'Qf6', 'Nf3', 'Nc6', 'Nc3', 'Bxf2+'], ['b4', 'e5', 'Bb2', 'f6', 'e4', 'Bxb4', 'Bc4', 'Nc6', 'c3', 'Bc5'], ['d4', 'Nf6', 'Bf4', 'd5', 'Nf3', 'e6', 'e3', 'c5', 'c3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'Qe2', 'Be7'], ['e3', 'e5', 'b3', 'd5', 'Qh5', 'Nc6', 'Bb5', 'g6', 'Qxe5+'], ['d4', 'Nf6', 'Nf3', 'd5', 'c4', 'e6', 'Nc3', 'c6', 'c5', 'b6'], ['e4', 'e5', 'Nc3', 'Nf6', 'f3', 'Nc6', 'Nge2'], ['d4', 'd6', 'e4', 'Nf6', 'Bd3', 'g6', 'Bg5', 'Bg7', 'c4', 'c5'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Nf6', 'Bb5', 'e6', 'a3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'a6', 'd3', 'Bb4', 'Bd2', 'd6'], ['e4', 'd6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'd3', 'Nf6', 'Be2', 'b6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'e6', 'Bd3', 'Nf6'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nf3', 'e6', 'e3', 'Bd7', 'Bd3', 'Be7'], ['d4', 'd5', 'c4', 'e6', 'cxd5', 'exd5', 'Nc3', 'c6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'a6', 'Bc4', 'Nc6', 'd4', 'Bg4'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'Be7', 'O-O', 'O-O'], ['e4', 'Nc6', 'Nf3', 'd6', 'Bb5', 'Bg4', 'O-O', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'd6', 'g3', 'Bg4', 'Bg2', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qf3', 'Nf6', 'Ne2', 'Be7', 'd3', 'O-O'], ['e4', 'e5', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'b5', 'Bb3', 'Nc6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6', 'b3', 'Be7'], ['e4', 'c5', 'Nf3', 'g6', 'd3', 'Bg7', 'Nc3', 'd6', 'Bd2', 'Qb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Nc3', 'Bd7', 'O-O', 'Nf6'], ['e4', 'e5', 'Nc3', 'd6', 'Bc4', 'Nc6', 'a3', 'Nf6', 'h3', 'Be7'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'Nc3', 'a6', 'Ba4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'Bc5', 'c3', 'O-O'], ['e4', 'e5', 'Bc4', 'Nc6', 'd3', 'd6', 'Nc3', 'Nf6', 'Nf3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'Nc3', 'Bc5', 'h3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'd3', 'd6', 'Bd2', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'Be2', 'd6', 'O-O', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'h6', 'O-O', 'Bg4'], ['e4', 'e5', 'd3', 'Nc6', 'c3', 'd6', 'Be3', 'Be6', 'Be2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'c3', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nxc6', 'bxc6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd6', 'd4', 'g5', 'Bc4', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Nc3', 'Bg4', 'h3', 'Bh5'], ['e4', 'e5', 'Bc4', 'Nc6', 'a3', 'Nf6', 'd3', 'Be7', 'h3', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'c6', 'Be2', 'Be7', 'O-O', 'Nf6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nc3', 'c5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Bc4', 'Qf6', 'Nd5', 'Qd8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'Bc4', 'Nf6', 'a3', 'Bxc3'], ['e4', 'g6', 'Nf3', 'Bg7', 'd4', 'e6', 'e5', 'd6', 'Nc3', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'a3', 'c6', 'Nc3', 'Nf6', 'e3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'dxc6', 'Nc3', 'Bg4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Nf3', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Bc5', 'Bxf7+', 'Ke7'], ['e4', 'd5', 'exd5', 'Nf6', 'Nf3', 'Bg4', 'Be2', 'Nxd5', 'd4', 'Nc6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'Bg5', 'dxc4', 'e4', 'Bg7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nf6', 'e5', 'dxe5', 'dxe5', 'Qxd1+'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nf6', 'e5', 'dxe5', 'Nxe5', 'Qxd4'], ['d4', 'g6', 'c4', 'Bg7', 'Nf3', 'Nh6', 'Nc3', 'f6', 'e4', 'Nf7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nxe5', 'Bxf2+', 'Kxf2', 'Nxe5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'Qxf3', 'dxe5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'e6', 'Nf3', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'Be7', 'Nc3', 'Nd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bb5', 'Bd7', 'd4', 'a6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'd6', 'd3', 'Bg4', 'b3', 'Qc7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'b6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f4', 'O-O'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'b6', 'dxc5', 'bxc5', 'Bb5+', 'Bd7'], ['e4', 'e5', 'd3', 'Bc5', 'Nf3', 'd6', 'Be2', 'f5', 'O-O', 'fxe4'], ['e4', 'e5', 'f4', 'Bc5', 'Nf3', 'exf4', 'Bc4', 'Bb6', 'd4', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'd5', 'Bd2', 'Bxc3'], ['e4', 'c5', 'd4', 'cxd4', 'Bd3', 'e5', 'f4', 'Nc6', 'Nf3', 'd6'], ['e4', 'd6', 'd4', 'e6', 'c4', 'b6', 'Nc3', 'Bb7', 'Nf3', 'a6'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7', 'b3', 'Nc6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Nc6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'Re1', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'b6', 'Nf3', 'Bb7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Bd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd5', 'Nxe5', 'Be6', 'Nxc6', 'bxc6'], ['d4', 'Nf6', 'Nf3', 'd5', 'c3', 'c6', 'Ne5', 'Bf5', 'b4', 'Nbd7'], ['e4', 'c5', 'Nc3', 'e6', 'Nf3', 'Nc6', 'a3', 'Nf6', 'h3', 'd5'], ['e4', 'c5', 'Bc4', 'e6', 'Qf3', 'Nc6', 'c3', 'Ne5', 'Qe2', 'Nxc4'], ['d4', 'Nf6', 'Bf4', 'd5', 'e3', 'c6', 'Nd2', 'Bf5', 'Bd3', 'Bg6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'f6', 'd4', 'a6', 'Ba4', 'b5'], ['d4', 'd5', 'Bf4', 'Nf6', 'h3', 'Nc6', 'Nf3', 'g6', 'e3', 'Bg7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Nc6'], ['e4', 'c5', 'c3', 'e5', 'd4', 'cxd4', 'cxd4', 'exd4', 'Qxd4', 'Nc6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'b3', 'Bc5', 'Bc4', 'd6', 'd3', 'Bg4'], ['d4', 'c5', 'd5', 'Nf6', 'c4', 'e5', 'dxe6', 'fxe6', 'Nf3', 'd5'], ['e4', 'e5', 'Nc3', 'Bc5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'O-O'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'Nf6', 'd3', 'Bf5', 'Nc3', 'exd3'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'b6', 'Bd3', 'Bc5'], ['e4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Nc3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'Nc6', 'd4', 'd5', 'e5', 'Bd7'], ['e4', 'e5', 'f3', 'd5', 'Nc3', 'd4', 'Nd5', 'Nf6', 'Nxf6+', 'Qxf6'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'Nf6', 'e3', 'Bg4', 'h3', 'Bh5'], ['e4', 'g6', 'd4', 'd6', 'Nf3', 'Bg7', 'Nc3', 'Nf6', 'e5', 'dxe5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'Nc3', 'Qe7', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd3', 'Bd6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd3', 'Bc5', 'O-O', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Bb4', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'cxd4', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Nf6'], ['e4', 'd6', 'd4', 'e5', 'dxe5', 'dxe5', 'Nf3', 'Qxd1+', 'Kxd1', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Bc5', 'b4', 'Bxb4'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'e3', 'Bb4'], ['e4', 'e5', 'Bc4', 'Nc6', 'c3', 'Nf6', 'Nf3', 'Bc5', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'O-O', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Bc5'], ['e4', 'Nf6', 'e5', 'Nd5', 'Nc3', 'Nxc3', 'dxc3', 'd6', 'Bg5', 'Nd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'Bc5', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd4', 'exd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'e6', 'd3', 'Be7'], ['e4', 'c5', 'Nc3', 'd6', 'Nf3', 'Nf6', 'Bb5+', 'Nbd7', 'd3', 'a6'], ['d4'], ['f3', 'e5', 'g3', 'd5', 'Bg2', 'Nf6', 'b3', 'Be7', 'Na3', 'O-O'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'c3', 'a6', 'd4', 'cxd4'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bg5', 'h6', 'Bf4', 'e6', 'e3', 'Bd6'], ['d4', 'e6', 'c4', 'Nc6', 'Nf3', 'b6', 'Nc3', 'Bb7', 'e3', 'a5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['d4', 'd5', 'Nf3', 'e6', 'Bf4', 'Nf6', 'c3', 'Nc6', 'e3', 'Bd6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bd3', 'Nf6', 'Nf3', 'g6'], ['e4', 'e6', 'Nf3', 'd5', 'Nc3', 'Nf6', 'exd5', 'Nxd5', 'Nxd5', 'Qxd5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nxc3'], ['f4', 'e6', 'Nf3', 'd5', 'e3', 'Bd6', 'd4', 'Nf6', 'a3', 'c5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'O-O', 'e4', 'd6'], ['d4', 'c5', 'd5', 'Nf6', 'c4', 'b5', 'Nc3', 'bxc4', 'e4', 'd6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'cxd5', 'cxd5', 'Nf3', 'g6'], ['d4', 'Nf6', 'Nf3', 'g6', 'c4', 'Bg7', 'Nc3', 'O-O', 'e4', 'd6'], ['e4', 'e6', 'e5', 'd5', 'd4', 'c5', 'c3', 'Nc6', 'Bb5', 'cxd4'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'Ne2', 'c5'], ['e4', 'e6', 'd4', 'd5', 'Bd3', 'Nf6', 'e5', 'Nfd7', 'Nf3', 'g6'], ['d4', 'e5', 'd5', 'Nf6', 'c4', 'Bc5', 'Nc3', 'O-O', 'e4', 'd6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bb5', 'g6', 'Bxc6', 'bxc6', 'f4', 'Bg7'], ['d4', 'e6', 'e4', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Bc5', 'Nb3', 'Bb6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bd3', 'e5'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'dxc4', 'Nf3', 'Bb4', 'e3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Bg5', 'O-O'], ['d4', 'g6', 'c4', 'd6', 'Nc3', 'Bg7', 'g3', 'Nf6', 'Bg2', 'Nbd7'], ['d4', 'Nf6', 'c3', 'd5', 'g3', 'g6', 'Nf3', 'Bg7', 'Bg2', 'O-O'], ['d4', 'd6', 'Nf3', 'c6', 'Bg5', 'Qc7', 'e3', 'h6', 'Bh4', 'Nf6'], ['c4', 'c5', 'Nc3', 'Nc6', 'e4', 'e5', 'Nf3', 'g6', 'a3', 'Bg7'], ['e4', 'e5', 'a3', 'Nc6', 'h3', 'Nf6', 'd3', 'Be7', 'c3', 'O-O'], ['d4', 'Nf6', 'c4', 'e5', 'e3', 'Bb4+', 'Nc3', 'Qe7', 'Bd2', 'exd4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Bd7', 'Nf3', 'Nc6'], ['d4', 'Nf6', 'Bf4', 'd5', 'Nf3', 'c5', 'c3', 'b6', 'e3', 'a5'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'd4', 'Bd7', 'c3', 'Nc6'], ['d4', 'Nf6', 'Nf3', 'b6', 'Bf4', 'Bb7', 'e3', 'e6', 'Bb5', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'Nc6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'e5', 'd5', 'Nb4'], ['b3', 'Nf6', 'Bb2', 'g6', 'e4', 'Bg7', 'e5', 'Nd5', 'Bc4', 'Nb6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6', 'd3', 'Bb4'], ['Nc3', 'e5', 'e4', 'Nc6', 'Bb5', 'Nd4', 'Bc4', 'Nf6', 'd3', 'b6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'c6', 'Bf4', 'Bf5', 'Nf3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['d4', 'd6', 'c4', 'd5', 'Nc3', 'dxc4', 'e3', 'Bd7', 'Bxc4', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'exf4', 'd4', 'Nf6', 'e5', 'Nd5'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'e6', 'Bf4', 'a6', 'e3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['d4', 'd5', 'c4', 'Nf6', 'Nf3', 'dxc4', 'Nc3', 'e6', 'e3', 'Bd7'], ['d4', 'd5', 'c4', 'e6', 'a3', 'Nf6', 'Nc3', 'Bd6', 'cxd5', 'exd5'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nc6', 'd4', 'd6', 'Bxf4', 'g6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'Bg5', 'Be7', 'Nf3', 'Nbd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'f6', 'c3', 'Bc5', 'd4', 'exd4'], ['e4', 'e5', 'Qh5'], ['e4', 'e6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Bc5', 'Nc3', 'd6', 'h3', 'Nf6'], ['d4', 'Nf6', 'Bf4', 'e6', 'Nf3', 'c5', 'e3', 'Nc6', 'c3', 'Be7'], ['e4', 'c6', 'd4', 'd5', 'e5', 'f6', 'f4', 'e6', 'Bd3', 'Nd7'], ['d4', 'c6', 'c4', 'd6', 'Nc3', 'Qc7', 'Nf3', 'Bg4', 'Bf4', 'Nf6'], ['e4', 'e5', 'f4', 'd6', 'Bc4', 'f5', 'Nf3', 'fxe4', 'Bf7+', 'Kxf7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Bb5', 'a6'], ['e4', 'c5', 'Bc4', 'Nc6', 'a3', 'g6', 'c3', 'Bg7', 'h3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Qf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O'], ['e4', 'e5', 'f4', 'd5', 'Nc3', 'exf4', 'Nf3', 'dxe4', 'Nxe4', 'Bf5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nb3', 'Qf6'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Bg4', 'Bb5+', 'c6', 'dxc6', 'Bxd1'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Bg4', 'f3', 'Bf5', 'c4', 'e6'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'c6', 'dxc6', 'Nxc6', 'Nf3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'O-O'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'c6', 'dxc6', 'Nxc6', 'Nf3', 'e5'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'c3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Bc5', 'Nc3', 'c6', 'd3', 'h6'], ['e4', 'd5', 'e5', 'c5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'f4', 'Nb6'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'c6', 'dxc6', 'Nxc6', 'Nc3', 'e5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'c6', 'Nc3', 'Be7', 'd3', 'Nf6'], ['e4', 'd5', 'e5', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qf4', 'Nh6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxe5', 'Qg5', 'Bxf7+', 'Kd8'], ['e4', 'a5', 'd4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'Ra6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'd6', 'd3', 'Bg4', 'Nc3', 'c6'], ['Nf3', 'd5', 'g3', 'Nc6', 'Bg2', 'e5', 'd3', 'Nf6', 'O-O', 'Bf5'], ['e4', 'e5', 'a3', 'Nf6', 'd3', 'Bc5', 'Ne2', 'Ng4', 'd4', 'Bb6'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'Nf6', 'Bd3', 'e6', 'Nf3', 'Bb4'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c5', 'Be3', 'b6', 'Nf3', 'Nc6'], ['e4', 'Nc6', 'Nf3', 'b6', 'd4', 'Nf6', 'h3', 'Nxe4', 'Bd3', 'Nf6'], ['d4', 'b6', 'Nc3', 'Bb7', 'e3', 'Nc6', 'Nf3', 'd5', 'Qd3', 'f6'], ['c4', 'e5', 'g3', 'Nf6', 'Nf3', 'c6', 'Nxe5', 'Bc5', 'Nd3', 'Bb6'], ['e4', 'c5', 'd4', 'cxd4', 'Nf3', 'e5', 'c3', 'dxc3', 'Nxc3', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Bb4', 'Bg5', 'Nbd7'], ['Nf3', 'Nc6', 'd4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'h6'], ['e4', 'c5', 'Nf3', 'a6', 'Nc3', 'b5', 'a4', 'b4', 'Nd5', 'e6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'Nc6', 'd5', 'Nb4', 'a3', 'Na6'], ['d4', 'd5', 'Nf3', 'Nf6', 'g3', 'e6', 'Bg2', 'Be7', 'O-O', 'O-O'], ['e4', 'c5', 'Nf3', 'e6', 'g3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6'], ['e4', 'd6', 'd4', 'c5', 'Nf3', 'Qa5+', 'Bd2', 'Qb6', 'c3', 'cxd4'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nc3', 'e6', 'g4', 'Bg6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['e4', 'e6', 'd4', 'Nc6', 'd5', 'Ne5', 'dxe6', 'fxe6', 'Qh5+', 'g6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nd2', 'e6', 'Nb3', 'Nd7'], ['d4', 'Nf6', 'Nf3', 'd6', 'e3', 'g6', 'Bd3', 'Bg7', 'Nbd2', 'O-O'], ['d4', 'Nf6', 'Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O', 'O-O', 'e6'], ['e4', 'c6', 'd4', 'Na6', 'Nc3', 'Qa5', 'Nf3', 'd6', 'Bd3', 'b5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Bd3', 'e5', 'O-O', 'Nf6'], ['d4', 'c5', 'd5', 'e5', 'c4', 'd6', 'Nc3', 'Nf6', 'e3', 'Be7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e5', 'Nfd7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'e3', 'Bg7', 'Nf3', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'd4', 'cxd4', 'Nxd4', 'e5'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nc6', 'Nf3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'e4', 'Qe2', 'Nf6', 'Nc3', 'Be7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['d4', 'f5', 'c4', 'Nf6', 'Nf3', 'g6', 'Bg5', 'Ne4', 'Bf4', 'Bg7'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Nxd5', 'Qxd5', 'd4', 'Nc6'], ['d4', 'f5', 'c4', 'Nf6', 'Bg5', 'g6', 'Nf3', 'Bg7', 'e3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'f4', 'c5', 'dxc5', 'Qa5'], ['d4', 'f5', 'c4', 'Nf6', 'Nf3', 'g6', 'e3', 'Bg7', 'Bd3', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Be7', 'Nf3', 'Nf6', 'Bf4', 'a6'], ['e4', 'g6', 'd4', 'Bg7', 'Nc3', 'd6', 'Bg5', 'a6', 'Qd2', 'b5'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Be3', 'Qc7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Be3', 'Qc7'], ['d4', 'd5', 'Nf3', 'Bg4', 'Ne5', 'Nf6', 'Nxg4', 'Nxg4', 'e4', 'dxe4'], ['b3', 'd6', 'Bb2', 'Nc6', 'e4', 'e5', 'Bb5', 'Bd7', 'f4', 'Nd4'], ['Nf3', 'Nf6', 'd4', 'g6', 'Bg5', 'Bg7', 'Bxf6', 'Bxf6', 'e4', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'd4', 'Qe7', 'dxe5', 'dxe5'], ['b3', 'Nf6', 'Bb2', 'g6', 'Nc3', 'Bg7', 'Nf3', 'd6', 'e4', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Be7', 'O-O', 'O-O'], ['d4', 'e6', 'e4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'c3', 'Qb6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Bf5', 'Nf3', 'e6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'c3', 'cxd4', 'cxd4', 'Bb4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'Nf6', 'Bd2', 'c6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['d4', 'g6', 'Nf3', 'Bg7', 'Bf4', 'd6', 'e3', 'Nf6', 'Bd3', 'O-O'], ['e4', 'b6', 'f4', 'Bb7', 'd3', 'd6', 'Nc3', 'g6', 'Be3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'Bc5', 'd3', 'Bb6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Be7', 'Nf3', 'Nf6'], ['e4', 'e6', 'e5', 'b6', 'd4', 'Nc6', 'c3', 'Bb7', 'Be2', 'Nge7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Bb4'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'O-O'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'h3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Bc5'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Qe7', 'd3', 'Nd4', 'Na3', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'Re1', 'Nd6'], ['e4', 'e5', 'Nf3', 'Bd6', 'Nc3', 'c6', 'd4', 'exd4', 'Qxd4', 'Bf8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd6', 'O-O', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'd3', 'a6', 'Be3', 'Nc6', 'c3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'Qc2', 'd6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'h3', 'Be6', 'Bb5', 'f6'], ['d4', 'c6', 'c4', 'd5', 'cxd5', 'cxd5', 'Nf3', 'Bg4', 'Ne5', 'Bh5'], ['e4', 'c6', 'd4', 'd6', 'Nc3', 'Nf6', 'Nf3', 'Bg4', 'Bg5', 'Nfd7'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'g6', 'Bd2', 'Bg7'], ['Nf3', 'c5', 'c3', 'g6', 'd4', 'cxd4', 'cxd4', 'Bg7', 'Bf4', 'd6'], ['Nf3', 'c5', 'e3', 'g6', 'd4', 'cxd4', 'exd4', 'Bg7', 'b3', 'Nc6'], ['d4', 'd5', 'Nf3', 'Nf6', 'Nc3', 'e6', 'Qd3', 'Nbd7', 'e4', 'dxe4'], ['e4', 'c5', 'g3', 'g6', 'f4', 'Bg7', 'Bg2', 'd6', 'd3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bd3', 'c5', 'dxc5', 'Bxc5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'c4', 'g6'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nd7', 'Bc4', 'c6', 'O-O', 'Be7'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'Bg5', 'Bf5', 'Qe2', 'Qxd4'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'g6', 'O-O', 'Bg7', 'c3', 'd6'], ['d4', 'd5', 'Nc3', 'Nf6', 'h3', 'Bf5', 'Bf4', 'e6', 'e3', 'c5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'c6', 'Bc4', 'Bf5'], ['d4', 'd5', 'Nc3', 'Nf6', 'h3', 'e6', 'Bf4', 'Nbd7', 'e3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bb4+', 'c3', 'dxc3'], ['e4', 'c5', 'c3', 'g6', 'Nf3', 'Bg7', 'd4', 'cxd4', 'cxd4', 'Nc6'], ['e4', 'c5', 'c3', 'g6', 'd4', 'cxd4', 'cxd4', 'Bg7', 'e5', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nxc6', 'bxc6'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'c6', 'e3', 'Nbd7', 'Nc3', 'e6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'c4', 'g6'], ['e4', 'c5', 'Nc3', 'g6', 'd4', 'cxd4', 'Qxd4', 'Nf6', 'Bc4', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'Bd3', 'dxe4', 'Bxe4', 'Nf6'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Qxd4', 'Nf6', 'e5', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4', 'Qxd4', 'e6'], ['e4', 'c5', 'd3', 'g6', 'g3', 'Bg7', 'Bg2', 'Nc6', 'Ne2', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bb4+', 'c3', 'dxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Nf6', 'e5', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'Bc4', 'exd4', 'e5', 'Ne4'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nc3', 'g6', 'd3', 'Bg7', 'h3', 'Nf6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Bxf7+', 'Kxf7', 'Qh5+', 'g6', 'Qxc5', 'Bg7'], ['e4', 'g6', 'Ne2', 'Bg7', 'd4', 'e6', 'Ng3', 'c6', 'f4', 'Na6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'd6', 'c3', 'dxc3'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Bc5', 'Nc3', 'Nc6', 'a3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Be2', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'd3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Nc3', 'Nf6', 'd4', 'Bd7'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'd5', 'Bg7', 'h3', 'e6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'e6', 'Nc3', 'Nf6', 'e3', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7', 'd5', 'Nce7'], ['e4', 'e5', 'Qh5', 'Qe7', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4', 'Qxd4', 'b6'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Bc4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'd4', 'd6', 'dxe5', 'dxe5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7', 'Bxc6', 'Bxc6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f3', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Bc4', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'exd6', 'Nxd6'], ['d4', 'g6', 'c4', 'Bg7', 'Nc3', 'Nf6', 'e4', 'd5', 'cxd5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'Nf3', 'Nxe4', 'Be2', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd6', 'Bxc6+', 'bxc6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Be3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'd6', 'O-O', 'Nf6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Bg4', 'Nc3', 'Nf6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Bb4', 'e3', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd4', 'exd4', 'Nxd4', 'g6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'Bb4+'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Bg5', 'Be7', 'cxd5', 'exd5'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'dxc4', 'a4', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd4', 'exd4', 'Nxd4', 'g6'], ['d4', 'e6', 'c4', 'b6', 'Nc3', 'Bb7', 'e4', 'Ne7', 'Be3', 'Ng6'], ['d4', 'c6', 'c4', 'd5', 'Nf3', 'Nf6', 'Nc3', 'Nbd7', 'Bf4', 'Nh5'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'e4', 'e6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'f5', 'Nf3', 'Nf6', 'g3', 'c6'], ['f4', 'd5', 'd4', 'Nf6', 'e3', 'Bg4', 'Nf3', 'e6', 'Bd3', 'c5'], ['Nf3', 'Nf6', 'c4', 'e6', 'b3', 'd5', 'e3', 'Be7', 'Bb2', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'c6', 'Bg5', 'Nbd7'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'Nf3', 'Be7', 'Bg5', 'O-O'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Be7', 'Re1', 'd6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'e3', 'O-O', 'Ne2', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'dxc6', 'd3', 'Bd6'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'Nf6', 'e3', 'Ne4', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bc5', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'c5', 'd5', 'exd5', 'cxd5', 'a6'], ['d4', 'd5', 'Nf3', 'Bg4', 'c4', 'Bxf3', 'exf3', 'e5', 'dxe5', 'd4'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'Nc3', 'Bb7', 'Qc2', 'Bb4'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'g6', 'Bb5', 'Bg7', 'Nf3', 'Nge7'], ['d4', 'b6', 'e4', 'Bb7', 'Nc3', 'e6', 'f3', 'Bb4', 'Ne2', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['e4', 'e6', 'Nc3', 'd5', 'Nf3', 'Nf6', 'e5', 'Nfd7', 'd4', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Be7', 'Re1', 'd6'], ['d4', 'e6', 'Bf4', 'f5', 'e3', 'd5', 'Nf3', 'c6', 'c4', 'Nf6'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'd4', 'Nc6', 'Nf3', 'Bb4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Bd7'], ['d4', 'd5', 'c4', 'Nc6', 'Nc3', 'Nf6', 'Bf4', 'e6', 'e3', 'Bb4'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'cxd5', 'exd5', 'Bg5', 'Bb4'], ['d3', 'e6'], ['d3', 'e6'], ['d3', 'e6'], ['d3', 'f6'], ['d3', 'd6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Bb5', 'cxd4'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Qe7', 'Nxd5', 'Qxe2+'], ['e3', 'e6'], ['e3', 'e6'], ['d3', 'e6'], ['d3', 'f6'], ['d3', 'e6'], ['d3', 'e6'], ['d3', 'e6'], ['d4', 'e6'], ['d3', 'e6'], ['c3', 'e6'], ['d4', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Nc3', 'Nf6', 'Bf4', 'Nc6'], ['d4', 'e6'], ['d4', 'e6'], ['d3', 'e6'], ['d4', 'e6'], ['d4', 'e6'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be7', 'Bb5+', 'c6'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'Nf6', 'cxd5', 'Nxd5', 'Nxd5', 'Qxd5'], ['d3', 'd6', 'e4', 'g6', 'b3', 'Bg7', 'd4', 'c5', 'Bb2', 'Nc6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Nc3', 'Nc6', 'Bb5', 'Bb4'], ['d4', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Nc3', 'Nf6', 'Bf4', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'Qg4', 'Kf8'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f4', 'O-O'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'd4', 'Nc6', 'Nf3', 'Bb4'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'cxb5', 'a6', 'bxa6', 'Bxa6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f4', 'O-O'], ['c3', 'e6', 'e3', 'f5', 'd4', 'd5', 'Qa4+', 'c6', 'Nf3', 'Nf6'], ['b4', 'g6', 'Bb2', 'Nf6', 'e3', 'Bg7', 'g3', 'O-O', 'Bg2', 'd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f4', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c6', 'cxd5', 'cxd5', 'Bf4', 'Bd6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Be3', 'cxd4'], ['d4', 'e6', 'c4', 'f5', 'Nc3', 'Nf6', 'g3', 'd5', 'cxd5', 'exd5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'cxd4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nc6', 'Nf3', 'Bb4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'cxd5', 'exd5', 'a3', 'Bxc3+'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'Nf6', 'e3', 'b5', 'a4', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Na5', 'Bb3', 'Bc5'], ['d4', 'e6', 'c4', 'd5', 'Nf3', 'Nf6', 'Bg5', 'Be7', 'e3', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'c5', 'Bc4', 'e6', 'a4', 'Nc6', 'c3', 'Nge7', 'Nf3', 'd5'], ['e4', 'e5', 'Nf3', 'Bb4', 'c3', 'Nf6', 'cxb4', 'Nxe4', 'Qe2', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bc5', 'c3', 'Nge7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Be6', 'dxc5', 'Qa5+', 'Nc3', 'Qxc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'Bd3', 'Bc5', 'O-O', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Bg5', 'Be7', 'e3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'd6', 'Bb5', 'Bd7', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'c3', 'Nf6', 'd3', 'Be6'], ['b3', 'd5', 'Bb2', 'Nf6', 'Nf3', 'e6', 'e3', 'b6', 'd4', 'Bb7'], ['c4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'g3', 'O-O', 'Bg2', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'Qf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Bg4', 'd4', 'Nf6'], ['d4', 'f6', 'c3', 'g5', 'e4', 'Na6', 'f4', 'Rb8', 'fxg5', 'Ra8'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Be3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bg4', 'd4', 'exd4'], ['d4', 'Nf6', 'Bf4', 'Nc6', 'e3', 'd5', 'c3', 'e6', 'Nf3', 'Be7'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'c6', 'a4', 'Bd7', 'e4', 'b5'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Bc5', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bxb4', 'c3', 'Ba5'], ['d4', 'c5', 'dxc5', 'e6', 'Nf3', 'Bxc5', 'e4', 'Nf6', 'Nbd2', 'Qb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'a6', 'Ba4', 'Bd7'], ['h4', 'd5', 'g3', 'Nc6', 'Bh3', 'Bxh3', 'Nxh3', 'e5', 'e3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Nd7', 'Nf3', 'Nb6', 'Be2', 'g6'], ['d4', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'Nf3', 'O-O', 'O-O', 'd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'O-O'], ['d4', 'Nf6', 'd5', 'g6', 'Nc3', 'e6', 'dxe6', 'dxe6', 'Qxd8+', 'Kxd8'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['g3', 'Nf6', 'Bg2', 'g6', 'b3', 'Bg7', 'Bb2', 'O-O', 'Nf3', 'Nc6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nf6', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'd6', 'd4', 'Bb6'], ['e4', 'g6', 'Nf3', 'Bg7', 'Bc4', 'e6', 'O-O', 'Ne7', 'Re1', 'O-O'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Nc6', 'b3', 'a6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'c6', 'Nf3', 'Be7'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Nf6', 'Nxf6+', 'Qxf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'Nc3', 'Nc5'], ['c4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'b6', 'Nb5', 'Bb7', 'd4', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'Nxe5', 'Bf4', 'Nxf3+'], ['d4', 'e6', 'Nf3', 'Bb4+', 'c3', 'Ba5', 'b4', 'Bb6', 'Na3', 'Nc6'], ['d4', 'e6', 'e3', 'Nc6', 'Nc3', 'Nf6', 'Nf3', 'Bb4', 'Qd2', 'Nd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'd5', 'Nce7', 'c4', 'Nf6'], ['d4', 'd5', 'Nc3', 'c6', 'e4', 'dxe4', 'Nxe4', 'e6', 'Bg5', 'Qb6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'Bb5', 'Bd7', 'd5', 'Nb4'], ['d4', 'e6', 'Nf3', 'd5', 'Nc3', 'Nf6', 'e3', 'Bb4', 'Bd2', 'Ne4'], ['e4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Ne5', 'Qf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'b3', 'd5', 'Bb5+', 'c6'], ['d4', 'b6', 'Nc3', 'Bb7', 'e4', 'Na6', 'Nf3', 'e6', 'd5', 'Qe7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'd4', 'Be6'], ['d4', 'Nf6', 'Nc3', 'h6', 'Nf3', 'd5', 'e3', 'e6', 'Bb5+', 'Bd7'], ['d4', 'e6', 'e4', 'Qh4', 'g3', 'Qxe4+', 'Qe2', 'Qxh1', 'f3', 'Qxg1'], ['d4', 'f5', 'Nc3', 'Nf6', 'Nf3', 'Ne4', 'Ne5', 'd6', 'Nc4', 'Be6'], ['e4', 'e5', 'Qf3', 'Nf6', 'd4', 'exd4', 'Bc4', 'Nc6', 'Qf4', 'Bd6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'h6', 'Ne5', 'Bf5', 'e3', 'e6'], ['d4', 'd5', 'Nc3', 'c6', 'e4', 'e6', 'Nf3', 'f6', 'e5', 'Qc7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'c3', 'Nf6', 'Be2', 'Nxe4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'dxe5', 'Bb5', 'Qxd1+'], ['d4', 'd5', 'Nc3', 'e5', 'e4', 'exd4', 'Qxd4', 'dxe4', 'Qxe4+', 'Be7'], ['d3', 'e5', 'Nf3', 'd6', 'd4', 'e4', 'Nfd2', 'e3', 'fxe3', 'Qh4+'], ['e4', 'e5', 'Qf3', 'Nc6', 'Bc4', 'Qe7', 'b3', 'Nd4', 'Qd1', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Ng5', 'Be6', 'Nxe6', 'fxe6'], ['d4', 'e6', 'Nc3', 'Bc5', 'Nf3', 'Nf6', 'Na4', 'O-O', 'Nxc5', 'd6'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nc6', 'Bc4', 'e6', 'O-O', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'h3', 'e6', 'c3', 'Nc6', 'd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Bc4', 'e6', 'd3', 'Nc6', 'Nf3', 'd6', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Qc7', 'Nc3', 'a6'], ['d4', 'Nf6', 'Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'd6', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'a6', 'Nc3', 'c5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Bd3', 'O-O'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'Nf6', 'Bd2', 'c6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Bd3', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Be3', 'Bg7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf3', 'Nf6'], ['Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'd6', 'd4', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bb4+', 'c3', 'Ba5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'b4', 'Bb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Bc5', 'Nc3', 'O-O', 'Bc4', 'd6'], ['Nf3', 'e5', 'Nxe5', 'Nf6', 'h3', 'Bc5', 'd4', 'O-O', 'dxc5', 'd6'], ['b3', 'e5', 'd4', 'Nf6', 'dxe5', 'Bc5', 'Bb2', 'O-O', 'Ba3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'O-O', 'Bg4', 'c3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Bc5', 'd3', 'O-O', 'O-O', 'c6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'O-O', 'Nf6', 'c3', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3'], ['e4', 'c6', 'Nf3', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg4'], ['d4', 'c6', 'c4', 'b5', 'c5', 'd6', 'b4', 'dxc5', 'bxc5', 'Nd7'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'g3', 'c5'], ['e4', 'c5', 'Nc3', 'e6', 'Bc4', 'a6', 'a4', 'Nc6', 'Nf3', 'd6'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nb6', 'Nf3', 'h6'], ['e4', 'c5', 'Nc3', 'e6', 'f4', 'd5', 'Bb5+', 'Bd7', 'Nf3', 'Bxb5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'e3', 'Bf5', 'cxd5', 'cxd5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Be7', 'Bf4', 'O-O'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb3', 'Bf5', 'd3', 'e6'], ['d4', 'd5', 'Nf3', 'Nf6', 'Nc3', 'Bf5', 'Ne5', 'e6', 'e3', 'Be7'], ['d4', 'c5', 'd5', 'f6', 'Nf3', 'e5', 'e4', 'd6', 'c4', 'f5'], ['c4', 'Nf6', 'Nc3', 'd6', 'g3', 'g6', 'Bg2', 'Bg7', 'Nf3', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Nf3', 'd6', 'Bg5', 'h6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Bf5', 'c3', 'e6', 'Qb3', 'b6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'Bd2', 'c5'], ['d4', 'e5', 'dxe5', 'Nc6', 'e4', 'Nxe5', 'Nc3', 'Nf6', 'f4', 'Nc4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'e5', 'dxe5', 'Nxe5', 'e6'], ['d4', 'Nc6', 'Bf4', 'Nf6', 'd5', 'Nb4', 'Nc3', 'e6', 'd6', 'Bxd6'], ['d4', 'd5', 'Bf4', 'c5', 'e3', 'Nf6', 'Nf3', 'Nc6', 'c3', 'cxd4'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Nc6', 'Nf3', 'Bf5', 'Bd3', 'e6'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'Nc6', 'e3', 'Nf6', 'Nbd2', 'a5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'Nf6', 'e3', 'e6', 'Bd3', 'd5', 'Nd2', 'c5', 'c3', 'Nbd7'], ['d4', 'Nf6', 'Nf3', 'e6', 'Bg5', 'Be7', 'Nbd2', 'd5', 'e3', 'O-O'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'Bg7', 'dxc5', 'Qa5+', 'c3', 'Qxc5'], ['d4', 'd5', 'Nf3', 'c5', 'Nbd2', 'e6', 'e3', 'Nc6', 'Bd3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Bc5', 'Nxf7', 'Bxf2+'], ['d4', 'd5', 'Nf3', 'Nf6', 'Nbd2', 'e6', 'e3', 'Bb4', 'Bd3', 'O-O'], ['d4', 'd5', 'Nf3', 'Nc6', 'Nbd2', 'e6', 'e3', 'Nf6', 'Bd3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'Nc3', 'Nf6'], ['d4', 'd5', 'Nf3', 'e6', 'Nbd2', 'f5', 'e3', 'Nf6', 'Bd3', 'Bd6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Bf5', 'Nc3', 'e6'], ['c4', 'e5', 'Nc3', 'd6', 'e3', 'Nc6', 'a3', 'Nf6', 'h3', 'g6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'cxd4', 'cxd4', 'Nc6'], ['e4', 'e5', 'Nc3', 'Bc5', 'd3', 'Qh4', 'Nh3', 'd6', 'a3', 'Bxh3'], ['e4', 'e5', 'h3', 'Bc5', 'a3', 'Qf6', 'Ne2', 'Bxf2#'], ['e4', 'e5', 'h3', 'Bc5', 'a3', 'Qf6', 'Nc3', 'Qxf2#'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'Bb4', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nf6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['e4', 'e5', 'Nc3', 'Nf6', 'f4', 'exf4', 'Nf3', 'Nc6', 'Bc4', 'd6'], ['d4', 'g6', 'c4', 'd6', 'Nc3', 'Bg7', 'e4', 'e5', 'd5', 'f5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'd5', 'Nf3', 'dxc4'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f4', 'O-O'], ['e4', 'd6', 'd4', 'Nd7', 'f4', 'e5', 'Nf3'], ['e4', 'd6', 'd4', 'Nd7', 'Nc3', 'e5', 'Nf3', 'Ngf6', 'Bc4', 'h6'], ['e4', 'd6', 'd4', 'Nd7', 'f4', 'e5', 'Nf3', 'Ngf6', 'Nc3', 'Be7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f4', 'O-O'], ['e4', 'd6', 'Nf3', 'e5', 'Bc4', 'Nd7', 'd3', 'Ngf6', 'Ng5', 'd5'], ['d4', 'd6', 'c4', 'Nd7', 'Nc3', 'c5', 'd5', 'g6', 'e4', 'Bg7'], ['d4', 'Nc6', 'c4', 'e5', 'd5', 'Nce7', 'e4', 'Nf6', 'Nc3', 'Ng6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'Nf3', 'Nf6', 'e3', 'Bb4'], ['e4', 'd6', 'd4', 'Nd7', 'Nc3', 'e5', 'Nf3', 'Ngf6', 'Bc4', 'Be7'], ['e4', 'd6', 'd4', 'Nd7', 'Nc3', 'Ngf6', 'Be3', 'e5', 'd5', 'Be7'], ['d4', 'd6', 'e4', 'Nd7', 'Nc3', 'Ngf6', 'Bc4', 'e5', 'Be3', 'Be7'], ['d4', 'c5', 'd5', 'Nf6', 'c4', 'b5', 'e4', 'Nxe4', 'cxb5', 'a6'], ['e4', 'd6', 'd4', 'Nd7', 'f4', 'e5', 'Nf3', 'Ngf6', 'Bd3', 'Be7'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'Nf3', 'Bb4', 'Bd2', 'O-O'], ['e4', 'd6', 'Nc3', 'Nd7', 'd4', 'e5', 'f4', 'Ngf6', 'Nf3', 'Be7'], ['d4', 'd6', 'c4', 'Nc6', 'Nc3', 'a6', 'e4', 'e5', 'd5', 'Nce7'], ['e4', 'd6', 'Nf3', 'Nd7', 'd4', 'e5', 'd5', 'Ngf6', 'Nc3', 'b6'], ['e4', 'd6', 'd3', 'Nd7', 'c3', 'Ngf6', 'f4', 'e5', 'f5', 'Nxe4'], ['e4', 'd6', 'd4', 'Nd7', 'Nd2', 'Ngf6', 'Bd3', 'e5', 'c3', 'Be7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f4', 'Nbd7'], ['c4', 'e5', 'Nc3', 'Nc6', 'g3', 'Nf6', 'Nf3', 'Bc5', 'Nxe5', 'Bxf2+'], ['e3', 'e5', 'd3', 'd5', 'Be2', 'f5', 'f3', 'c5', 'g3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'd4', 'exd4'], ['d4', 'd5', 'Nc3', 'Nf6', 'f3', 'e6', 'e4', 'Bb4', 'e5', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Nge7'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nf6', 'Bg5', 'Nc6', 'e3', 'g6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'Bf5', 'e3', 'Nc6', 'a3', 'a5'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qf3', 'Nc6', 'Bb5', 'Nd4', 'Qd3', 'Nxb5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'a6', 'Ng5', 'Qxg5', 'd4', 'Qxg2'], ['e4', 'e6', 'Nf3', 'g6', 'Ng5', 'Qxg5', 'd4', 'Qe7', 'Nc3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bb4', 'd3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bxc3'], ['e4', 'e5', 'f4', 'd6', 'Bc4', 'Nf6', 'Nc3', 'Nxe4', 'Nxe4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nh6', 'O-O', 'Na5', 'Nxe5', 'd6'], ['d4', 'd5', 'e3', 'c5', 'c3', 'cxd4', 'cxd4', 'Nf6', 'f3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bb4', 'O-O', 'O-O'], ['e4', 'e6', 'Nf3', 'Nf6', 'Bd3', 'c5', 'Nc3', 'a6', 'O-O', 'Nc6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bc4', 'Bxc3'], ['e4', 'c5', 'Bc4', 'b6', 'Nf3', 'e6', 'Ng5', 'a6', 'Qf3', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Bb4+', 'c3', 'Bc5', 'Ng5', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nc6', 'Nf3', 'Bf5', 'Bf4', 'Qd7'], ['e4', 'e5', 'Nc3', 'd6', 'Nf3', 'h6', 'Bc4', 'a6', 'O-O', 'Nc6'], ['d4', 'd5', 'Nc3', 'Nc6', 'e3', 'Nf6', 'g3', 'Bf5', 'Bg2', 'Nb4'], ['e4', 'c6', 'Nc3', 'e6', 'Nf3', 'Bb4', 'a3', 'Bxc3', 'dxc3', 'd5'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nc6', 'Nf3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bb4', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Ng5', 'Qxg5', 'd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Ng5', 'O-O'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Bc5', 'Nxe5', 'O-O', 'Bd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'O-O', 'O-O'], ['e3', 'e5', 'h4', 'Nf6', 'Nf3', 'Nc6', 'b3', 'Bc5', 'Bb2', 'O-O'], ['e4', 'e5', 'Nf3', 'd5', 'd4', 'exd4', 'Nxd4', 'dxe4', 'Nc3', 'Bc5'], ['e4', 'c5', 'Nc3', 'a6', 'Bc4', 'e6', 'd4', 'cxd4', 'Qxd4', 'Nc6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Qh4', 'Qf3', 'Nd4'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'a6', 'Bc4', 'h6', 'O-O', 'b5'], ['g3', 'e5', 'Bg2', 'Nf6', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qa4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Ng5', 'Qxg5', 'd4', 'Bxd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nxe4', 'Nxe5', 'd5', 'Qf3', 'Be6'], ['e4', 'e5', 'Bc4', 'g6', 'Nf3', 'f6', 'd4', 'Nc6', 'dxe5', 'Nxe5'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'd4', 'Nf6', 'e5', 'Nd5'], ['d4', 'e6', 'c4', 'd5', 'Nf3', 'dxc4', 'Nc3', 'Bb4', 'e4', 'b5'], ['e4', 'b6', 'Bc4', 'Bb7', 'Qf3', 'e6', 'd4', 'f5', 'Qe3', 'fxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bc5', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'd6'], ['g3', 'd5', 'Nf3', 'Nf6', 'Bg2', 'Bf5', 'O-O', 'e6', 'c4', 'c6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Nd7', 'Bf4', 'Bxf3'], ['d4', 'g6', 'c4', 'Bg7', 'Nf3', 'c5', 'e3', 'Nf6', 'Nc3', 'd5'], ['d4', 'Nf6', 'Bg5', 'Nd5', 'e4', 'h6', 'exd5', 'hxg5', 'Nf3', 'g4'], ['d4', 'd5', 'Nf3', 'e6', 'Bg5', 'Nf6', 'Nbd2', 'Nbd7', 'e3', 'h6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Bd3', 'Bc5'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'e6', 'd4', 'Bb4', 'Bd3', 'Nf6'], ['c4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e5', 'g3', 'Nf6', 'Bg2', 'd6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Bb4', 'Bg5', 'h6'], ['e4', 'c6', 'Nc3', 'd5', 'Nf3', 'Bg4', 'h3', 'Bh5', 'exd5', 'cxd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'c6', 'Nf3', 'g6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'd3', 'd5', 'a3', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd3', 'h6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nc3', 'd6', 'Bc4', 'a6', 'd3', 'b5'], ['d4', 'd5', 'Bf4', 'Nf6', 'Nf3', 'Nc6', 'e3', 'Bg4', 'Be2', 'e6'], ['e4', 'c5', 'Nc3', 'e6', 'Nf3', 'Nf6', 'd3', 'Be7', 'Be2', 'O-O'], ['g3', 'e5', 'Bg2', 'd5', 'd3', 'Nf6', 'Nf3', 'Nc6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Nf6', 'Re1', 'Be7'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bc4', 'e6', 'Nf3', 'a6', 'a3', 'd6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'cxd4', 'cxd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Be2', 'Nf6', 'h3', 'Bd7'], ['e4', 'e5', 'Bb5', 'Nf6', 'd3', 'Nc6', 'c3', 'a6', 'Ba4', 'd6'], ['e4', 'c5', 'Nc3', 'e6', 'Nf3', 'a6', 'd3', 'd5', 'exd5', 'exd5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'h6', 'Nxe5', 'Nxe4', 'Nxf7', 'Qh4'], ['e4', 'g6', 'd4', 'Bg7', 'Nc3', 'e6', 'Nf3', 'd5', 'e5', 'Ne7'], ['e4', 'e5', 'g3', 'Nc6', 'Bg2', 'Nf6', 'd3', 'd6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'h6'], ['e4', 'd5', 'd3', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'Bg4+', 'f3', 'Bd7'], ['e4', 'e5', 'd4', 'f6', 'Nf3', 'Bb4+', 'Bd2', 'Be7', 'dxe5', 'fxe5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'h6', 'Bc4', 'Nf6', 'd3', 'g5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'Bc5', 'h3', 'd6'], ['d3', 'c5', 'Nc3', 'd5', 'Bf4', 'Nc6', 'e4', 'e5', 'Bg3', 'd4'], ['b4', 'e6', 'Bb2', 'Nf6', 'a3', 'd6', 'e3', 'c5', 'bxc5', 'dxc5'], ['d3', 'e5', 'Nc3', 'd5', 'h4', 'Be7', 'Bg5', 'Bxg5', 'hxg5', 'Qxg5'], ['e4', 'e6', 'f4', 'Nf6', 'e5', 'Nd5', 'Nf3', 'Nxf4', 'd4', 'd5'], ['d3', 'g5', 'Nc3', 'Bg7', 'Bxg5', 'd6', 'e4', 'Nc6', 'd4', 'Nxd4'], ['b4', 'e6', 'Bb2', 'Nf6', 'a3', 'd5', 'e3', 'Nc6', 'b5', 'Na5'], ['b4', 'e6', 'Bb2', 'Nf6'], ['d3', 'Nf6', 'e4', 'Nc6', 'Nc3', 'd5', 'e5', 'Nxe5', 'd4', 'Nc6'], ['g4', 'e6', 'Bg2', 'Ne7', 'd3', 'd5', 'Bg5', 'f6', 'Bh4', 'Ng6'], ['d3', 'c6', 'Nc3', 'd6', 'Bf4', 'Nf6', 'e3', 'h5', 'Nf3', 'Bg4'], ['b4', 'e6', 'Bb2', 'Nf6', 'a3', 'Be7', 'e3', 'd5', 'Nf3', 'O-O'], ['d3', 'c6', 'Nc3', 'e5', 'e4', 'd5', 'exd5', 'cxd5', 'f3', 'Bb4'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nc6', 'Nf3', 'd6'], ['c4', 'e5', 'g3', 'c6', 'Bg2', 'd5', 'cxd5', 'cxd5', 'Nc3', 'Nf6'], ['e4', 'e5', 'f4', 'exf4', 'Bc4', 'Bc5', 'Bxf7+', 'Kxf7', 'Qh5+', 'g6'], ['e4', 'e5', 'f4', 'exf4', 'Bc4', 'Qh4+', 'Kf1', 'Bc5', 'd4', 'Bb6'], ['d4', 'g6', 'e4', 'd6', 'Nf3', 'Bg7', 'Nc3', 'Nf6', 'Bd3', 'b6'], ['d4', 'e6', 'Bf4', 'd5', 'Nf3', 'h6', 'e3', 'Ne7', 'c3', 'a6'], ['e4', 'e6', 'c3', 'd5', 'e5', 'c5', 'd4', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e5'], ['e3', 'e5'], ['e3', 'd5', 'd3', 'Nc6', 'Qh5', 'Be6', 'Qxh7', 'Rxh7'], ['e3', 'e5', 'd3', 'd5', 'Be2', 'f5', 'Bd2', 'Nf6', 'Nf3', 'Nc6'], ['e3', 'c5', 'd3', 'e5'], ['e3', 'e5'], ['e3', 'e6'], ['e3', 'e5'], ['b4', 'd6', 'Bb2', 'e6', 'a3'], ['e4', 'd6', 'd4', 'e6', 'Nf3', 'Bd7', 'Nc3', 'Be7', 'e5', 'Nc6'], ['e3', 'd6', 'd3', 'Nc6', 'Be2', 'Nf6', 'Bd2', 'Bd7', 'Nf3', 'e5'], ['e3', 'e5', 'd3', 'd5', 'Be2', 'Nf6', 'Bd2', 'Nc6', 'Nf3', 'Bg4'], ['d4', 'd6', 'c4', 'e6', 'e4', 'Bd7', 'Nf3', 'Be7', 'Nc3', 'Nc6'], ['e3', 'e5', 'd3', 'd5', 'Be2', 'Nf6', 'Bd2', 'Nc6', 'Nf3', 'e4'], ['f4', 'd6', 'e4', 'e6', 'd4', 'Bd7', 'Nf3', 'Be7', 'Bd3', 'Nc6'], ['e3', 'e5', 'd3', 'd5', 'Be2', 'd4', 'Bd2', 'dxe3', 'Bxe3', 'h6'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'b6', 'e4', 'Bb7', 'Bd3', 'Nc6'], ['Nf3', 'Nf6', 'd4', 'd5', 'Bg5', 'e6', 'e3', 'Be7', 'c4', 'O-O'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nc6', 'Be2', 'Nf6', 'd3', 'e6'], ['Nf3', 'c5', 'g3', 'Nc6', 'Bg2', 'g6', 'O-O', 'Bg7', 'c4', 'Nf6'], ['Nf3', 'd5', 'g3', 'c5', 'Bg2', 'Nc6', 'O-O', 'Nf6', 'd4', 'b6'], ['c4', 'g6', 'Nc3', 'Bg7', 'd4', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Nc6'], ['Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'e5', 'd3', 'd5', 'O-O', 'Ne7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'O-O', 'Bg4'], ['e4', 'd6', 'Bc4', 'e5', 'Qf3', 'f6', 'Nh3', 'Bxh3', 'gxh3', 'g5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Bg4', 'Be2', 'h5', 'Nc3', 'Qe6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Ng5', 'e6', 'Be2', 'd5'], ['e4', 'e6', 'd4', 'c5', 'dxc5', 'Bxc5', 'Nf3', 'Qb6', 'Be3', 'Bxe3'], ['d4', 'd6', 'Nf3', 'e5', 'dxe5', 'dxe5', 'Nfd2', 'Bb4', 'c3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e6', 'd4', 'd6', 'Nf3', 'Nf6', 'e5', 'dxe5', 'Nxe5', 'Qe7'], ['e4', 'e5', 'Bc4', 'Nf6', 'Qf3', 'c6', 'g4', 'd5', 'exd5', 'cxd5'], ['g3', 'e5', 'Bg2', 'd6', 'd4', 'exd4', 'Qxd4', 'c5', 'Qa4+', 'Bd7'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['h4', 'e5', 'g3', 'd5', 'f4', 'Nc6', 'Bh3', 'f5', 'Bg2', 'e4'], ['g3', 'e5', 'f4', 'exf4', 'gxf4', 'Qh4#'], ['g4', 'd5', 'f3', 'd4', 'e4', 'e5', 'Bc4', 'c5', 'Bb5+', 'Bd7'], ['f4', 'd5', 'd3'], ['e4', 'd5', 'e5', 'c6', 'd4', 'c5', 'dxc5'], ['e4', 'd6', 'd3', 'c6'], ['e4', 'a5', 'a4', 'c6', 'd4', 'd5', 'Nc3', 'Qd6', 'Bd2', 'Qg6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'e6', 'e3', 'Nbd7'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'dxc4', 'e3', 'Be6', 'Qf3', 'Bg4'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'g3', 'Ba6', 'b3', 'Bb4+'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Nf3', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Bc4', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Bd7', 'Bg5', 'h6', 'Bh4', 'b5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'Be3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'd4', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'bxc6', 'd3', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'd4', 'Ngf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nf6', 'e5', 'dxe5', 'dxe5', 'Qxd1+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bd6'], ['e4', 'c5', 'd3', 'd6', 'c3', 'Nf6', 'g3', 'e6', 'Bg2', 'Be7'], ['e4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'd6', 'Be2', 'Be7', 'O-O', 'Nbd7'], ['e4', 'c5', 'b3', 'd6', 'Bb2', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'e6'], ['e4', 'c5', 'Qh5', 'd6', 'Bc4', 'e6', 'Nf3', 'Nf6', 'Qh3', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'Nf3', 'Qxe4+', 'Be2', 'Bc5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'Nf6', 'Be3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'a6', 'd3', 'b5', 'Bd5', 'c6'], ['g3', 'e5', 'Bg2', 'd5', 'Nf3', 'Nc6', 'd4', 'e4', 'Ng5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'd6', 'dxe5', 'dxe5'], ['e4', 'c5', 'Nf3', 'Nf6', 'e5', 'Nd5', 'd4', 'e6', 'c4', 'Nb6'], ['e4', 'b6', 'Nc3', 'Bb7', 'd4', 'a6', 'Bf4', 'd6', 'Nf3', 'h6'], ['d4', 'Nf6', 'Bf4', 'd5', 'e3', 'e6', 'c3', 'c5', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'd4', 'exd4', 'Qxd4', 'Bf6'], ['d4', 'Nf6', 'e3', 'd5', 'Be2', 'e6', 'Nf3', 'c5', 'c3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'd3', 'Nf6', 'Nc3', 'c5'], ['e4', 'c5', 'Nf3', 'e6', 'Bb5', 'Nc6', 'a3', 'a6', 'Ba4', 'b5'], ['e4', 'c5', 'f4', 'Nf6', 'e5', 'Nd5', 'Bc4', 'e6', 'Nf3', 'Nc6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'd3', 'a6', 'a3', 'b5'], ['d4', 'Nf6', 'Nf3', 'd5', 'c4', 'e6', 'Qa4+', 'Nc6', 'Ne5', 'Bd7'], ['d4', 'Nf6', 'e3', 'd5', 'h3', 'e6', 'Nf3', 'c5', 'b3', 'Nc6'], ['e4', 'c5', 'Bc4', 'e6', 'Qh5', 'Nc6', 'd3', 'a6', 'a3', 'b5'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'c6', 'dxc6', 'Nxc6', 'Nf3', 'Bf5'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bb5', 'e6', 'Bxc6', 'bxc6', 'd3', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Qb6', 'Nxc6', 'Qxc6'], ['e4', 'g5', 'd4', 'h6', 'Nf3', 'd6', 'h3', 'Nf6', 'Nc3', 'c6'], ['d4', 'd5', 'Nf3', 'Nc6', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'e6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Be2', 'Nf6', 'O-O', 'h6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'Nf6', 'Bc4', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'Re1', 'Nd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Nxe4'], ['e4', 'c6', 'd4', 'd6', 'd5', 'b6', 'c4', 'c5', 'Nc3', 'e5'], ['d4', 'd5', 'c4', 'Be6', 'Nf3', 'c5', 'e3', 'Qa5+', 'Bd2', 'Qc7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'dxc4', 'e4', 'Nf6', 'Bxc4', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'Bc5', 'd3', 'Nf6', 'Be3', 'Bxe3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e6', 'd4', 'c6', 'Nc3', 'd5', 'exd5', 'exd5', 'Nf3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'Nf6', 'Nc3', 'g6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxd4', 'exd4', 'O-O', 'Bd6'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qe5', 'Nf3', 'Qf5', 'e4', 'Qf6'], ['g4', 'c6', 'c3', 'Nf6', 'h3', 'd5', 'Nf3', 'Nbd7', 'Bg2', 'e5'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'e5', 'Ng4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Bc5', 'Nc3', 'd6', 'd3', 'c6'], ['e4', 'c5', 'c4', 'g6', 'Nc3', 'a6', 'Nf3', 'Bg7', 'd3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'c4', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd3', 'Nf6', 'Nc3', 'h6'], ['d4', 'd5', 'Nc3', 'c5', 'e3', 'Nc6', 'Nf3', 'Nf6', 'Bb5', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'c3', 'Bg4'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'h3', 'Nc6'], ['e4', 'c5', 'Bc4', 'd6', 'Qf3', 'Nf6', 'd3', 'Nc6', 'c3', 'g6'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'Bc5', 'Bg2', 'a6', 'a3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nd4'], ['c4', 'c5', 'Nf3', 'Nc6', 'd3', 'g6', 'b3', 'Bg7', 'd4', 'cxd4'], ['f4', 'd5', 'e3', 'Nc6', 'Nf3', 'Bg4', 'Be2', 'h5', 'O-O', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bg5', 'Nxe4'], ['c4', 'd6', 'd4', 'e5', 'd5', 'f6', 'Nc3', 'f5', 'e4', 'Na6'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qf5', 'e4', 'Qe5', 'd4', 'Qa5'], ['c4', 'c5', 'Nc3', 'g6', 'g3', 'Bg7', 'Bg2', 'Nf6', 'Nf3', 'Nc6'], ['c4', 'Nc6', 'g3', 'e5', 'Bg2', 'Nf6', 'Nc3', 'Bc5', 'Nf3', 'a6'], ['c4', 'd5', 'e3', 'dxc4', 'Bxc4', 'Nf6', 'Nc3', 'Nbd7', 'Nf3', 'Nb6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Bc4', 'Nc6', 'Nf3', 'g6'], ['d4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'd5'], ['c4', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'Nc3', 'O-O', 'Nf3', 'd6'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'c6', 'Nc3', 'Na6', 'd3', 'Bb4'], ['c4', 'e5', 'd3', 'Nf6', 'g3', 'd5', 'cxd5', 'Nxd5', 'Bg2', 'c6'], ['c4', 'c5', 'g3', 'e6', 'Bg2', 'Ne7', 'Nc3', 'Nbc6', 'Nf3', 'g6'], ['Nf3', 'd5', 'c4', 'dxc4', 'e4', 'Nf6', 'e5', 'Ng4', 'Bxc4', 'g6'], ['e4', 'e5', 'Qg4', 'Qf6', 'Bc4'], ['d3', 'd6', 'c4', 'c5', 'a3', 'a6', 'a4', 'a5', 'f4', 'f5'], ['d4', 'e5', 'Bd2', 'f6', 'Bc1', 'exd4', 'g4', 'h5', 'Bd2', 'hxg4'], ['d4', 'c6', 'f3', 'b6', 'e3', 'a6', 'e4', 'd6', 'd5', 'e6'], ['b3', 'e5', 'g3', 'e4', 'e3', 'd5', 'd3', 'exd3', 'cxd3', 'd4'], ['Nf3', 'e5', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Qd3', 'Nd5', 'Qc4', 'Nb6'], ['f4', 'b6', 'e4', 'd6', 'Bb5+', 'Qd7', 'Bxd7+', 'Bxd7', 'f5', 'e5'], ['d4', 'c6', 'Bd2', 'b5', 'Qc1', 'Ba6', 'Nc3', 'Nf6', 'h4', 'Nd5'], ['e4', 'e6', 'e5', 'Nc6', 'f4', 'Qh4+', 'g3', 'Qd8', 'c4', 'Nge7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Bxd4'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nf4', 'd4', 'c6', 'Bxf4'], ['e4', 'e6', 'Bc4', 'c5', 'Qf3', 'Nc6', 'd3', 'Nd4', 'Qd1', 'Qc7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'e5', 'dxe5'], ['e4', 'e6', 'Nf3', 'c5', 'Nc3', 'Nc6', 'Bb5', 'Qc7', 'a3', 'a6'], ['Nf3', 'Nf6', 'c4', 'Nc6', 'g3', 'e5', 'Bg2', 'd5', 'cxd5', 'Nxd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Bd7'], ['d4', 'Nf6', 'c4', 'g6', 'd5', 'Bg7', 'Nc3', 'e6', 'e4', 'exd5'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'Nc3', 'Nd4'], ['e4', 'e5', 'Nf3', 'Bb4', 'c3', 'Ba5', 'Nxe5', 'Qe7', 'd4', 'f6'], ['e4', 'e5', 'd3', 'Nf6', 'f4', 'exf4', 'Bxf4', 'Nc6', 'Nf3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd5', 'dxe5', 'dxe4', 'Qxd8+', 'Nxd8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nc3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Nxe4', 'Nxe4', 'd5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'Nf3', 'Bg7', 'Bg5', 'O-O'], ['e4', 'Nf6', 'e5', 'Ne4', 'd3', 'Nc5', 'd4', 'Ne6', 'Nf3', 'd6'], ['d4', 'Nf6', 'Nc3', 'g6', 'e4', 'd6', 'Bd3', 'Bg7', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['d4', 'Nf6', 'Nf3', 'g6', 'Nc3', 'd5', 'Bf4', 'Bg7', 'Be5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Nc6', 'Nf3', 'Qd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd4', 'Nxe4', 'dxe5', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'h6'], ['e4', 'c5', 'c3', 'Nf6', 'e5', 'Nd5', 'Nf3', 'Nc6', 'Bc4', 'Nb6'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4'], ['e4', 'c5', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'Nf6', 'Be3', 'cxd4'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Ne5'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4'], ['e4', 'c5', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'Nc6', 'Nf3', 'Bg4'], ['e4', 'c5', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'Nc6', 'Nf3', 'Nf6'], ['e4', 'c5', 'c3', 'Nf6', 'e5', 'Nd5', 'Nf3', 'Nc6', 'Bc4', 'Nb6'], ['e4', 'c5', 'c3', 'Nf6', 'e5', 'Nd5', 'Nf3', 'Nc6', 'Bc4', 'Nb6'], ['e4', 'c5', 'c3', 'Nf6', 'e5', 'Nd5', 'Nf3', 'Nc6', 'Bc4', 'Nb6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nf6', 'O-O', 'd5', 'Bb5+', 'Bd7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'b6'], ['e4', 'b6', 'd4', 'Bb7', 'Bd3', 'e6', 'Nf3', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'b6', 'd4', 'Bb7', 'Bd3', 'e6', 'Nf3', 'd6', 'Bd2', 'Nf6'], ['e4', 'b6', 'd4', 'Bb7', 'Bd3', 'e6', 'Nf3', 'Nc6', 'O-O', 'Nb4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c5', 'e5', 'Nc6', 'dxc5', 'Bxc5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'c5', 'c3', 'Nc6', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Bc5'], ['g3', 'd5', 'Bg2', 'Nf6', 'a3', 'e5', 'b4', 'Nc6', 'Bb2', 'e4'], ['e4', 'c5', 'Nc3', 'Nc6', 'g3', 'd6', 'Bg2', 'g6', 'f4', 'Bg7'], ['e4', 'c5', 'd3', 'Nc6', 'f4', 'g6', 'Nf3', 'Bg7', 'Be2', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'e5', 'dxe5', 'Nxe5', 'Qd5'], ['e4', 'c5', 'c3', 'd5', 'e5', 'Nc6', 'd4', 'Bf5', 'Be3', 'e6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'b6', 'f3', 'c5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bg4', 'Ne5', 'Bf5'], ['d4', 'e6', 'Nf3', 'd5', 'Bg5', 'f6', 'Bh4', 'g5', 'Bg3', 'Nc6'], ['d4', 'Nf6', 'Nf3', 'd5', 'Nc3', 'g6', 'Bg5', 'Bg7', 'e3', 'O-O'], ['d4', 'Nf6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'Bg5', 'e6', 'e3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Nf6', 'Ng5', 'd5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'Nf3', 'Bxc3+', 'bxc3', 'dxc4'], ['e4', 'c5', 'Qh5', 'd6', 'e5', 'd5', 'e6', 'Bxe6', 'd4', 'Nf6'], ['Nf3', 'c5', 'g3', 'Nc6', 'Bg2', 'e5', 'd3', 'Nf6', 'e4', 'd5'], ['d4', 'Nf6', 'Bf4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'd6', 'e4', 'Nbd7'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e5', 'Bxc4', 'exd4', 'exd4', 'Nf6'], ['d4', 'd5', 'Nf3', 'c6', 'h3', 'f5', 'Bf4', 'e6', 'e3', 'Nf6'], ['c4', 'c6', 'Nc3', 'd5', 'cxd5', 'cxd5', 'd4', 'e6', 'Bf4', 'Bd6'], ['e4', 'g6', 'd4', 'Bg7', 'Bf4', 'Nf6', 'Nc3', 'Nh5', 'Be3', 'Nc6'], ['e4', 'e6', 'Nc3', 'd5', 'd4', 'Nf6', 'Bd3', 'Be7', 'e5', 'Nfd7'], ['d4', 'g6', 'Bh6', 'Bg7', 'Bxg7'], ['c4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7'], ['d4', 'g6', 'Bf4', 'Bg7', 'Nc3', 'd6', 'e4', 'Nf6', 'Qd2', 'Nc6'], ['c4', 'c5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'g3', 'g6', 'Bg2', 'Bg7'], ['e4', 'd5', 'd4', 'dxe4', 'f3', 'exf3', 'Bf4', 'fxg2', 'Bxg2', 'Nc6'], ['d4', 'Nf6', 'Nf3', 'e5', 'dxe5', 'Ng4', 'Nc3', 'Nc6', 'Qd5', 'Bb4'], ['g3', 'd5', 'Bg2', 'e5', 'c4', 'c6', 'cxd5', 'cxd5', 'Qb3', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Qc7'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'Bb4+', 'Nbd2', 'c5', 'dxc5', 'Bxc5'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'a6', 'd4', 'cxd4', 'cxd4', 'Nf6'], ['d4', 'c6', 'c4', 'd6', 'Nf3', 'Nd7', 'g3', 'h6', 'Bg2', 'g5'], ['d4', 'f5', 'c4', 'g6', 'g3', 'Bg7', 'Bg2', 'Nf6', 'Nc3', 'c6'], ['g4', 'd5', 'g5', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3+', 'Be7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Bd3', 'Nc6'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'Nf6', 'Nc3', 'e6', 'g3', 'Bb4'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'b6', 'g3', 'Bb4+', 'Nbd2', 'Bb7'], ['d4', 'Nf6', 'Nf3', 'g6', 'e3', 'Bg7', 'Bd3', 'O-O', 'O-O', 'b6'], ['c4', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'Nc3', 'O-O', 'd4', 'c6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'g3', 'e6', 'Bg2', 'Bd6'], ['d4', 'Nf6', 'f4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'O-O', 'e4', 'd6'], ['d3', 'e5', 'Nc3', 'Nf6', 'Nf3', 'd5', 'Nxe5', 'Bb4', 'Bd2', 'Qe7'], ['d4', 'd5', 'c4', 'g6', 'Nf3', 'Bg7', 'g3', 'Nf6', 'Bg2', 'O-O'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'a6', 'Bd3', 'Qc7', 'O-O', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'c3', 'Nf6'], ['e4', 'c5', 'Nc3', 'Nc6', 'g3', 'g6', 'Bg2', 'Bg7', 'd3', 'e6'], ['d4', 'Nf6', 'Nf3', 'g6', 'c4', 'Bg7', 'g3', 'O-O', 'Bg2', 'd6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'c6', 'g3', 'dxc4', 'Bg2', 'Nf6'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'Nf3', 'O-O', 'Be2', 'd6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bg4', 'Ne5', 'Bf5'], ['e4', 'c5', 'f4', 'g6', 'Nf3', 'Bg7', 'c3', 'Nc6', 'Bc4', 'e6'], ['d4', 'Nf6', 'Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O', 'c4', 'd6'], ['d4', 'e6', 'e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Bb4', 'Ne2', 'Nf6'], ['e4', 'c5', 'a3', 'g6', 'b4', 'Bg7', 'Nc3', 'cxb4', 'axb4', 'Nc6'], ['d4', 'Nf6', 'Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O', 'O-O', 'c5'], ['e4', 'c5', 'Nf3', 'e6', 'Bc4', 'a6', 'd4', 'cxd4', 'Nxd4', 'b5'], ['d4', 'Nf6', 'Nf3', 'c5', 'd5', 'e6', 'c4', 'b5', 'dxe6', 'fxe6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'e6', 'Nf3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'e6'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Nc6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nd7', 'O-O', 'b6', 'Bd5', 'Rb8'], ['f4', 'Nf6', 'd3', 'd5', 'e3', 'g6', 'Nf3', 'Bg7', 'Be2', 'c5'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nc6', 'Bb5', 'a6'], ['e4', 'g5', 'd4', 'Bg7', 'e5', 'c5', 'c3', 'cxd4', 'cxd4', 'Nc6'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Nxd5', 'c4', 'Nb4', 'Qa4+', 'N8c6'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'Bf5', 'd4', 'e6', 'c3', 'Nd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'b4', 'Bb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Bc5', 'c3', 'd6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nf6', 'Nf3', 'Bg4'], ['e4', 'c5', 'd3', 'Nf6', 'g3', 'Nc6', 'Bg2', 'd5', 'Nc3', 'd4'], ['e4', 'c5', 'd3', 'e5', 'Nf3', 'd6', 'Be2', 'Nc6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Nf6', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'h6', 'O-O', 'g6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'a6', 'a4', 'e6', 'Nc3', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'h4', 'e6', 'g4', 'Be4'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Bd3', 'Nd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'e5', 'Bc4', 'h6', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'Nf6', 'O-O', 'Na5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'O-O', 'e3', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'e5', 'dxe5', 'Nxe5', 'Qc7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nxc6', 'bxc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'Bg4'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'h3', 'O-O', 'Nf3', 'd6'], ['e4', 'Nf6', 'e5', 'Ne4', 'd4', 'd5', 'Bd3', 'e6', 'Ne2', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Bd6', 'Nf3', 'Nxe4', 'Qe2', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nf6', 'Bg5', 'e6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'g3', 'Ba6', 'Qc2', 'c5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'b6', 'e4', 'c5', 'd5', 'exd5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'Bg5', 'Be7', 'e3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'd5'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'exd4', 'Nxd4', 'c5', 'Nb3', 'Qe7'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'e6', 'e3', 'b5', 'a4', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'e6', 'e3', 'c5', 'c3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'd6', 'O-O', 'Be7'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'e6', 'e3', 'Bd6', 'Ne5', 'c5'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'd3', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'c5', 'Nf3', 'd6', 'h3', 'Nf6', 'Nc3', 'g6', 'Bc4', 'Bg7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'a6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'e5', 'Qe7', 'd4', 'Nh5'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'Nc6', 'Bg2', 'Bb4', 'a3', 'Bxc3'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'd3', 'Nf6', 'h3', 'a6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Ne2', 'Nd7', 'Ng3', 'Bg6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'Nc3', 'b5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Be7', 'Nf3', 'Nf6', 'Bf4', 'O-O'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'Nf6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'O-O', 'f3', 'c5'], ['c4', 'Nf6', 'Nc3', 'g6', 'g3', 'e5', 'Nf3', 'Nc6', 'Bg2', 'Bb4'], ['c4', 'Nf6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'Nf3', 'Nc6', 'e3', 'Bg4'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nxc6', 'bxc6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nc6', 'c3', 'Nf6'], ['c4', 'e5', 'Nc3', 'f5', 'e3', 'Nf6', 'd4', 'e4', 'Nge2', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bg4'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'cxb5', 'a6', 'b6', 'd6'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'e3', 'Bc5', 'd4', 'exd4'], ['e4', 'c5', 'f4', 'e6', 'Nf3', 'd5', 'e5', 'Nc6', 'g3', 'Nge7'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'cxb5', 'a6', 'bxa6', 'Bxa6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e6', 'd3', 'd5', 'Nd2', 'c5', 'Ngf3', 'Nc6', 'Be2', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'c4', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'c5', 'c4', 'Nc6', 'Nc3', 'Nf6', 'Nf3', 'e6', 'd3', 'd5'], ['c4', 'c5', 'Nf3', 'g6', 'd4', 'Bg7', 'Nc3', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Bb5', 'Bd7'], ['d4', 'Nf6', 'c4', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Nc6', 'Nxc6', 'bxc6'], ['e4', 'c6', 'Ne2', 'd5', 'e5', 'c5', 'Ng3', 'Nc6', 'f4', 'g6'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'Nf6', 'e5', 'Nd5', 'Nxd5', 'exd5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'e3', 'Nc6', 'cxd5', 'exd5'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nce7', 'f4', 'Ng6', 'fxe5', 'Qh4+'], ['e4'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'c4', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nc6', 'Nf3', 'Bg4'], ['e4'], ['e4', 'h6', 'd4', 'g6', 'Nf3', 'Bg7', 'Be3', 'Nf6', 'e5', 'Nh5'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c4', 'e6', 'Nc3', 'Nf6'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'e6', 'Nc3', 'c5', 'cxd5', 'exd5'], ['f4', 'd5', 'Nf3', 'c5', 'Nc3', 'Nf6', 'e3', 'Bg4', 'Be2', 'Bxf3'], ['e4', 'e6', 'd3', 'd5', 'Nd2', 'Nf6', 'Ngf3', 'c5', 'g3', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Be7', 'f3', 'd6', 'e4', 'Nbd7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'Bd2', 'Ne7', 'exd5', 'Bxc3'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'Ne7', 'Nf3', 'c5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'Nf3', 'Bb4', 'Bg5', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'c6', 'Bg5', 'Nbd7'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'Nc3', 'Be7'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'g6', 'c3', 'Bg7', 'Nbd2', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'c5', 'd5', 'exd5', 'cxd5', 'g6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bg5', 'O-O'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Bf5', 'Qb3', 'Qb6', 'Qxb6', 'axb6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Be7', 'Bf4', 'O-O'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'e6', 'Bg5', 'Nbd7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'exd5', 'Bxc3+', 'bxc3', 'exd5'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nf3', 'Be7'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'c6', 'Nf3', 'd5', 'Bg5', 'Be7'], ['e4', 'e5', 'd4', 'Nc6', 'dxe5', 'Nxe5', 'Nf3', 'Nxf3+', 'Qxf3', 'Nf6'], ['e4', 'e6', 'd3', 'd5', 'exd5', 'exd5', 'Nc3', 'Qe7+', 'Be2', 'Nf6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'Nc6', 'Nxc3', 'Nf6'], ['e4', 'e5', 'd4', 'd6', 'dxe5', 'Be6', 'Nf3', 'Nc6', 'Bf4', 'f6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'd6'], ['e4', 'e5', 'g3', 'Nc6', 'Nf3', 'Nf6', 'Bg2', 'Nxe4', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'Nxe4', 'Nxe4', 'd5'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Be2', 'e5', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'd3', 'h6', 'c3', 'a6'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nf6', 'Nc3', 'c6', 'Nf3', 'Nbd7'], ['d4', 'c6', 'c4', 'd5', 'Nc3', 'Bf5', 'e3', 'e6', 'Nf3', 'Bb4'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nc6', 'Bb5', 'Bg4'], ['d4', 'c6', 'e4', 'd5', 'e5', 'Bf5', 'Nc3', 'e6', 'Nf3', 'Bb4'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nc3', 'e6', 'Nf3', 'Be7'], ['e4', 'c6', 'Nc3', 'd5', 'exd5', 'cxd5', 'd4', 'Nc6', 'f4', 'Bf5'], ['d4', 'Nf6', 'c4', 'e5', 'e3', 'c5', 'dxe5', 'Ne4', 'Qg4', 'd5'], ['c4', 'Nf6', 'Nc3', 'g6', 'g3', 'Bg7', 'Bg2', 'h5', 'd4', 'h4'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'b5', 'Nc3', 'Nc6', 'd5', 'Ne5'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'b5', 'Nf3', 'f6', 'Nc3', 'c6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'dxc4', 'e4', 'Bb4+', 'Nc3', 'e5'], ['d4', 'd5', 'c4', 'Nc6', 'cxd5', 'Qxd5', 'Nf3', 'Nf6', 'Nc3', 'Qd8'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb3', 'Nf6', 'Nc3', 'Bf5'], ['d4', 'e6', 'e4', 'd5', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'dxe4'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'g4', 'Bg6', 'f4', 'Be4'], ['d4', 'b6', 'e4', 'Bb7', 'Nc3', 'Nf6', 'Bd3', 'd5', 'e5', 'Ne4'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'Bg4', 'd4', 'e6', 'Be2', 'Bxf3'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'Nf6', 'h3', 'Bf5', 'Bd3', 'Bg6'], ['Nf3', 'd5', 'd4', 'Nf6', 'Nc3', 'Bf5', 'e3', 'e6', 'Be2', 'Nbd7'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'h6', 'Nc3', 'e6', 'Bf4', 'Bb4'], ['d4', 'e6', 'e4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'Bd3', 'O-O'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e6', 'Bxc4', 'Nc6', 'Nf3', 'Bb4+'], ['e4', 'e6', 'b3', 'd5', 'Bb2', 'c5', 'exd5', 'exd5', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Nf3', 'Qe7', 'Bc4', 'd6', 'd4', 'h6', 'O-O', 'Bg4'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'e5', 'dxe5', 'Nxe5', 'Qd5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Bg5', 'O-O', 'Nf3', 'd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'O-O', 'e4', 'd6'], ['e4', 'c5', 'c3', 'Nf6', 'd3', 'd6', 'Nf3', 'g6', 'Be3', 'Bg7'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Be3', 'Bg7', 'Qd2', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Be7', 'Nxd4', 'Nxd4'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['e4', 'c5', 'Nf3', 'a6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c4', 'Be6', 'c5', 'Nc6'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'c6', 'Nc3', 'e6', 'Bf4', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'c4', 'Nf6', 'Nf3', 'Be7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nf6', 'd3', 'Nc6', 'c3', 'd5'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e5', 'Nf3', 'exd4', 'Nxd4', 'c5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Qb6', 'c4', 'a6', 'Ba4', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Nf6', 'd4', 'e6'], ['e4', 'e6', 'Nf3', 'd5', 'Nc3', 'b6', 'd3', 'Ba6', 'g3', 'Bb4'], ['e4', 'd5', 'e5', 'e6', 'd4', 'Nc6', 'Nf3', 'Nge7', 'Bb5', 'g6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'Nxe5', 'dxe4', 'Qe2', 'Bg4'], ['e4', 'd5', 'e5', 'e6', 'f4', 'Bc5', 'd4', 'Bb6', 'Nc3', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bd3', 'd6', 'O-O', 'Be6', 'c4', 'Nc6'], ['Nf3', 'Nc6', 'g3', 'e5', 'd3', 'd5', 'Nc3', 'Nf6', 'Bg5', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bd7', 'c4', 'a6'], ['e4', 'd5', 'd3', 'd4', 'Nf3', 'c5', 'g3', 'g6', 'c4', 'Bg7'], ['d4', 'Nf6', 'd5', 'g6', 'c4', 'Bg7', 'e3', 'd6', 'Nf3', 'Bg4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Qh5', 'Nf6', 'Qf3', 'g6'], ['Nf3', 'Nf6', 'd4', 'g6', 'c3', 'Bg7', 'e4', 'Nxe4', 'g4'], ['d4', 'Nf6', 'c4', 'Ne4', 'Nf3', 'e5', 'Qd3', 'Qf6', 'dxe5', 'Nxf2'], ['e4', 'e5', 'Nf3', 'd6', 'g3', 'h5', 'h4', 'f6', 'Bg2', 'g5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nc6', 'f3', 'Nf6', 'Nh3', 'Bb4'], ['e4', 'd5', 'f3', 'e5', 'Ne2', 'Nh6', 'd4', 'exd4', 'Nxd4', 'dxe4'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'e6', 'Nc3', 'Bb4', 'Bd2', 'dxc4'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'Nc6', 'Na3', 'e5', 'Bxc4', 'Qxd4'], ['e4', 'd5', 'Qf3', 'Nf6', 'exd5', 'Qxd5', 'c4', 'Qa5', 'Kd1', 'Bg4'], ['e4', 'd5', 'Qf3', 'Nf6', 'exd5', 'Qxd5', 'b3', 'Bg4', 'Qxd5', 'Nxd5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'g3', 'dxc4', 'Bg2', 'g6'], ['c4', 'd5', 'd4', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'Bg4', 'Bf4', 'e6'], ['e4', 'd5', 'e5', 'Nc6', 'd4', 'Nh6', 'Nf3', 'g6', 'h3', 'Bg7'], ['e4', 'e5', 'c4', 'Nc6', 'Nf3', 'Nf6', 'g3', 'Bc5', 'd3', 'Ng4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'c3', 'cxd4', 'cxd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'h3', 'h6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Bg5', 'O-O'], ['d4', 'd6', 'e4', 'e6', 'Nc3', 'a6', 'Nf3', 'h6', 'Be2', 'Nc6'], ['e4', 'c5', 'e5', 'd6', 'Nf3', 'Nc6', 'exd6', 'Qxd6', 'c3', 'Bf5'], ['d4', 'e6', 'c4', 'd6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'Bg5', 'Bf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'Nc3', 'Bxf3', 'Qxf3', 'Nf6'], ['d4', 'Nf6', 'Nf3', 'c5', 'd5', 'e6', 'Nc3', 'a6', 'Bg5', 'h6'], ['e4', 'd6', 'd4', 'g6', 'Nc3', 'Bg7', 'f4', 'a6', 'Nf3', 'b5'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'a6', 'd4', 'c6', 'dxc6', 'Nxc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'c5', 'd5', 'exd5', 'cxd5', 'd6'], ['d4', 'Nf6', 'Nf3', 'e6', 'e3', 'c5', 'c4', 'cxd4', 'exd4', 'd5'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'Bg4', 'c4', 'c6', 'Nc3', 'e6'], ['d4', 'c5', 'd5', 'Nf6', 'Nc3', 'e5', 'e4', 'd6', 'Bc4', 'a6'], ['d4', 'Nf6', 'Nf3', 'c5', 'd5', 'd6', 'Nc3', 'g6', 'e4', 'Bg7'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e3', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'a3', 'Nf6', 'Bg5', 'Be7', 'Nc3', 'O-O'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'c5', 'e3', 'b6', 'Nc3', 'cxd4'], ['d4', 'd5', 'Bf4', 'e6', 'e3', 'Nf6', 'Bd3', 'Bd6', 'Nf3', 'h6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'O-O', 'Ngf6'], ['d4', 'Nf6', 'Nf3', 'g6', 'e3', 'Bg7', 'c4', 'O-O', 'Bd3', 'd6'], ['f4', 'd5', 'd4', 'Nf6', 'e3', 'e6', 'Nf3', 'Be7', 'Bd3', 'c5'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'e3', 'Bb7', 'Nc3', 'Bb4'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'Bf5', 'Bd3', 'Bg6', 'Nh4', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'O-O', 'Nf6', 'Nc3', 'e6'], ['d4', 'c6', 'Nf3', 'd5', 'c4', 'Nf6', 'Bg5', 'e6', 'e3', 'Be7'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'Qe7', 'Bf4', 'Qb4+', 'Nbd2', 'Qxf4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bxb4', 'c3', 'Ba5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'd6', 'e3', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e3', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Bg5', 'Be7', 'g3', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'Nf3', 'c6'], ['d4', 'a5', 'e4', 'g6', 'Nf3', 'h6', 'c4', 'Bg7', 'Nc3', 'c6'], ['d4', 'd5', 'Nc3', 'e6', 'Nf3', 'Nf6', 'Bg5', 'Be7', 'e3', 'O-O'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'e6', 'e3', 'Nf6', 'b3', 'Nbd7'], ['d4', 'Nf6', 'Nf3', 'e5', 'Nxe5', 'd6', 'Nf3', 'Bg4', 'e3', 'Nc6'], ['d4', 'd5', 'g3', 'e6', 'Bg2', 'Nf6', 'Nf3', 'Be7', 'O-O', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e3', 'O-O'], ['d4', 'a6', 'e4', 'h6', 'f4', 'e6', 'Nf3', 'Bb4+', 'c3', 'Ba5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'Nc3', 'b5'], ['d4', 'd5', 'Nf3', 'Bf5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'c6'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'e6', 'Bg5', 'c6', 'e3', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'b5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'O-O', 'Bg5', 'h6'], ['d3'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Nf6', 'O-O', 'Bc5'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'e6', 'Bg5', 'Be7', 'e3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'Nc3', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'd6'], ['d4', 'e6', 'Nf3', 'd5', 'c4', 'dxc4', 'e3', 'Bd7', 'Bxc4', 'Ba4'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'c5', 'e3', 'Nc6', 'c3', 'e6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'c6', 'g3', 'dxc4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'c6', 'Bf4', 'Nbd7'], ['d4', 'e6', 'Nf3', 'd5', 'c4', 'Nf6', 'Bg5', 'Be7', 'e3', 'c5'], ['d4', 'd6', 'e4', 'c6', 'c4', 'e6', 'Nc3', 'Be7', 'Be2', 'Nd7'], ['e4', 'e5', 'f4', 'Qh4+', 'g3', 'Qd8', 'Nf3', 'exf4', 'd4', 'fxg3'], ['f4', 'f5', 'Nf3', 'Nf6', 'e3', 'd5', 'd3', 'e6', 'Nbd2', 'Bd6'], ['e4', 'c6', 'Nc3', 'd5', 'Nf3', 'c5'], ['e4', 'Nf6'], ['e4', 'd5', 'exd5', 'Nf6', 'Bc4', 'Bf5', 'd6'], ['e4', 'e5', 'Bc4', 'Bc5', 'd4', 'Bxd4', 'Nf3', 'Nc6', 'Nxd4', 'Nxd4'], ['d4', 'Nf6', 'Nf3', 'd6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'O-O'], ['d4', 'Nf6', 'Nf3', 'd5', 'c4', 'e6', 'Bg5', 'Bb4+', 'Nc3', 'O-O'], ['e4', 'e5', 'f4', 'd6', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'O-O', 'Nf6'], ['d4', 'Nf6', 'Nf3', 'e6', 'e3', 'b6', 'Bd3', 'Bb7', 'c4', 'c5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'c5', 'Nf3', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'dxc6', 'h3', 'Nf6'], ['d4', 'd5', 'Nf3', 'e6', 'Bf4', 'Nf6', 'e3', 'a6', 'Bd3', 'h6'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Bg4', 'Ne5', 'Bf5', 'e3', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'c3', 'Qf6', 'O-O', 'Nge7'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Bb4+'], ['d4', 'Nf6', 'Nf3', 'c5', 'd5', 'd6', 'Nc3', 'e5', 'e4', 'Be7'], ['Nf3', 'd5', 'g3', 'c5', 'Bg2', 'Nc6', 'd3', 'Nf6', 'O-O', 'e5'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Nc6', 'e3', 'Bf5', 'Bb5', 'e6'], ['e4', 'e5', 'f3', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bc5', 'Nge2', 'O-O'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nf6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'd3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'd3', 'd6', 'Nc3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'b6', 'Rf1', 'Bb7', 'Nc3', 'Bb4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Bd3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'O-O', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'g6', 'Nxe5', 'f5', 'exf5', 'gxf5', 'Be2', 'd6'], ['d4', 'd5', 'e3', 'e6', 'Bb5+', 'c6', 'Ba4', 'b5', 'Bb3', 'Bd6'], ['d4', 'd5', 'e3', 'e6', 'Bd2', 'Nf6', 'Be2', 'Bd6', 'Nf3', 'O-O'], ['e4', 'Nf6', 'Nc3', 'd6', 'Nf3', 'Bg4', 'h3', 'Be6', 'd4', 'Na6'], ['e4', 'e5', 'Nf3', 'c6', 'Nxe5', 'Qe7', 'd4', 'd6', 'Nf3', 'Qxe4+'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'd3', 'Bg7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'a6', 'Bxc6+', 'bxc6'], ['g3', 'e5', 'e4', 'Nf6', 'Bg2', 'Bc5', 'a3', 'a5', 'Nc3', 'd6'], ['d4', 'd5', 'e3', 'Nf6', 'h3', 'e6', 'a3', 'Bd6', 'c4', 'c6'], ['e3', 'e6', 'Qf3', 'Nf6', 'Nc3', 'Nc6', 'Nb5', 'a6', 'Nd4', 'Nxd4'], ['e4', 'e6', 'd4', 'Qh4', 'Nc3', 'Nf6', 'e5', 'Ne4', 'Nf3', 'Qxf2#'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'Nc3', 'Nb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bxe6', 'fxe6', 'd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'c6', 'd4', 'e6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Nc3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd5', 'Nf6', 'Qc4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'f6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'Ng5', 'Qe7'], ['e3', 'e5', 'd4', 'exd4', 'exd4', 'Nf6', 'Nf3', 'Nc6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Ng5', 'O-O'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'Nxe5', 'Nxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'Nc3', 'Bg4', 'h3', 'Bh5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'd3', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'e6', 'Nf3', 'Qa5'], ['h4', 'e5', 'a4', 'd5', 'b4', 'Nc6', 'b5', 'Na5', 'g4', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'd3', 'Nf6', 'Ng5', 'O-O'], ['c4', 'f5', 'Nc3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'Nf3', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'c3', 'd6', 'd4', 'exd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Qc7', 'd3', 'g6', 'Be3', 'd6'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'd6', 'Nf3', 'Nf6', 'Bd3', 'g6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'd4', 'd3', 'c5', 'c3', 'Nc6'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'd4', 'd6', 'f4', 'Bf5'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Bd3', 'd6'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'g6', 'Bg5', 'Bg7', 'h3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'd3', 'Nc6', 'a3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'f5', 'd3', 'fxe4', 'dxe4', 'Nf6'], ['e4', 'c5', 'c4', 'd6', 'Nc3', 'Nf6', 'd3', 'g6', 'Nf3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7', 'c3', 'h6'], ['d4', 'f5', 'Bg5', 'h6', 'Bh4', 'g5', 'Bg3', 'f4', 'e3', 'Nf6'], ['e4', 'c5', 'Bc4', 'd6', 'c3', 'Nf6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'd4', 'cxd4', 'cxd4', 'Nxe4'], ['e4', 'e6', 'Nf3', 'Nc6', 'd4', 'd5', 'e5', 'Bd7', 'Be2', 'Qe7'], ['e4', 'c6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'Ngf3', 'Nb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'f6', 'd4', 'exd4', 'O-O', 'Bc5'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'd4', 'd6', 'f4', 'dxe5'], ['e4', 'c5', 'Bc4', 'd6', 'd3', 'Nf6', 'Nc3', 'Nc6', 'a3', 'a6'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'g6', 'Bg5', 'Bg7', 'Nf3', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Qb6', 'Nc3', 'e5', 'a4', 'Nf6'], ['h4', 'e5', 'h5', 'h6', 'Nc3', 'Qf6', 'Nd5', 'Qc6', 'e4', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'O-O', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Ng5', 'e6', 'O-O', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd3', 'Nf6', 'Nc3', 'g6', 'Bg5', 'Bg7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Qc7'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'Nf6', 'e5', 'dxe5', 'Nxe5', 'Qd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Nxe5', 'Bxc3', 'bxc3', 'Qe7'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'g6', 'Bg5', 'Bg7', 'e3', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'd3', 'Nf6'], ['d4', 'f5', 'Bf4', 'Nf6', 'e3', 'g6', 'Be2', 'Bg7', 'h3', 'd6'], ['d4', 'f5', 'Nf3', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'h3', 'd6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'Nf3', 'e6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Bd7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'Bd3', 'c5', 'a3', 'cxd4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Ng5', 'e6'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Bg5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Bc5', 'c3', 'Nf6'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'Nf6', 'd3', 'g6', 'Ng5', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'f5', 'c4', 'Nf6', 'Nf3', 'g6', 'Bf4', 'Bg7', 'e3', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be7'], ['Nf3', 'Nf6', 'c4', 'd6', 'Nc3', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'Nc3', 'Bb4', 'Bg5', 'h6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'c6', 'a3', 'a5', 'Bc4', 'h6'], ['e4', 'Nf6', 'e5', 'Ne4', 'f3', 'Ng5', 'f4', 'Ne4', 'd3', 'Nc5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nc6', 'Bxc4', 'Nf6', 'Nf3', 'e6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qc4', 'Nf6', 'Nf3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'a6', 'a4', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'h3', 'Qf6', 'Be2', 'Qg6'], ['e3', 'd5', 'd4', 'e6', 'Nc3', 'c6', 'Nf3', 'f6', 'g3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Bd6', 'Bc4', 'f5', 'd4', 'exd4', 'e5', 'b5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'd6', 'Ng5', 'Be6', 'Bxe6', 'fxe6'], ['e4', 'e6', 'd4', 'd5', 'f3', 'Nf6', 'e5', 'Nfd7', 'f4', 'c5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd6', 'Nf3', 'Nc6', 'd3', 'b6'], ['e4', 'e5', 'Qh5', 'd6', 'Bc4', 'Qf6', 'd3', 'g6', 'Qf3', 'Qxf3'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'O-O', 'Nf6', 'd3', 'O-O'], ['e4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'e5', 'Bc4', 'Bc5', 'O-O', 'h5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'd3', 'Nd4'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'f3', 'exf3', 'Qxf3', 'Bg4'], ['Nf3', 'c5', 'c3', 'd5', 'd4', 'c4', 'g3', 'f5', 'Bg2', 'e6'], ['e4', 'c5', 'c4', 'd6', 'Nc3', 'e6', 'd3', 'h6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'O-O'], ['e4', 'b6', 'Nf3', 'Bb7', 'Bd3', 'Nc6', 'c3', 'e6', 'O-O', 'g6'], ['e4', 'e5', 'Nf3', 'g6', 'Bc4', 'b6', 'Nxe5', 'Nh6', 'd4', 'Ba6'], ['e4', 'e6', 'Nc3', 'd5', 'Nf3', 'Nf6', 'd3', 'Bb4', 'Bd2', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'd6'], ['Nf3', 'Nf6', 'c4', 'e6', 'e3', 'c5', 'Nc3', 'Nc6', 'a3', 'b6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'c5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Be7', 'd4', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'Nf6', 'd3', 'Be7'], ['e4', 'e6', 'd4', 'c6', 'e5', 'b6', 'c4', 'c5', 'Nf3', 'cxd4'], ['d4', 'd5', 'Nf3', 'f6', 'Nc3', 'e6', 'e3', 'Bd6', 'Bb5+', 'c6'], ['e4', 'e5', 'Nf3', 'f6', 'Nc3', 'Ne7', 'Bc4', 'c6', 'd4', 'Na6'], ['e4', 'e5', 'd3', 'Nf6', 'f4', 'Nc6', 'f5', 'Bd6', 'g4', 'g6'], ['e4', 'b6', 'd4', 'Bb7', 'Bd3', 'g6', 'h3', 'Bg7', 'Nf3', 'd6'], ['e4', 'c5', 'Nc3', 'd6', 'Nge2', 'Nf6', 'd4', 'cxd4', 'Nxd4', 'g6'], ['d3', 'd5', 'e4', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'Nf6', 'Nf3', 'Nxe4'], ['Nf3', 'g6', 'g3', 'Nf6', 'Bg2', 'Bg7', 'O-O', 'O-O', 'd3', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bg5', 'Nxe4'], ['e4', 'c5', 'Nf3', 'e6', 'd3', 'd5', 'Nbd2', 'Nc6', 'g3', 'Bd6'], ['e4', 'c5', 'Ne2', 'e6', 'Nbc3', 'a6', 'g3', 'b5', 'Bg2', 'Bb7'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'e6', 'Bg5', 'h6'], ['d4', 'e6', 'c4', 'c6', 'e4', 'd5', 'Nc3', 'Bb4', 'cxd5', 'exd5'], ['e4', 'e5', 'Nc3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nf3', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'exd5', 'Bg5', 'c6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Bb4', 'e3', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'cxd5', 'exd5', 'Bg5', 'c6'], ['e4', 'c5', 'e5', 'e6', 'Nf3', 'Nc6', 'b3', 'd5', 'exd6', 'Bxd6'], ['c4', 'e5', 'Nc3', 'Nc6', 'e4', 'g6', 'Nf3', 'Bg7', 'b3', 'Nge7'], ['Nf3', 'b6', 'g3', 'c5', 'Bg2', 'd5', 'O-O', 'Nf6', 'd4', 'Bg4'], ['e4', 'c6', 'Qf3', 'Nf6', 'Bc4', 'e6', 'e5', 'Nd5', 'Nh3', 'Nb4'], ['f4', 'd5', 'd4', 'c6', 'c4', 'Nf6', 'cxd5', 'Qxd5', 'e4', 'Qxe4+'], ['c4', 'd5', 'Nc3', 'Bf5', 'e3', 'Kd7', 'Nf3', 'Kc6', 'Ne5+', 'Kb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'g3', 'd6', 'Nc3', 'Nf6', 'd3', 'Be7'], ['c4', 'g6', 'Nc3', 'Bg7', 'g3', 'c6', 'Bg2', 'e6', 'e4', 'Ne7'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'd4', 'd5', 'exd5', 'exd5'], ['e3', 'c6', 'Nf3', 'd5', 'c4', 'Bg4', 'cxd5', 'Qxd5', 'Nc3', 'Qa5'], ['d4', 'd5', 'Nf3', 'c6', 'Bf4', 'Nf6', 'c4', 'Bf5', 'Nc3', 'e6'], ['c4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe4+', 'Qe7', 'Qxe7+', 'Bxe7'], ['d4', 'd5', 'h3', 'c6', 'Nf3', 'Nf6', 'Bg5', 'Bf5', 'Bxf6', 'exf6'], ['c4', 'e5', 'Nc3', 'Nc6', 'e4', 'Bb4', 'a3', 'Ba5', 'Nf3', 'Nf6'], ['e4', 'd5', 'Nc3', 'd4', 'Nd5', 'c5', 'd3', 'Be6', 'Nf4', 'g6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'g4', 'Be4', 'f3', 'Bg6'], ['c4', 'e5', 'e3', 'Bc5', 'Nc3', 'c6', 'd4', 'exd4', 'exd4', 'Bb4'], ['Nf3', 'e6', 'd4', 'Nc6', 'g3', 'Nf6', 'Bg2', 'Bd6', 'O-O', 'O-O'], ['e4', 'c6', 'Qg4', 'd5', 'Qf3', 'dxe4', 'Qxe4', 'Nf6', 'Qe3', 'Bf5'], ['Nf3', 'e6', 'd4', 'd5', 'g3', 'c6', 'Bg2', 'g6', 'O-O', 'Bg7'], ['e4', 'c6', 'e5', 'd5', 'f4', 'Bf5', 'g3', 'e6', 'Nc3', 'Nd7'], ['d4', 'd5', 'e4', 'c6', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Nf3', 'Bxe4'], ['c4', 'g5', 'Nc3', 'Bg7', 'h3', 'e6', 'd4', 'd5', 'e3', 'Bd7'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qc4', 'Nf6', 'Nf3', 'e6'], ['e4', 'e5', 'c3', 'd5', 'd3', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'Nf6'], ['Nf3', 'g6', 'd4', 'Bg7', 'g3', 'b6', 'Bg2', 'Bb7', 'O-O', 'Nc6'], ['e4', 'e5', 'c3', 'Nf6', 'f3', 'Nc6', 'd4', 'exd4', 'cxd4', 'd5'], ['e3', 'd5', 'd4', 'c6', 'Bd3', 'Nf6', 'Nf3', 'Bg4', 'O-O', 'Nbd7'], ['Nf3', 'd5', 'd4', 'Nf6', 'g3', 'Nc6', 'Bg2', 'e5', 'dxe5', 'Nxe5'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Bb5', 'cxb5', 'Nxe4', 'Bf5'], ['c4', 'c6', 'Nc3', 'Nf6', 'g3', 'e6', 'Bg2', 'd5', 'b3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Bc5', 'c3', 'Nh6', 'd4', 'Bb6', 'Nxe5', 'Qe7'], ['e4', 'e5', 'd3', 'Nc6', 'Nf3', 'Bc5', 'c3', 'Nf6', 'Nbd2', 'd6'], ['d4', 'd5', 'c4', 'c6', 'a4', 'Bf5', 'Nf3', 'Bxb1', 'Rxb1', 'Nf6'], ['c4', 'c5', 'e4', 'e5', 'Be2', 'Nc6', 'a3', 'Nf6', 'Qc2', 'Nd4'], ['e4', 'e5', 'c3', 'Nf6', 'f3', 'g6', 'd4', 'd6', 'Nd2', 'Bd7'], ['d4', 'd5', 'Bf4', 'c6', 'g3', 'Nf6', 'Bg2', 'Nbd7', 'Nf3', 'e6'], ['Nf3', 'd5', 'd4', 'Nc6', 'g3', 'Bf5', 'Nc3', 'e6', 'Bg2', 'Bb4'], ['e4', 'e5', 'c3', 'Qh4', 'Nf3', 'Qxe4+', 'Be2', 'f6', 'O-O', 'd6'], ['e4', 'c5', 'c4', 'Nc6', 'd3', 'g6', 'Nc3', 'Bg7', 'Nf3', 'e6'], ['e4', 'c5', 'c3', 'Nc6', 'Nf3', 'Nf6', 'd3', 'Ng4', 'h3', 'Nxf2'], ['e4', 'c6', 'd4', 'd5', 'f3', 'Be6', 'c3', 'f5', 'Nd2', 'fxe4'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'e6', 'Nf3', 'Bb4', 'a3', 'Bxc3+'], ['e4', 'b6', 'c3', 'Bb7', 'Nf3', 'Bxe4', 'd4', 'Bb7', 'Ne5', 'Nc6'], ['e4', 'd5', 'd3', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'Bd7', 'Nf3', 'f6'], ['a3', 'd5', 'h3', 'c6', 'g3', 'Nf6', 'Bg2', 'e5', 'd4', 'e4'], ['e4', 'e5', 'c3', 'Nc6', 'Nf3', 'Nf6', 'Bc4', 'h6', 'O-O', 'Nxe4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['Nf3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'd5', 'd4', 'Bf5', 'O-O', 'e6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'Bc4', 'O-O', 'd3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'h6', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'h6', 'd3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bb4', 'a3', 'Bxc3'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'Be6', 'Bxe6', 'fxe6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nc3', 'O-O'], ['e4', 'd5', 'e5', 'Nc6', 'f4', 'f6', 'exf6', 'Nxf6', 'Nc3', 'd4'], ['e4', 'c5', 'Nf3', 'd6', 'e5', 'dxe5', 'Nxe5', 'Nf6', 'Bb5+', 'Bd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nf6', 'e5', 'Nc6', 'Qf4', 'Nd5'], ['e3', 'e5', 'Nc3', 'Nf6', 'd4', 'e4', 'f3', 'd5', 'fxe4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'd5', 'Nxc6', 'bxc6'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'Bc5', 'e3', 'O-O', 'Bg2', 'c6'], ['e4', 'c6', 'Qf3', 'd5', 'Bd3', 'g6', 'exd5', 'cxd5', 'Bb5+', 'Nc6'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qa5', 'g3', 'Nf6', 'Bg2', 'Nc6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'c6', 'Nf3', 'Qa5', 'Bd2', 'e5'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qc6', 'd3', 'h6', 'Nf3', 'e6'], ['c4', 'Nf6', 'Nc3', 'c5', 'g3', 'Nc6', 'Bg2', 'e6', 'e3', 'd5'], ['c4', 'f5', 'g3', 'a6', 'Bg2', 'Nf6', 'Nc3', 'e5', 'd3', 'Be7'], ['d4', 'd6', 'c4', 'Nf6', 'Nc3', 'c6', 'Nf3', 'g6', 'Bg5', 'Bg7'], ['d4', 'd6', 'c4', 'Nf6', 'Bf4', 'g6', 'Nc3', 'c6', 'e3', 'Bg7'], ['c4', 'c5', 'g3', 'Nf6', 'Bg2', 'g6', 'Nc3', 'Bg7', 'e3', 'O-O'], ['c4', 'c5', 'g3', 'Nf6', 'Bg2', 'Nc6', 'Nc3', 'e6', 'e3', 'Be7'], ['c4', 'e5', 'Nc3', 'Nc6', 'g3', 'd6', 'Bg2', 'Bd7', 'e3', 'Rb8'], ['d4', 'e6', 'e4', 'd5', 'Nc3', 'Bb4', 'Bd2', 'Nc6', 'Bb5', 'Bd7'], ['c4', 'Nf6', 'g3', 'e5', 'Bg2', 'Nc6', 'Nc3', 'd6', 'd3', 'Be7'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e6', 'Nf3', 'c5', 'Bxc4', 'cxd4'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nf6', 'Bb5+', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'exd5', 'Bg5', 'c6'], ['e4', 'c6', 'Nf3', 'd5', 'Bd3', 'Bg4', 'O-O', 'Nd7', 'exd5', 'cxd5'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e5', 'Nf3', 'exd4', 'Nxd4', 'Bc5'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Bg4', 'Be2', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'Nxd5', 'Nf3', 'Bb4'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Nc6', 'd4', 'Nf6'], ['d4', 'c6', 'c4', 'd5', 'c5', 'Bf5', 'Nc3', 'Na6', 'a3', 'Nc7'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'Nxd5', 'e3', 'Bb4'], ['d4', 'd5', 'Nc3', 'e6', 'Bf4', 'f5', 'e3', 'Nf6', 'Nb5', 'Bd6'], ['d4', 'd5', 'c4', 'Nf6', 'Bg5', 'Ne4', 'Bh4', 'g5', 'Bg3', 'Nxg3'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Bg4', 'Nc3', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'exd5', 'Bg5', 'Be7'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Bg4', 'Be2', 'Nf6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nf6', 'd4', 'Bg4'], ['d4', 'e6', 'c4', 'c6', 'Nf3', 'd5', 'cxd5', 'cxd5', 'a3', 'Bd6'], ['d4', 'g6', 'c4', 'Nh6', 'Nf3', 'Bg7', 'Bg5', 'f6', 'Bf4', 'O-O'], ['d4', 'c6', 'Bf4', 'd5', 'e3', 'Bf5', 'Bd3', 'Bg6', 'Nf3', 'Nf6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'Nf3', 'Nbd7', 'e3', 'c6'], ['Nf3', 'd5', 'd4', 'Nf6', 'c3', 'b6', 'g3', 'Bb7', 'Bg2', 'Nbd7'], ['g4', 'e5', 'Bg2', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Qa4+', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'd6', 'O-O', 'Nf6'], ['d4', 'f5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Bb4', 'Bd2', 'O-O'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Bf5', 'e3', 'e6', 'Bd3', 'Bxd3'], ['d4', 'd5', 'Nf3', 'c6', 'Bf4', 'Bg4', 'e3', 'e6', 'c4', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'c6', 'Nf3', 'Nf6', 'h3', 'e6', 'd3', 'Bd6', 'g3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Bc5', 'd4', 'Bb6', 'dxe5', 'Qe7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'gxf3', 'dxe5'], ['d4', 'd5', 'h3', 'e6', 'Nf3', 'f5', 'Bg5', 'Be7', 'e3', 'Bxg5'], ['e4', 'e5', 'd3', 'Nf6', 'Bg5', 'h6', 'Bxf6', 'Qxf6', 'f3', 'Bc5'], ['e4', 'e5', 'Qh5', 'd6', 'Bc4', 'g6', 'Qf3', 'f6', 'Bxg8', 'Rxg8'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'a6', 'a3', 'b5', 'Ba2', 'Be6'], ['e4', 'g6', 'f3', 'd6', 'c3', 'Nf6', 'd4', 'Nbd7', 'Bb5', 'c6'], ['Nf3', 'd5', 'g3', 'f6', 'Bg2', 'Bg4', 'O-O', 'Bxf3', 'Bxf3', 'c6'], ['e4', 'c5', 'c4', 'd6', 'd3', 'Nc6', 'Be3', 'e5', 'Nc3', 'Nge7'], ['e4', 'e5', 'd3', 'c6', 'Nf3', 'd6', 'c4', 'Nf6', 'h3', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'd5', 'Bxf3', 'Qxf3', 'f6'], ['e4', 'e6', 'f3', 'd5', 'd3', 'dxe4', 'fxe4', 'c5', 'Be3', 'Nc6'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'f5', 'e5', 'b5', 'b3', 'Ba6'], ['e4', 'e5', 'd3', 'a5', 'a3', 'Bc5', 'Be3', 'Bxe3', 'fxe3', 'g5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'f6'], ['e4', 'd5', 'f3', 'dxe4', 'fxe4', 'Nf6', 'd3', 'Bg4', 'Be2', 'Bxe2'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'Qxf3', 'dxe5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'exd4'], ['e4', 'e5', 'd3', 'Nf6', 'Bg5', 'Nc6', 'Bxf6', 'gxf6', 'a3', 'Qe7'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'd4', 'f6', 'dxe5', 'fxe5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Nd5', 'Nxd5'], ['e4', 'e5', 'd3', 'Bc5', 'a3', 'Qf6', 'f3', 'Qb6', 'Ne2', 'Be3'], ['e4', 'e5', 'Bc4', 'd6', 'Qf3', 'f6', 'Qb3', 'b6', 'Bxg8', 'a5'], ['e4', 'e5', 'd3', 'Bc5', 'Be3', 'b6', 'Bxc5', 'bxc5', 'Qh5', 'd6'], ['e4', 'c5', 'd3', 'd6', 'a3', 'Nf6', 'b4', 'g6', 'g4', 'Bxg4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'Nc3', 'Bxf3', 'Qxf3', 'f6'], ['c3', 'e5', 'e4', 'd6', 'd3', 'Nc6', 'Nd2', 'f5', 'f3', 'f4'], ['h4', 'e5', 'Rh3', 'g5', 'hxg5', 'Qxg5', 'Nf3', 'Qf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'f6', 'Nxe5', 'fxe5', 'Qh5+', 'Ke7', 'Qxe5+', 'Kf7'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Nc6', 'd4', 'f6', 'd5', 'Nce7'], ['e4', 'e5', 'd3', 'f6', 'g3', 'd6', 'Nc3', 'c6', 'b4', 'h5'], ['e4', 'e5', 'd3', 'Nc6', 'c3', 'Nf6', 'Bg5', 'd5', 'Bxf6', 'gxf6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f6', 'dxe5', 'fxe5', 'Nc3', 'Bg4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['e4', 'c5', 'd3', 'e5', 'Nf3'], ['e4', 'e6', 'd3', 'a6', 'Nf3', 'd6', 'c4', 'h6', 'Be3', 'g6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'd3', 'Bxf3', 'Qxf3', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'Nf6', 'Bb5', 'Bc5', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nf6', 'Bg5', 'e6'], ['d4', 'd5', 'Nf3', 'Nf6', 'Nc3', 'c5', 'dxc5', 'e6', 'Bf4', 'Bxc5'], ['a4', 'd5', 'b3', 'Nc6', 'Ba3', 'Nf6', 'd4', 'e6', 'e3', 'Bxa3'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'h6', 'Nc3', 'a6', 'e3', 'Nf6'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'Nf6', 'd3', 'exd3', 'Bxd3', 'h6'], ['e3', 'd5', 'g3', 'Nf6', 'd4', 'Bg4', 'Be2', 'Bxe2', 'Qxe2', 'e6'], ['d4', 'Nf6', 'Nf3', 'd6', 'Bf4', 'e6', 'Nc3', 'c6', 'e4', 'Be7'], ['d4', 'e6', 'Nf3', 'd5', 'Nc3', 'Bb4', 'Bf4', 'Nf6', 'Qd2', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Ba4', 'b5', 'Nxd4', 'bxa4'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'Be7', 'd4', 'O-O'], ['e4', 'c5', 'c3', 'a6', 'd4', 'cxd4', 'cxd4', 'b5', 'Nf3', 'Nf6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd6', 'd4', 'Bg4', 'Bc4', 'Nd7'], ['d4', 'Nf6', 'Nf3', 'g6', 'h3', 'Bg7', 'a3', 'O-O', 'Nc3', 'd5'], ['e4', 'e6', 'f4', 'd5', 'e5', 'c5', 'Bb5+', 'Bd7', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bc4', 'Bxc3', 'bxc3', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Be7', 'Bb5+', 'Nc6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nc3', 'c5'], ['e4', 'c5', 'c3', 'Qa5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'd3', 'b5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'h3', 'Bh5', 'O-O', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'Qe7', 'O-O', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'd6', 'c3', 'Nf6'], ['e4', 'Nc6', 'd4', 'Nf6', 'e5', 'Nd5', 'Bc4', 'e6', 'Bxd5', 'exd5'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'e6', 'dxe6', 'Bxe6', 'Nf3', 'Bc5'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'g6', 'e3', 'Bg7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bxe6', 'fxe6', 'O-O', 'c6'], ['d4', 'Nf6', 'f3', 'g6', 'e3', 'Bg7', 'Ne2', 'O-O', 'e4', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'Bb5', 'Bd7', 'O-O', 'a6'], ['e4', 'e5', 'Qf3', 'Nf6', 'Bc4', 'Bc5', 'Nc3', 'O-O', 'g3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'd6', 'O-O', 'a6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'Bf5', 'Qb3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bg4', 'd4', 'exd4'], ['e4', 'c5', 'c3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'e5', 'Nf3', 'exd4'], ['b3', 'Nf6', 'Bb2', 'g6', 'f4', 'Bg7', 'e3', 'O-O', 'g4', 'e6'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'Ne7', 'O-O', 'g6', 'd4', 'Nec6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'a6', 'Ba4', 'Bg4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'd3', 'Nf6', 'Nc3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'Nge7', 'c3', 'a6'], ['c4', 'Nf6', 'Nc3', 'g6', 'e3', 'Bg7', 'd4', 'O-O', 'g3', 'c6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Bg4', 'Bf4', 'Nc6'], ['e4', 'd6', 'f4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'd4', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bc4', 'Bxc3', 'dxc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'd4', 'exd4'], ['d4', 'Nf6', 'Nc3', 'g6', 'e4', 'd6', 'Bg5', 'Bg7', 'Qd2', 'O-O'], ['e4', 'e5', 'd3', 'g6', 'Be3', 'Bg7', 'd4', 'exd4', 'Bxd4', 'Bxd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd6', 'Be2', 'b6', 'O-O', 'Bb7'], ['d4', 'd5', 'Bf4', 'Nd7', 'e3', 'Ngf6', 'Nd2', 'e6', 'g4', 'h6'], ['d4', 'h6', 'Nf3', 'a6', 'h4', 'b5', 'Bf4', 'Bb7', 'e3', 'e6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'd6', 'Nf3', 'h6', 'Nh4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd6', 'Bc4', 'h6', 'O-O', 'Qe7'], ['d4', 'e6', 'Bf4', 'd5', 'Nd2', 'Nc6', 'e3', 'Qf6', 'c3', 'e5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nxe4', 'O-O', 'f6', 'Re1', 'Nd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd6', 'd4', 'exd4', 'Nxd4', 'c5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'd6', 'h3', 'Nc6', 'Nf3', 'h6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Qe2', 'Qe7'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'Nf6', 'Be2', 'e6', 'g4', 'Bg6'], ['e4', 'e5', 'g4', 'Nf6', 'Qf3', 'd5', 'exd5', 'Qxd5', 'g5', 'Qxf3'], ['d4', 'c5', 'dxc5', 'e5', 'Be3', 'Qa5+', 'Nc3', 'Bxc5', 'Bxc5', 'Qxc5'], ['e4', 'e5', 'Qh5', 'Qe7', 'Nf3', 'g6', 'Qxe5', 'Qxe5', 'Nxe5', 'Bg7'], ['d4', 'c5', 'dxc5', 'e6', 'Be3', 'Nf6', 'f3', 'Nc6', 'Nd2', 'Nd5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd6', 'Bc4', 'h6', 'O-O', 'a6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'exd4', 'Nxd4', 'Qe7', 'f3', 'g6'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'e6', 'g4', 'Bg6', 'h4', 'h6'], ['e4', 'e5', 'f4', 'Nf6', 'Nf3', 'exf4', 'e5', 'Qe7', 'd4', 'd6'], ['h3', 'd5', 'e4', 'dxe4', 'd3', 'exd3', 'Bxd3', 'g6', 'Bb5+', 'Bd7'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Nf6', 'Bd3', 'e6', 'Nf3', 'Bd6'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'a6', 'Bd3', 'h6', 'h4', 'Nf6'], ['d4', 'Nf6', 'Bf4', 'd5', 'e3', 'Bg4', 'Nf3', 'Nbd7', 'Bd3', 'e5'], ['e4', 'e5', 'Nc3', 'Nc6', 'Bc4', 'Nf6', 'Nf3', 'Be7', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bd3', 'd5', 'Nc3', 'd4', 'Nd5', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'd5', 'Nb4', 'c3', 'Na6'], ['e4', 'e5', 'f4', 'Bc5', 'fxe5', 'Bxg1', 'Rxg1', 'Nc6', 'd4', 'Qh4+'], ['d4', 'Nf6', 'c4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'd6', 'e4', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'b4', 'Bb6'], ['d4', 'c6', 'Nf3', 'd5', 'Bf4', 'Nd7', 'Ne5', 'Nh6', 'Nxd7', 'Bxd7'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'e6', 'c3', 'Nf6'], ['d4', 'Nf6', 'c4', 'g6', 'e3', 'Bg7', 'Nd2', 'd6', 'Be2', 'O-O'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'Nc6', 'Bd3', 'e5', 'Bc2', 'Bb4+'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'f6', 'd4', 'h6', 'a3', 'Bf5'], ['e4', 'c6', 'd4', 'd5', 'e5', 'f6', 'exf6', 'Nxf6', 'Bg5', 'Ne4'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nf6', 'Bd3', 'c5', 'Ne2', 'Nc6'], ['d4', 'Nf6', 'f3', 'c6', 'e4', 'd5', 'e5', 'Nfd7', 'c3', 'f6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'c4', 'Nf6', 'Be2', 'Bf5'], ['d4', 'e6', 'c4', 'c6', 'e3', 'Qh4', 'Nf3', 'Qe4', 'Bd3', 'Qg4'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bd3', 'dxe4', 'Nxe4', 'Ng4'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Bd3', 'Bd7', 'O-O', 'e6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'c6', 'Nf3', 'Nbd7', 'Nbd2', 'e5'], ['d4', 'c5', 'c3', 'Nc6', 'e3', 'e6', 'c4', 'd5', 'Nc3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Qf3', 'g6', 'Ne2', 'Bg7', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'e5', 'Nxe5'], ['d4', 'g6', 'c4', 'Bg7', 'Nc3', 'Nf6', 'e4', 'd6', 'Be3', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'O-O', 'Nf6', 'e5', 'Ng4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'c3', 'd5', 'exd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Nc3', 'd6'], ['f4', 'e6', 'Nf3', 'd5', 'e3', 'c5', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'd6', 'Nc3', 'c5', 'd5', 'Nd7'], ['e4', 'c6', 'c4', 'd5', 'exd5', 'cxd5', 'cxd5', 'Nf6', 'Qa4+', 'Bd7'], ['e4', 'c6', 'd4', 'd5', 'Nd2', 'e5', 'dxe5', 'dxe4', 'Qe2', 'Qd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd5', 'dxe5', 'd4', 'Bb5', 'Bg4'], ['e4', 'Nc6', 'Nf3', 'Nf6', 'e5', 'Nd5', 'Nc3', 'e6', 'Nxd5', 'exd5'], ['d4'], ['e4', 'e6', 'd4', 'd6', 'Nf3', 'h6', 'Nc3', 'a6', 'Bc4', 'Be7'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'g4', 'Bg6', 'e6', 'fxe6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'e6', 'cxd4', 'Nf6', 'Nc3', 'd5'], ['e4', 'c6', 'b3', 'd5', 'Qe2', 'dxe4', 'Nc3', 'Bf5', 'Nxe4', 'Qd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'h6', 'd4', 'exd4'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'c3', 'd6', 'Bd3', 'O-O'], ['d4', 'e6', 'Nf3', 'f5', 'Nc3', 'Nf6', 'Bf4', 'b6', 'e3', 'Bb7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'h6', 'd3', 'Nf6'], ['d4', 'b6', 'Bf4', 'Bb7', 'e3', 'g6', 'Bd3', 'Bxg2'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'd6', 'h3', 'h6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nf6', 'e5', 'dxe5', 'dxe5', 'Qxd1+'], ['e4', 'c5', 'Nc3', 'Nc6', 'f4', 'Qc7', 'Nf3', 'd6', 'Bb5', 'g6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Bg5', 'Be7', 'Nc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd5', 'Bxc6+', 'bxc6', 'd3', 'dxe4'], ['d4', 'd5', 'Bf4', 'Bf5', 'Nc3', 'c6', 'f3', 'e6', 'e4', 'Bg6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bc5', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'dxc6', 'd3', 'Qd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'a6', 'Ba4', 'b5'], ['e4', 'c5', 'Bc4', 'Qc7', 'Nf3', 'd6', 'O-O', 'g6', 'c3', 'Bg7'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'd6', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6', 'd3', 'Nc6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'a6', 'Nc3', 'd6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'O-O', 'Nc6', 'd3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'O-O', 'Nh6', 'h3', 'Bxf3'], ['Nf3', 'c5', 'd3', 'd6', 'g3', 'Bg4', 'Bg2', 'Nf6', 'O-O', 'g6'], ['e4', 'c5', 'Bc4', 'a6', 'a4', 'Nc6', 'c3', 'd6', 'd3', 'g6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'c5', 'Nf3', 'b6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bc4', 'd6', 'O-O', 'O-O'], ['e4', 'c5', 'Bc4', 'a6', 'a3', 'Nc6', 'Nf3', 'd6', 'd3', 'g6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'd6', 'Bb5', 'Qa5+'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nc3', 'd6', 'Bc4', 'a6', 'Ng5', 'Qxg5'], ['e4', 'c5', 'Bc4', 'g6', 'd3', 'Bg7', 'Nd2', 'a6', 'Ngf3', 'd6'], ['e4', 'g5', 'd3', 'e5', 'Nf3', 'f6', 'h3', 'h5', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'a6', 'Bxc6', 'dxc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'g6', 'Bxc6', 'bxc6', 'Nc3', 'Bg7'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nf6', 'Bd3', 'Bg4'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'g6', 'Nf3', 'Bg7'], ['e4', 'e6', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'a6', 'Ba4', 'b5'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'c6', 'Ba4', 'Qa5', 'Nc3', 'b5'], ['e4', 'c5', 'f3', 'd6', 'Nc3', 'g6', 'Bb5+', 'Nc6', 'Nd5', 'a6'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'g6', 'O-O', 'Nf6', 'd3', 'Bg7'], ['e4', 'e6', 'd4', 'f6', 'Qh5+', 'Ke7', 'e5', 'Nc6', 'exf6+', 'Nxf6'], ['Nf3', 'c5', 'g3', 'd6', 'Bg2', 'Qd7', 'Nc3', 'g6', 'd3', 'Bg7'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'f3', 'e5'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qe6', 'g3', 'Nf6', 'Bg2', 'c6'], ['e4', 'c6', 'f4', 'd5', 'e5', 'Bf5', 'Nf3', 'h6', 'd4', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'd5', 'Bb5', 'Bd6', 'exd5', 'Bd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'e6', 'Bd2', 'Nf6', 'Nf3', 'Na6'], ['e4', 'e5', 'c3', 'Nc6', 'd4', 'exd4', 'cxd4'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Be7', 'Nc3', 'c6', 'b4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e3', 'e5', 'c3', 'd5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'Nc6', 'd5', 'Ne5', 'f4', 'Ned7'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd3', 'd5', 'Nbd2', 'dxe4'], ['e4', 'e6', 'Nf3', 'c6', 'd4', 'Qa5+', 'Bd2', 'Qb6', 'Bc1', 'Be7'], ['e4', 'e5', 'd3'], ['e4', 'e6', 'Nf3', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'd4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'dxc6', 'Nc3', 'Bc5'], ['b3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'f6', 'd5', 'Na5'], ['d4', 'e6', 'e3', 'Nc6', 'Nf3', 'd5', 'Nc3', 'Nf6', 'Bd3', 'e5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'd4', 'Bg4', 'Nc3', 'Bxf3'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c4', 'Nc6', 'Nc3', 'Nf6'], ['d4', 'e6', 'Nf3', 'd5', 'e3', 'Nc6', 'c3', 'f6', 'Bb5', 'e5'], ['d4', 'Nf6', 'e3', 'g6', 'Be2', 'Bg7', 'Nd2', 'O-O', 'e4', 'd6'], ['e4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Nf3', 'Nc6', 'Be2', 'Bf5'], ['Nf3', 'd6', 'g3', 'e5', 'd3', 'a5', 'Bg2', 'Be7', 'O-O', 'Nf6'], ['e4', 'Nf6', 'd3', 'd5', 'e5', 'Ng8', 'Nf3', 'Bf5', 'd4', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'Nf6', 'Nxe5', 'Nxe4'], ['e3', 'e5', 'c4', 'Nf6', 'Nc3', 'c6', 'd4', 'exd4', 'Qxd4', 'd5'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'Nf3', 'd6', 'exd6', 'exd6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Ne5'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'e6', 'a3', 'd5', 'e3', 'c6'], ['Nf3', 'c5', 'c4', 'Nf6', 'd3', 'g6', 'b3', 'Bg7', 'Bb2', 'O-O'], ['d4', 'f5', 'e3', 'Nf6', 'Nf3', 'e6', 'Bd3', 'd5', 'Bd2', 'c6'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'f4', 'dxe5', 'fxe5', 'c5'], ['e4', 'Nf6', 'Nc3', 'd5', 'e5', 'Nfd7', 'd4', 'e6', 'a3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'd3', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'e6', 'd5', 'exd5', 'exd5', 'Qe7+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'd6', 'a3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'd5', 'exd5', 'e6', 'd4', 'exd5', 'Nc3', 'Bf5', 'Bf4', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Bc5', 'O-O', 'b5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'Bb5+', 'Bd7'], ['d4', 'g6', 'Bf4', 'Bg7', 'Nf3', 'e6', 'e3', 'Ne7', 'Bd3', 'O-O'], ['d4', 'g6', 'c3', 'Bg7', 'a3', 'd6', 'b4', 'Nd7', 'f3', 'Ngf6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bd3', 'Nf6', 'Ne2', 'c5'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'Bd6', 'Bxd6', 'cxd6', 'e3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bd3', 'Nc6', 'Nf3', 'Bd6'], ['d4', 'd5', 'Bf4', 'Nf6', 'Nf3', 'e6', 'e3', 'c5', 'c3', 'Nc6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bf5', 'g3', 'Nc6'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'Nc6', 'e3', 'a6', 'Bd3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Nf3', 'Nc6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Bb5+', 'c6', 'Qe2+', 'Be6'], ['d4', 'e6', 'Bf4', 'g5', 'Bg3', 'f5', 'h3', 'f4', 'Bh2', 'Bb4+'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'd4', 'Qb6', 'c3', 'Nc6'], ['d4', 'd6', 'Bf4', 'Nc6', 'Nf3', 'Bg4', 'Nbd2', 'Nf6', 'h3', 'Bh5'], ['d4', 'Nf6', 'Bf4', 'g6', 'Nf3', 'Bg7', 'e3', 'd6', 'Bd3', 'O-O'], ['Nf3', 'd5', 'd4', 'Bf5', 'Bf4', 'Nf6', 'e3', 'e6', 'Bd3', 'Bxd3'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nf3', 'Nf6', 'e3', 'e6', 'Bd3', 'Ne4'], ['d4', 'g6', 'Nf3', 'Bg7', 'h3', 'd6', 'Bf4', 'Nf6', 'e3', 'Nbd7'], ['d4', 'e6', 'Nf3', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'Bd3', 'O-O'], ['d4', 'd5', 'Bf4', 'Nf6', 'Nf3', 'e6', 'e3', 'c5', 'c3', 'Nc6'], ['g3', 'd5', 'Bg2', 'Bf5', 'd3', 'Nf6', 'Bg5', 'h6', 'Bxf6', 'gxf6'], ['e4', 'e6', 'f4', 'd5', 'e5', 'c5', 'Nf3', 'Ne7', 'c3', 'Nbc6'], ['d4', 'd5', 'Bf4', 'Nf6', 'Nf3', 'e6', 'e3', 'c5', 'c3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Bc4', 'Bb4', 'Bxf7+', 'Kf8'], ['e4', 'c5', 'c3', 'Nc6', 'Nf3', 'Nf6', 'Bb5', 'Nxe4', 'd3', 'Nf6'], ['d4', 'd6', 'e4', 'b6', 'd5', 'Nf6', 'Nc3', 'e6', 'Bb5+', 'Bd7'], ['e4', 'e5', 'd3', 'c5', 'f4', 'Nc6', 'fxe5', 'Nxe5', 'Nf3', 'Qh4+'], ['e4', 'e5', 'Bb5', 'Nf6', 'Nf3', 'c6', 'Nxe5', 'cxb5', 'd4', 'Nc6'], ['e3', 'e5', 'f3', 'Nf6', 'Bc4', 'Nc6', 'Nc3', 'd5', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nc3', 'Bxf2+', 'Ke2', 'Bb6', 'Nxe5', 'd5'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'Nf6', 'Bxf7+', 'Ke7', 'Nxe5', 'Rf8'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'b3', 'Bxb5', 'c4', 'Bd7'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nb4', 'a3', 'Nf6', 'axb4', 'Bxb4+'], ['e4', 'e5', 'Bc4', 'Qf6', 'Nf3', 'Bc5', 'O-O', 'd6', 'd4', 'Bxd4'], ['c4', 'e5', 'g3', 'c5', 'Bg2', 'd6', 'Nc3', 'Bf5', 'Bxb7', 'Nd7'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nc6', 'Nc3', 'h6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'h3', 'Bh5', 'g4', 'Bg6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'Nc6', 'h3', 'd5', 'Bg5', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd4', 'Bg4'], ['d3', 'e5', 'g3', 'd5', 'Bg2', 'Bf5', 'Nf3', 'Nc6', 'c3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'd3', 'Qf6', 'dxe4', 'Qxe5'], ['d4', 'd5', 'Bf4', 'Bg4', 'Nf3', 'Nf6', 'Nbd2', 'Nc6', 'c3', 'e6'], ['d4', 'd5', 'Nc3', 'e6', 'Nh3', 'Nc6', 'Bg5', 'f6', 'Be3', 'Bb4'], ['e3', 'Nc6', 'd4', 'd5', 'Bd3', 'f5', 'Nf3', 'Nf6', 'h3', 'Be6'], ['e4', 'a6', 'd4', 'e6', 'Bf4', 'd6', 'Nf3', 'c6', 'Nc3', 'b5'], ['e3', 'e5', 'Qg4', 'Nf6', 'Qc4', 'd5', 'Qb5+', 'c6', 'Nc3', 'cxb5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['b4', 'd5', 'd4', 'Nf6', 'Nf3', 'Nbd7', 'Nc3', 'e6', 'a3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['Nf3', 'f5', 'c4', 'Nf6', 'd3', 'e6', 'g3', 'c6', 'Qb3', 'Qa5+'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'e6', 'd5', 'exd5', 'Nxd5', 'Ne4'], ['d4', 'f5', 'e3', 'Nf6', 'Bc4', 'd5', 'Bb5+', 'c6', 'Ba4', 'Qa5+'], ['f4', 'c5', 'Nf3', 'Nc6', 'b3', 'Nf6', 'Bb2', 'g6', 'Bxf6', 'exf6'], ['f4', 'd5', 'Nf3', 'c5', 'e3', 'c4', 'b3', 'cxb3', 'axb3', 'e6'], ['f4', 'e6', 'e3', 'c5', 'c4', 'Nc6', 'b3', 'g6', 'Bb2', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'f5', 'Bc4', 'Nf6'], ['e4', 'd6', 'Nf3', 'f5', 'e5', 'dxe5', 'Nxe5', 'c6', 'Bc4', 'Nd7'], ['f4', 'Nf6', 'Nf3', 'e6', 'e3', 'Bc5', 'b3', 'd5', 'Bb2', 'Nc6'], ['f4', 'f6', 'e3', 'e5', 'fxe5', 'fxe5', 'Qh5+', 'g6', 'Qxe5+', 'Qe7'], ['e4', 'd6', 'd4', 'f5', 'Nc3', 'Nf6', 'exf5', 'Bxf5', 'Nf3', 'Nc6'], ['e4', 'd6', 'd4', 'f5', 'Bd3', 'fxe4', 'Bxe4', 'Nf6', 'Bf3', 'c5'], ['f4', 'c6', 'Nf3', 'd5', 'b3', 'Bf5', 'Bb2', 'e6', 'e3', 'Nf6'], ['d4', 'f5', 'e3', 'Nf6', 'Bd2', 'e6', 'Nh3', 'Ne4', 'Bc3', 'b6'], ['f4', 'd5', 'Nf3', 'e6', 'e3', 'a6', 'c4', 'Nf6', 'Ne5', 'Qe7'], ['e4', 'd6', 'd4', 'f5', 'exf5', 'Bxf5', 'Nf3', 'c5', 'dxc5', 'Qa5+'], ['e4', 'd6', 'Qf3', 'Nf6', 'Nh3', 'h5', 'Ng5', 'Bg4', 'Qf4', 'e5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'f5', 'd4', 'Nf6'], ['f4', 'd5', 'Nf3', 'Nf6', 'e3', 'Nc6', 'b3', 'Bf5', 'Bb2', 'Nb4'], ['f4', 'f6', 'Nf3', 'd6', 'e3', 'e5', 'c4', 'c5', 'Qa4+', 'Bd7'], ['f4', 'e6', 'Nf3', 'd5', 'b3', 'Nh6', 'e3', 'Bc5', 'd4', 'Bb4+'], ['d4', 'f5', 'e3', 'Nf6', 'Nf3', 'e6', 'Bd3', 'b6', 'O-O', 'Bb7'], ['f4', 'd5', 'Nf3', 'Nf6', 'e3', 'Bg4', 'b3', 'Nc6', 'Bb2', 'e6'], ['e4', 'd6', 'd4', 'f5', 'f3', 'Nf6', 'Nc3', 'e5', 'd5', 'fxe4'], ['d4', 'd6', 'Nc3', 'f5', 'Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'Nc6'], ['f4', 'd5', 'Nf3', 'Bg4', 'e3', 'c5', 'Be2', 'Nc6', 'b3', 'e6'], ['f4', 'e6', 'Nf3', 'b6', 'b3', 'Bb7', 'e3', 'Bxf3', 'Qxf3', 'Na6'], ['e4', 'd6', 'd4', 'f5', 'f3', 'Nc6', 'Bb5', 'Bd7', 'Ne2', 'fxe4'], ['f4', 'f5', 'Nf3', 'Nf6', 'b3', 'b6', 'Bb2', 'Bb7', 'e3', 'Bxf3'], ['e4', 'd6', 'Bc4', 'f5', 'Qf3', 'g6', 'exf5', 'Bxf5', 'Qxb7', 'Nd7'], ['f4', 'b6', 'Nf3', 'Bb7', 'e3', 'g6', 'c3', 'Bg7', 'Bc4', 'e6'], ['c4', 'f5', 'd4', 'Nf6', 'Nf3', 'e6', 'e3', 'Bb4+', 'Bd2', 'a5'], ['f4', 'd5', 'Nf3', 'Nc6', 'b3', 'Nf6', 'Bb2', 'Bf5', 'Nc3', 'e6'], ['e4', 'd6', 'f4', 'f5', 'Nc3', 'e6', 'Nf3', 'Nf6', 'd3', 'fxe4'], ['f4', 'Nf6', 'Nf3', 'Nc6', 'b3', 'd6', 'Bb2', 'e5', 'e3', 'exf4'], ['e4', 'd6', 'Nf3', 'f5', 'Nc3', 'fxe4', 'Nxe4', 'Nf6', 'Nc3', 'Nc6'], ['f4', 'd6', 'Nf3', 'Nc6', 'e3', 'e5', 'b3', 'e4', 'Ng5', 'd5'], ['e4', 'd6', 'Bc4', 'f5', 'Qf3', 'g6', 'Nh3', 'Nf6', 'Ng5', 'Qd7'], ['f4', 'e6', 'Nf3', 'Bc5', 'b3', 'a5', 'Bb2', 'Nf6', 'e3', 'b6'], ['f4', 'c6', 'Nf3', 'd5', 'b3', 'Bf5', 'Bb2', 'e6', 'e3', 'Nd7'], ['e4', 'd6', 'd4', 'f5', 'e5', 'dxe5', 'dxe5', 'Qxd1+', 'Kxd1', 'g6'], ['e4', 'd6', 'd4', 'f5', 'exf5', 'Bxf5', 'Bd3', 'e6', 'Qh5+', 'g6'], ['e4', 'e5', 'a3', 'Bc5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd4', 'exd4'], ['f4', 'e6', 'g4', 'Qh4#'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'Bf5', 'e3', 'e6'], ['f4', 'e6', 'g4', 'Qh4#'], ['e3', 'f5', 'Nc3', 'g5', 'Qh5#'], ['e4', 'e5', 'a3', 'Nf6', 'f3', 'Nxe4', 'fxe4', 'Qh4+', 'Ke2', 'Qxe4+'], ['f4', 'e6', 'g4', 'Qh4#'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Bf5', 'c3', 'e6', 'Nf3', 'Be7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Bc4', 'Nf6', 'Nf3', 'Bg4'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Qf3', 'c6', 'Bc4', 'Be6'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'd5', 'Nc3', 'Be7', 'Bg5', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c6', 'Nf3', 'f5', 'Bf4', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'c6', 'axb5', 'cxb5'], ['d4', 'f5', 'Nf3', 'Nf6', 'c4', 'd5', 'e3', 'e6', 'Nc3', 'c5'], ['e4', 'd5', 'exd5', 'Qxd5', 'd4', 'Nc6', 'Be3', 'Nf6', 'c4', 'Qf5'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'c6', 'Bg5', 'Bb4'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'e6', 'Nf3', 'Bd6', 'Bg5', 'f6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'Nc6', 'dxe5', 'Nxe5', 'Bb3', 'Nxe4'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'd6', 'Nbd2', 'c5', 'c3', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'Bg4', 'Be2', 'Nc6'], ['d4', 'Nf6', 'c4', 'd5', 'Nf3', 'Nc6', 'Nc3', 'e6', 'Bg5', 'Bb4'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'c5', 'Nc3', 'Nc6', 'Be3', 'Qb6'], ['d4', 'd5', 'Nf3', 'c5', 'dxc5', 'Qa5+', 'c3', 'Qxc5', 'Nbd2', 'Nf6'], ['e4', 'd5', 'e5', 'Nc6', 'd4', 'Bf5', 'Bb5', 'g6', 'Bxc6+', 'bxc6'], ['d4', 'e6', 'c4', 'b6', 'Nd2', 'Bb7', 'Ngf3', 'f5', 'e3', 'Nf6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Nf3', 'c5', 'e3', 'Qa5'], ['e4', 'f5', 'exf5', 'd5', 'Qh5+', 'g6', 'fxg6', 'Nf6', 'Qh4', 'Bg7'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'Bf5', 'Nc3', 'e6', 'Nf3', 'Nbd7'], ['d4', 'g6', 'Nf3', 'Bg7', 'e4', 'b6', 'Bd3', 'Bb7', 'e5', 'e6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Nf3', 'Bg4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'Nf3', 'Nc6'], ['f4', 'd5', 'Nf3', 'g6', 'e3', 'Bg7', 'Be2', 'Nf6', 'd3', 'O-O'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'c6', 'a4', 'Nf6', 'Nf3', 'e6'], ['Nf3', 'd5', 'g3', 'Nf6', 'Bg2', 'Bf5', 'd3', 'Nc6', 'h3', 'Qd6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'Qb3', 'c6', 'Bg5', 'Be7'], ['e4', 'c5', 'Nf3', 'e6', 'c4', 'd6', 'Be2', 'Nc6', 'd4', 'cxd4'], ['e4', 'c6', 'Nc3', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Bd7', 'Nf3', 'e6'], ['e4', 'd5', 'e5', 'g6', 'd4', 'Bg7', 'Nc3', 'Nd7', 'Bb5', 'c6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'h3', 'Nf6', 'd3', 'Bf5'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Be2', 'Nc6', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'c6', 'Bc4', 'd6', 'O-O', 'Nf6', 'Nc3', 'Be7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'h5', 'dxe5', 'd5', 'Qxd5', 'Nd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd5', 'Nc3', 'Bg4', 'Nxd5', 'Nxd4'], ['e4', 'e5', 'Qh5', 'Qf6', 'd3', 'Bc5', 'Nh3', 'd5', 'exd5', 'Bxh3'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Ng5', 'h6', 'Nxf7', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'd5', 'd3', 'Nf6'], ['e4', 'g6', 'd4', 'Bg7', 'e5', 'd6', 'Nf3', 'dxe5', 'c3', 'exd4'], ['e4', 'e5', 'Qh5', 'Qf6', 'Nf3', 'Nc6', 'd3', 'g6', 'Bg5', 'gxh5'], ['e4', 'c5', 'Nf3', 'd5', 'e5', 'Nc6', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bxc3+'], ['e4', 'Nf6', 'e5', 'Nd5', 'Nf3', 'e6', 'Bc4', 'Ne7', 'O-O', 'Nf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Bc5', 'h3', 'O-O'], ['e4', 'c5', 'Nf3', 'Nf6', 'e5', 'Nd5', 'Bc4', 'e6', 'Bxd5', 'exd5'], ['g3', 'g6', 'Bg2', 'Bg7', 'Nf3', 'd6', 'O-O', 'Nf6', 'h3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxd4', 'exd4', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Qf6', 'O-O', 'a6', 'c3', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Qe7', 'Bxf7+'], ['d4', 'd5', 'Nc3', 'Nc6', 'e4', 'dxe4', 'Nxe4', 'Nxd4', 'Bf4', 'Ne6'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd4', 'exd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nc3', 'c6', 'Nxd4', 'exd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'Nf3', 'Ng4', 'Bxf7+', 'Kxf7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Ng5', 'O-O'], ['e4', 'e5', 'Qh5', 'Qf6', 'd3', 'g6', 'Qe2', 'Nh6', 'Nh3', 'Bg7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'e6', 'd5', 'exd5', 'exd5', 'Qe7+'], ['d4', 'g6', 'Nc3', 'Bg7', 'Bf4', 'd6', 'e3', 'Nf6', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nb4', 'Bd2', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Qh5', 'Qf6', 'Bc4', 'Bc5', 'd4', 'Bxd4', 'Be3', 'Bxb2'], ['b3', 'e5', 'd3', 'Nf6', 'Bb2', 'Nc6', 'Qd2', 'Bb4', 'Nc3', 'Nd5'], ['e4', 'c5', 'Nf3', 'e5', 'Nxe5', 'Qe7', 'd4', 'Nc6', 'Bf4', 'f6'], ['e4', 'e5', 'Nf3', 'Bd6', 'Bc4', 'Nf6', 'Ng5', 'Qe7', 'Nxf7', 'O-O'], ['e3', 'e5', 'Nc3', 'Nf6', 'b3', 'Bb4', 'Bb2', 'O-O', 'a3', 'Bxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'a3', 'Bxc3', 'dxc3', 'Nf6'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'd5', 'e5', 'd4', 'Nxd4', 'Qxd4'], ['e4', 'e5', 'd4', 'd6', 'd5', 'Nf6', 'Nf3', 'Nxe4', 'Bd3', 'Nf6'], ['e4', 'Nf6', 'e5', 'Nd5', 'Bc4', 'Nb6', 'd3', 'f6', 'exf6', 'exf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'd3', 'Nf6', 'Bg5', 'O-O'], ['e4', 'd5', 'e5', 'Nc6', 'Nf3', 'Bg4', 'Bb5', 'Bxf3', 'Bxc6+', 'bxc6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'd3', 'Nc6'], ['e4', 'e5', 'Bc4', 'f5', 'exf5', 'd5', 'Qh5+', 'g6', 'fxg6', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['d4', 'g6', 'Nf3', 'Bg7', 'c3', 'Nf6', 'Bg5', 'O-O', 'e3', 'd6'], ['e4', 'd6', 'd4', 'g6', 'f4', 'Bg7', 'Nf3', 'c6', 'Nc3', 'Qb6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'Ngf3', 'cxd4', 'exd5', 'Qxd5'], ['e4', 'c5', 'd4', 'd6', 'Nf3', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nc6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'exd4', 'Nf3', 'Nc6', 'e5', 'Ne4'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nc6', 'c3', 'e6', 'd3', 'Nf6'], ['e4', 'g6', 'd4', 'Bg7', 'c4', 'd6', 'Nc3', 'Nf6', 'h3', 'O-O'], ['e4', 'g6', 'Nf3', 'Bg7', 'd3', 'd6', 'Nbd2', 'Nf6', 'g3', 'O-O'], ['f3', 'e5', 'Kf2', 'Be7', 'e3', 'Nc6', 'Ne2', 'b6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'f5', 'exf5', 'e4', 'Ng1', 'Qg5'], ['Nh3', 'e5', 'g3', 'Nf6', 'Bg2', 'd5', 'O-O', 'h6', 'f4', 'e4'], ['Nf3', 'Nc6', 'g3', 'g6', 'Bg2', 'Nf6', 'O-O', 'Bg7', 'c3', 'O-O'], ['Nf3', 'Nf6', 'g3', 'd5', 'Bg2', 'e6', 'O-O', 'Be7', 'd3', 'O-O'], ['Nf3', 'Nf6', 'g3', 'e6', 'd3', 'b6', 'Bg2', 'Bb7', 'O-O', 'Be7'], ['Nf3', 'd5', 'h3', 'c5', 'd3', 'Nc6', 'Nbd2', 'e5', 'e4', 'd4'], ['Nf3', 'c5', 'g3', 'd5', 'd3', 'Nc6', 'Bg2', 'e5', 'Nc3', 'Nf6'], ['Nf3', 'Nc6', 'g3', 'g6', 'Nc3', 'Nf6', 'Bg2', 'Bg7', 'd3', 'd6'], ['Nf3', 'd5', 'g3', 'Nc6', 'Bg2', 'e6', 'O-O', 'Nf6', 'd4', 'Be7'], ['Nf3', 'd5', 'g3', 'c5', 'Bg2', 'Nc6', 'd3', 'Nf6', 'O-O', 'e5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'a6'], ['Nf3', 'e6', 'g3', 'd5', 'Bg2', 'c5', 'O-O', 'Nc6', 'c3', 'Qb6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nb5', 'a6'], ['Nf3', 'e6', 'g3', 'd5', 'Bg2', 'Nc6', 'O-O', 'Nf6', 'd3', 'Bc5'], ['Nf3', 'c5', 'g3', 'd5', 'Bg2', 'Nf6', 'd4', 'e6', 'c3', 'Be7'], ['Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'd6', 'd4', 'Nf6', 'Nc3', 'O-O'], ['Nf3', 'b6', 'g3'], ['Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'Nf6', 'O-O', 'O-O', 'd3', 'c5'], ['g3', 'c6', 'Bg2', 'd5', 'd4', 'Nf6', 'Nc3', 'e6', 'Bg5', 'Be7'], ['Nf3', 'c6', 'g3', 'Nf6', 'Bg2', 'e5', 'O-O', 'e4', 'd3', 'exf3'], ['Nf3', 'd5', 'g3', 'Nc6', 'Bg2', 'e5', 'O-O', 'Nf6', 'd3', 'Bf5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'e6'], ['e4', 'e5', 'Nf3', 'Bd6', 'Bc4', 'h6', 'Nc3', 'c6', 'd3', 'Nf6'], ['e4', 'e5', 'Nc3', 'Nf6', 'f4', 'exf4', 'e5', 'Qe7', 'Qe2', 'Ng8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'Nc3', 'Nf6', 'd3', 'd6'], ['e4', 'Nc6', 'Nc3', 'e5', 'Nf3', 'd6', 'Bc4', 'f5', 'd3', 'fxe4'], ['e4', 'e5', 'Nf3', 'f5', 'exf5', 'e4', 'Qe2', 'd5', 'd3', 'Bxf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bc5', 'Ng5', 'Ne5'], ['d4', 'd5', 'h3', 'Nc6', 'g4', 'Nf6', 'Nf3', 'h5', 'g5', 'Nh7'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'Nf6', 'e3', 'Bf5', 'a3', 'a6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Qb6', 'Be3', 'Qxb2'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'Nf3', 'Qxe4+', 'Be2', 'd5'], ['e4', 'd6', 'd4', 'c6', 'Nc3', 'Bd7', 'Nf3', 'Nf6', 'Bf4', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'O-O'], ['e4', 'a6', 'Nf3', 'g5', 'Nxg5', 'f6', 'Nf3', 'Nh6', 'Nd4', 'b6'], ['d4', 'c6', 'Nf3', 'd5', 'Bf4', 'Nd7', 'e3', 'h6', 'Be2', 'f5'], ['e3', 'e5', 'Qh5', 'Qe7', 'Nf3', 'e4', 'Ne5', 'g6', 'Qg4', 'Qxe5'], ['d4', 'e5', 'dxe5', 'Qe7', 'Bf4', 'Qb4+', 'Qd2', 'Qxb2', 'Qc3', 'Qxc3+'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qh5', 'g6', 'Qf3', 'Nf6', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'd3', 'd6'], ['d4', 'Nf6', 'Bf4', 'd5', 'Nf3', 'Bf5', 'e3', 'e6', 'Bd3', 'Bxd3'], ['d4', 'd5', 'Bf4', 'Nf6', 'Nf3', 'Bf5', 'e3', 'e6', 'Bd3', 'Bxd3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'b3', 'Bc5', 'Bb2', 'd6', 'Nc3', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bc5', 'c3', 'dxc3'], ['d4', 'c6', 'Bf4', 'd5', 'Nf3', 'Bf5', 'e3', 'e6', 'Bd3', 'Bxd3'], ['d4', 'e6', 'Bf4', 'b6', 'Nf3', 'Bb7', 'e3', 'f5', 'Be2', 'Nf6'], ['d4', 'Nf6', 'Bf4', 'Nc6', 'Nf3', 'd6', 'e3', 'Nh5', 'Bg3', 'Nxg3'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'dxc4', 'e4', 'e6', 'Bxc4', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bd7', 'c3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'h3', 'Qe7'], ['d4', 'Nf6', 'Bf4', 'd6', 'e3', 'e6', 'Bd3', 'Nc6', 'Nf3', 'Be7'], ['d4', 'e6', 'Bf4', 'd6', 'Nf3', 'Nf6', 'e3', 'Be7', 'Bd3', 'O-O'], ['d4', 'd5', 'c4', 'Nf6', 'c5', 'Bf5', 'Nf3', 'e6', 'Nc3', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bxb4', 'c3', 'Bc5'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'Bd6', 'Bxd6', 'Qxd6', 'e3', 'Nf6'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nf3', 'Bf5', 'e3', 'a6', 'Bd3', 'Bxd3'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'exf4', 'd4', 'Bb4+', 'Nc3', 'Ba5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'O-O', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nxd4', 'Nxd4', 'exd4', 'Qxd4', 'Qf6'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'Be7', 'e3', 'Nf6', 'Bd3', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd6', 'd4', 'exd4'], ['d4', 'e6', 'Bf4', 'Nf6', 'Nf3', 'c5', 'e3', 'd5', 'c3', 'Nc6'], ['d4', 'Nf6', 'Bf4', 'g6', 'Nf3', 'Bg7', 'e3', 'd6', 'Bd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['d4', 'Nf6', 'Bf4', 'Nd5', 'Bg3', 'Nc6', 'e4', 'Nb6', 'Bb5', 'Na5'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'e6', 'e3', 'Be7', 'c4', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd4', 'Nxd4', 'Nxe5', 'Nh6'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'Bg4', 'f3', 'Bf5', 'Nd2', 'e6'], ['d4', 'c5', 'Bf4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'e5', 'Bg3', 'd5'], ['d4', 'Nf6', 'Bf4', 'd5', 'Nf3', 'e6', 'e3', 'Be7', 'Bd3', 'O-O'], ['d4', 'd5', 'a4', 'Nf6', 'b4', 'Bf5', 'c3', 'e6', 'e3', 'Bd6'], ['d4', 'd5', 'Bf4', 'Nf6', 'Nf3', 'e6', 'e3', 'c5', 'c4', 'cxd4'], ['d4', 'g6', 'Bf4', 'Bg7', 'Nf3', 'd6', 'e3', 'Nf6', 'Bd3', 'Bg4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qc3', 'Bb4', 'Qxb4', 'Nxb4'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'c3', 'Bg7'], ['d4', 'e6', 'Bf4', 'd5', 'Nf3', 'Be7', 'e3', 'Nd7', 'Bd3', 'h6'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nce7', 'Nf3', 'd6', 'c4', 'Nf6'], ['d4', 'Nf6', 'c4', 'g6', 'Nf3', 'Bg7', 'Bg5', 'h6', 'Bh4', 'g5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nxd4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'd4', 'Be7', 'd5', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'h6', 'Bxc6', 'dxc6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'Bg5', 'h6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'Nc3', 'Bb4'], ['e4', 'c5', 'Nf3', 'h6', 'c4', 'b6', 'b3', 'Bb7', 'd3', 'e6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'Nf3', 'Bb4', 'a3', 'Qa5'], ['e4', 'c5', 'Bc4', 'd6', 'Qh5', 'g6', 'Qf3', 'Nf6', 'Nh3', 'Bxh3'], ['d4', 'c5', 'Nf3', 'Nc6', 'c4', 'd6', 'e3', 'e5', 'd5', 'Nce7'], ['e4', 'c5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd4', 'Nxd4', 'Nxd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'e6', 'dxc5', 'Bxc5', 'Be3', 'Bxe3'], ['e4', 'c5', 'Bc4', 'd6', 'Qf3', 'Nf6', 'b3', 'Be6', 'Bb5+', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'b3', 'd6', 'Bb2', 'Bg4'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'd5', 'cxd5', 'Nxd5'], ['e4', 'c5', 'Nf3', 'g6', 'Nc3', 'Bg7', 'd4', 'cxd4', 'Nxd4', 'Nc6'], ['e4', 'Nf6', 'Nc3', 'd5', 'Bb5+', 'c6', 'Ba4', 'dxe4', 'd3', 'exd3'], ['Nf3', 'Nc6', 'e4', 'e5', 'Bb5', 'h6', 'O-O', 'a6', 'Ba4', 'b5'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'Nf3', 'Nc6', 'Bg5', 'h6'], ['e4', 'Nf6', 'Nc3', 'd5', 'e5', 'd4', 'exf6', 'dxc3', 'fxg7', 'cxd2+'], ['d4', 'Nf6', 'Nf3', 'g6', 'c4', 'Bg7', 'Bg5', 'c5', 'Nc3', 'cxd4'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'Bd3', 'd6', 'Nc3', 'Nh5'], ['Nf3', 'Nf6', 'd4', 'd5', 'c4', 'e6', 'Nc3', 'c6', 'Bg5', 'Be7'], ['e4', 'Nf6', 'e5', 'Nd5', 'Bc4', 'Nb6', 'Bb3', 'd6', 'Nf3', 'Bg4'], ['Nf3', 'g6', 'e4', 'Bg7', 'd4', 'e5', 'dxe5', 'Ne7', 'Bg5', 'O-O'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'Bg5', 'dxc4', 'e3', 'Bg7'], ['Nf3', 'Nf6', 'd4', 'Nc6', 'c4', 'e6', 'Nc3', 'Bb4', 'a3', 'Be7'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'c5', 'Nd5', 'Bc4', 'e6'], ['d4', 'Nf6', 'c4', 'g6', 'Nf3', 'd5', 'e3', 'Bg7', 'Nc3', 'O-O'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'e3', 'Bg7', 'Nf3', 'Bg4'], ['e4', 'e5', 'f4', 'd6', 'Nf3', 'Nc6', 'Bb5', 'f6', 'O-O', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'c5', 'Nf3', 'g6', 'd3', 'Bg7', 'd4', 'cxd4', 'Nxd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Bd6'], ['d4', 'b5', 'Na3', 'e5', 'dxe5', 'd5', 'Nxb5', 'c5', 'h4', 'Na6'], ['d4', 'd5', 'Bf4', 'Nf6', 'h3', 'Nc6', 'Nf3', 'g6', 'e3', 'Bg7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Nc6'], ['e4', 'c5', 'c3', 'e5', 'd4', 'cxd4', 'cxd4', 'exd4', 'Qxd4', 'Nc6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'b3', 'Bc5', 'Bc4', 'd6', 'd3', 'Bg4'], ['d4', 'c5', 'd5', 'Nf6', 'c4', 'e5', 'dxe6', 'fxe6', 'Nf3', 'd5'], ['e4', 'e5', 'Nc3', 'Bc5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'O-O'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'Nf6', 'd3', 'Bf5', 'Nc3', 'exd3'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'b6', 'Bd3', 'Bc5'], ['e4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Nc3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'Nc6', 'd4', 'd5', 'e5', 'Bd7'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'c3', 'a6', 'd4', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['d4', 'd5', 'Nf3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'e6', 'c4', 'Bd6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Be7', 'Nf3', 'Nf6', 'Bg5', 'c6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c4', 'e6', 'Nc3', 'Nf6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'O-O', 'a3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'd6', 'c3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Be7', 'O-O', 'd6'], ['g3', 'e5', 'Bg2', 'Nf6', 'Nf3', 'd6', 'O-O', 'Be7', 'd3', 'O-O'], ['e4', 'e5', 'f3', 'd5', 'Nc3', 'd4', 'Nd5', 'Nf6', 'Nxf6+', 'Qxf6'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'Nf6', 'e3', 'Bg4', 'h3', 'Bh5'], ['e4', 'g6', 'd4', 'd6', 'Nf3', 'Bg7', 'Nc3', 'Nf6', 'e5', 'dxe5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'Nc3', 'Qe7', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd3', 'Bd6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd3', 'Bc5', 'O-O', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Bb4', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'cxd4', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Nf6'], ['e4', 'd6', 'd4', 'e5', 'dxe5', 'dxe5', 'Nf3', 'Qxd1+', 'Kxd1', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Bc5', 'b4', 'Bxb4'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'e3', 'Bb4'], ['e4', 'e5', 'Bc4', 'Nc6', 'c3', 'Nf6', 'Nf3', 'Bc5', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'O-O', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Bc5'], ['e4', 'Nf6', 'e5', 'Nd5', 'Nc3', 'Nxc3', 'dxc3', 'd6', 'Bg5', 'Nd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'Bc5', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd4', 'exd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'e6', 'd3', 'Be7'], ['e4', 'c5', 'Nc3', 'd6', 'Nf3', 'Nf6', 'Bb5+', 'Nbd7', 'd3', 'a6'], ['b4', 'e5', 'Bb2', 'Bxb4', 'Bxe5', 'Nf6', 'e3', 'Nc6', 'Bb2', 'O-O'], ['b4', 'e6', 'Bb2', 'd5', 'e3', 'c5', 'bxc5', 'Bxc5', 'Bxg7', 'Be7'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'g6', 'd4', 'Bg7', 'Bd3', 'd6'], ['d4', 'g6', 'e4', 'Bg7', 'Nf3', 'b6', 'Bc4', 'Bb7', 'Nc3', 'e6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Bg4', 'Bf4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'O-O', 'd6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'h3', 'g6', 'c3', 'Bg7'], ['e4', 'c5', 'Nc3', 'Nc6', 'f4', 'd6', 'Nf3', 'Nf6', 'Bb5', 'Bd7'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'h3', 'h6', 'Nf3', 'e6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'Nc3', 'a6', 'd4', 'exd4'], ['e4', 'c5', 'Nc3', 'Nc6', 'f4', 'e6', 'Nf3', 'Nf6', 'Bb5', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c6', 'e4', 'dxe4', 'Nxe4', 'f5'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'e6', 'Qc2', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Nd7', 'O-O', 'a6', 'Bxd7+', 'Bxd7'], ['e3', 'c5', 'b3', 'd5', 'Bb2', 'Nc6', 'Bb5', 'Qc7', 'Qf3', 'Nf6'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'Ne7', 'd3', 'd5', 'exd5', 'Nxd5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c6', 'e4', 'dxe4', 'Nxe4', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'e5', 'dxe5', 'Nxe5', 'Nbd7'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'e6', 'cxd5', 'exd5'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Nd7', 'O-O', 'a6', 'Bxd7+', 'Bxd7'], ['d4', 'd5', 'c4', 'c5', 'cxd5', 'Qxd5', 'Nf3', 'cxd4', 'Nc3', 'Qd8'], ['e4', 'c5', 'Nc3', 'e6', 'f4', 'd5', 'Bb5+', 'Bd7', 'exd5', 'exd5'], ['d4', 'c6', 'c4', 'd5', 'Nf3', 'Nf6', 'Nc3', 'a6', 'Qc2', 'b5'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Bf4', 'Nc6', 'Nf3', 'Bb4+'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nf6', 'e5', 'Nd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'e6', 'cxd5', 'exd5'], ['d4', 'Nf6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'e4', 'O-O', 'e5', 'Ne8'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'exd5', 'Bg5', 'Nbd7'], ['d4', 'Nf6', 'e3', 'd5', 'Bd3', 'Bg4', 'f3', 'Bh5', 'Ne2', 'e6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'd5', 'Bg5', 'c5'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'd4', 'Nf3', 'Nc6', 'a3', 'a5'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'c6', 'd5', 'g6', 'Qc2', 'Qc7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['c4', 'c5', 'Nc3', 'Nf6', 'Nf3', 'g6', 'd4', 'Bg7', 'e3', 'd6'], ['d4', 'd6', 'c4', 'c6', 'Nc3', 'e6', 'e4', 'Be7', 'Nf3', 'Bf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e6', 'd4', 'c5', 'c4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'd6', 'Ng5', 'Qf6'], ['e4', 'e5', 'Nc3', 'Bc5', 'f4', 'Qh4+', 'g3', 'Qf6', 'Nf3', 'exf4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'h3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'a6', 'a4', 'd6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nc3', 'c6', 'd3', 'Qb6', 'Qf3', 'Nf6'], ['d4', 'd5', 'Bf4', 'Bf5', 'Nf3', 'e6', 'e3', 'Nf6', 'h3', 'Nh5'], ['d4', 'd5', 'Nc3', 'c6', 'Bf4', 'Nd7', 'e4', 'dxe4', 'Nxe4', 'Nb6'], ['e4', 'e6', 'd4', 'd6', 'f4', 'Nd7', 'Nf3', 'h6', 'e5', 'd5'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'Nc6', 'd3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qf6', 'O-O', 'Bc5', 'c3', 'a6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Na4', 'd6', 'Nxc5', 'dxc5'], ['Nc3', 'Nf6', 'e3', 'e6', 'd4', 'Bb4', 'Nf3', 'Ne4', 'Bd2', 'Nxd2'], ['e4', 'Nf6', 'd3', 'd5', 'e5', 'Nfd7', 'd4', 'Nc6', 'c3', 'e6'], ['Nc3', 'c6', 'e4', 'd5', 'Nf3', 'd4', 'Ne2', 'c5', 'c4', 'Qc7'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'Nf3', 'Bg4', 'Be2', 'f6'], ['Nc3', 'e5', 'd3', 'Qh4', 'Nf3', 'Qf6', 'Bg5', 'Qe6', 'd4', 'exd4'], ['Nc3', 'd5', 'd4', 'Nf6', 'Bg5', 'Ne4', 'Nxe4', 'dxe4', 'e3', 'f6'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'd4', 'f5', 'c5', 'Nd5'], ['Nc3', 'e5', 'e4', 'd6', 'Nf3', 'g6', 'd4', 'Bg7', 'dxe5', 'dxe5'], ['e4', 'Nf6', 'd3', 'd5', 'g3', 'Nc6', 'Bg2', 'h5', 'c3', 'Bg4'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'a6', 'b3', 'cxb3', 'Qxb3', 'e6'], ['Nc3', 'g6', 'e4', 'Bg7', 'd4', 'd6', 'e5', 'Nc6', 'Nf3', 'dxe5'], ['f4', 'Nf6', 'Nf3', 'd5', 'e3', 'Nc6', 'd3', 'Bg4', 'Be2', 'Qd7'], ['e3', 'Nf6', 'Bc4', 'd5', 'Bb5+', 'c6', 'Ba4', 'e5', 'Qf3', 'Be7'], ['e4', 'Nf6', 'Nc3', 'd5', 'd3', 'dxe4', 'Nxe4', 'Nxe4', 'dxe4', 'Qxd1+'], ['e4', 'd6', 'd4', 'Nf6', 'Bd3', 'c6', 'Nf3', 'Nbd7', 'O-O', 'e5'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Bc4', 'Bg7'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Nf6', 'c4', 'Bb4+'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nce7', 'Nf3', 'Ng6', 'c4', 'Bc5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Bd6', 'c4', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nc6', 'Bd3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Bd6', 'Bd3', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bb4+', 'c3', 'dxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'Nge7', 'c3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7', 'd5', 'Nce7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'c6', 'dxc6', 'Nxc6', 'Nf3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'c3', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Bd6', 'Bd3', 'Ne7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nf6', 'Bd3', 'Bg4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Bc4', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'h6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nf6', 'Bd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Be7', 'O-O', 'O-O'], ['e4', 'c5', 'Nf3', 'd5', 'd4', 'dxe4', 'Bb5+', 'Nd7', 'Ne5', 'cxd4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'e5', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'Bc5'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Qb6', 'Be2', 'Bc5'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'O-O', 'g6', 'Nc3', 'Bg7'], ['e4', 'c5', 'Nc3', 'd6', 'Nf3', 'Nf6', 'd3', 'g6', 'Bg5', 'Bg7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'Bc5', 'd4', 'exd4', 'Nxd4', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'd4', 'exd4', 'Qxd4', 'Bxf3'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'Nc6', 'Be3', 'Nf6', 'e5', 'Ng4'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'g5', 'd4', 'cxd4', 'cxd4', 'Nc6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'e5', 'Nc3', 'b6'], ['e4', 'c5', 'd4', 'cxd4', 'Nf3', 'e5', 'c3', 'dxc3', 'Nxc3', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Bb4', 'Bg5', 'Nbd7'], ['e4', 'd5', 'Bb5+', 'c6', 'Bxc6+', 'bxc6', 'exd5', 'Qxd5', 'Nc3', 'Qxg2'], ['c4', 'e5', 'Nc3', 'd6', 'Nf3', 'Bd7', 'Nd5', 'c6', 'Nc3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'b3', 'Bc5', 'Bb2', 'Nf6', 'Bc4', 'Nxe4'], ['e4', 'c5', 'Qh5', 'Nc6', 'Qxc5', 'd6', 'Qc3', 'Bd7', 'Bb5', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'g6', 'e3', 'Bg7', 'Bxc4', 'Nh6'], ['e4', 'c5', 'Qh5', 'd6', 'Bc4', 'e6', 'Bxe6', 'Bxe6', 'Qd1', 'Nf6'], ['e4', 'e5', 'Qh5', 'Qe7', 'b3', 'Nf6', 'Ba3', 'Nxh5', 'Bxe7', 'Bxe7'], ['e4', 'e5', 'Nc3', 'Bc5', 'Nf3', 'b6', 'Qe2', 'Nc6', 'b3', 'Bb7'], ['e4', 'd5', 'e5', 'f6', 'f4', 'fxe5', 'fxe5', 'Nh6', 'd4', 'Bg4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd4', 'Nf3', 'Qf4', 'Be2', 'Bg4'], ['e4', 'e5', 'Nf3', 'Bd6', 'd4', 'c5', 'dxe5', 'Bxe5', 'Nxe5', 'Qa5+'], ['e4', 'e5', 'Qh5', 'Qf6', 'Qf3', 'Qc6', 'Bb5', 'Qxc2', 'Nc3', 'Bc5'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'g6', 'Bb5', 'Bg7', 'Bxc6', 'bxc6'], ['e4', 'Nf6', 'e5', 'Nd5', 'Bc4', 'e6', 'Nf3', 'Nb6', 'Bb3', 'Nc6'], ['e4', 'e5', 'g3', 'Nc6', 'Bg2', 'Nf6', 'd3', 'Bc5', 'Nf3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'd4', 'cxd4', 'Nxd4', 'Nc6'], ['d4', 'd5', 'a3', 'Nf6', 'Bg5', 'Ne4', 'Nf3', 'Nxg5', 'Nxg5', 'h6'], ['c4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe4+', 'Be7', 'b3', 'Nf6'], ['e4', 'c5', 'f4', 'e6', 'Nf3', 'Bd6', 'd4', 'Qc7', 'e5', 'Be7'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nxe4', 'Nc3', 'Nxc3', 'bxc3', 'e4'], ['e4', 'c5', 'Nf3', 'Nf6', 'Nc3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Qa5'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'Ng5', 'O-O'], ['e4', 'c5', 'Bc4', 'Nf6', 'Nh3', 'Nxe4', 'd3', 'Nd6', 'Qf3', 'f6'], ['e4', 'c5', 'd3', 'g6', 'Nf3', 'Nf6', 'h3', 'Bg7', 'Nh2', 'O-O'], ['e4', 'c5', 'Nc3', 'g6', 'Bc4', 'Nf6', 'd3', 'Bg7', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'b3', 'Bxc4', 'bxc4', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'a6', 'Nc3', 'b5', 'Bd5', 'Bb7'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'Nf6', 'Ng5', 'd5', 'Bxd5', 'Nxd5'], ['e4', 'c5', 'Bc4', 'd6', 'Qf3', 'Nf6', 'b3', 'g6', 'd3', 'Bg7'], ['b3', 'e5', 'e4', 'Nf6', 'Nc3', 'Bb4', 'Qf3', 'O-O', 'Nh3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nh6', 'Nc3', 'Qf6', 'd3', 'Qg6'], ['e4', 'c5', 'd3', 'd6', 'Be3', 'Nf6', 'Nc3', 'g6', 'd4', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Ng5', 'Qxg5', 'd3', 'Qxg2'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['b3', 'e5', 'e4', 'Nf6', 'd3', 'Bb4+', 'Bd2', 'Bxd2+', 'Nxd2', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Ng5', 'Be6', 'Nxe6', 'fxe6'], ['e3', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe4', 'Nf6', 'Qf3', 'Qa5+'], ['e4', 'e5', 'Nf3', 'Ne7', 'Bc4', 'f6', 'd4', 'Nbc6', 'dxe5', 'fxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'h6', 'Nxf7', 'Qe7'], ['e4', 'c5', 'Be2', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qxg2', 'Bf3', 'Qg5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Bc4', 'Bxf3', 'gxf3', 'a6'], ['e4', 'b5', 'Nf3', 'Ba6', 'Nc3', 'Nc6', 'Bd3', 'd6', 'O-O', 'Qd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'd5'], ['e4', 'c5', 'c4', 'Nf6', 'd3', 'e6', 'e5', 'Ng8', 'f4', 'd5'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bc4', 'Nf6', 'Nf3', 'e6', 'd3', 'd5'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'Nf3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Rg8', 'Bxf7+', 'Ke7'], ['d4', 'd5', 'Nc3', 'Nf6', 'e3', 'Nc6', 'Nf3', 'Bg4', 'Bd3', 'e6'], ['e4', 'g6', 'd4', 'Nh6', 'Nc3', 'Bg7', 'Nf3', 'O-O', 'Bf4', 'e6'], ['f3', 'e5', 'e4', 'Nf6', 'Bd3', 'Nc6', 'Ne2', 'd5', 'O-O', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Bd6', 'Nxf7'], ['d4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'Be3', 'Bf5', 'h3', 'Nb4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nf6', 'Nf3', 'a6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'h5'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb3', 'c6', 'Nc3', 'Nf6'], ['e4', 'c5', 'c3', 'd5', 'e5', 'Nc6', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'Bg4', 'f3', 'Bh5', 'Nge2', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bd6', 'O-O', 'Nf6', 'd3', 'O-O'], ['e4', 'd6', 'd4', 'e5', 'dxe5', 'dxe5', 'Nf3', 'Nc6', 'Nc3', 'Nf6'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'c5', 'Bd3', 'd5', 'Qf3', 'dxe4', 'Bxe4', 'e5', 'Ne2', 'Nf6'], ['e4', 'e5', 'Nf3', 'f6', 'Nc3', 'c6', 'Bc4', 'Ne7', 'd4', 'd6'], ['e4', 'e5', 'Nf3', 'f6', 'Nc3', 'c6', 'd4', 'd6', 'dxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Bc5', 'd3', 'h6', 'Nc3', 'c6'], ['d4', 'Nf6', 'Nc3', 'd5', 'Bf4', 'Bf5', 'e3', 'e6', 'Nf3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Bg5', 'O-O'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'Bc4', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'c5', 'Nf3', 'Bg4'], ['f4', 'd5', 'Nf3', 'c5', 'e3', 'Nc6', 'b3', 'Nf6', 'Bb2', 'e6'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'Nc6', 'dxe5', 'Nxe5', 'Nxe5', 'fxe5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'c3', 'Nc6', 'd4', 'cxd4'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'e4', 'Nd4', 'Qxd5', 'Nb3', 'f5'], ['e4', 'c5', 'e5', 'Nc6', 'f4', 'd6', 'Bb5', 'Bd7', 'Nf3', 'dxe5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Nf3', 'Bg4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['Nf3', 'd6', 'd4', 'Nf6', 'd5', 'g6', 'e4', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Nc3', 'd5'], ['Nc3', 'Nf6', 'd4', 'e6', 'Nf3', 'Bb4', 'Bd2', 'd5', 'g3', 'Nbd7'], ['e4', 'e5', 'f4', 'f5', 'Bc4', 'Nc6', 'Nc3', 'Nf6', 'exf5', 'exf4'], ['e4', 'c5', 'd3', 'Nc6', 'c4', 'Nf6', 'Nc3', 'e6', 'Qe2', 'd5'], ['d4', 'Nf6', 'Nf3', 'e6', 'b3', 'd5', 'Bb2', 'Bb4+', 'Nc3', 'Bd7'], ['e4', 'e5', 'Nc3', 'Nf6', 'f4', 'Nc6', 'Nf3', 'd6', 'Bb5', 'Bd7'], ['e4', 'c5', 'Bc4', 'Nc6', 'Qf3', 'Ne5', 'Qc3', 'Nxc4', 'Qxc4', 'e6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qc4', 'Nf6', 'Nc3', 'a6'], ['e3', 'd5', 'Qe2', 'Nf6', 'g3', 'Bg4', 'f3', 'Bh5', 'Bg2', 'Nc6'], ['c4', 'Nf6', 'd4', 'g6', 'd5', 'e6', 'a3', 'Bg7', 'Nc3', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'Qxf3', 'dxe5'], ['e4', 'c5', 'Nf3', 'f6', 'd4', 'e6', 'Bb5', 'Qa5+', 'Nc3', 'a6'], ['c4', 'Nf6', 'f3', 'e5', 'Qa4', 'Nc6', 'a3', 'd6', 'b4', 'Bd7'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'Nxd5', 'Nxd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'Nf6', 'h3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4'], ['Nf3', 'd5', 'c4', 'd4', 'd3', 'c5', 'g3', 'Nc6', 'Bg2', 'e5'], ['d4', 'Nf6', 'Qd3', 'd5', 'Bg5', 'e6', 'Bxf6', 'Qxf6', 'f3', 'c5'], ['e4', 'e5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'Bc4', 'd6', 'd3', 'h6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'Nf6', 'Nc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nc3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'h6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qf3', 'Nc6', 'Bb5', 'Nd4', 'Qd3', 'Nxb5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'a6', 'Ng5', 'Qxg5', 'd4', 'Qxg2'], ['e4', 'e6', 'Nf3', 'g6', 'Ng5', 'Qxg5', 'd4', 'Qe7', 'Nc3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bb4', 'd3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bxc3'], ['e4', 'e5', 'f4', 'd6', 'Bc4', 'Nf6', 'Nc3', 'Nxe4', 'Nxe4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nh6', 'O-O', 'Na5', 'Nxe5', 'd6'], ['d4', 'd5', 'e3', 'c5', 'c3', 'cxd4', 'cxd4', 'Nf6', 'f3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bb4', 'O-O', 'O-O'], ['e4', 'e6', 'Nf3', 'Nf6', 'Bd3', 'c5', 'Nc3', 'a6', 'O-O', 'Nc6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bc4', 'Bxc3'], ['e4', 'c5', 'Bc4', 'b6', 'Nf3', 'e6', 'Ng5', 'a6', 'Qf3', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Bb4+', 'c3', 'Bc5', 'Ng5', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nc6', 'Nf3', 'Bf5', 'Bf4', 'Qd7'], ['e4', 'e5', 'Nc3', 'd6', 'Nf3', 'h6', 'Bc4', 'a6', 'O-O', 'Nc6'], ['d4', 'd5', 'Nc3', 'Nc6', 'e3', 'Nf6', 'g3', 'Bf5', 'Bg2', 'Nb4'], ['e4', 'c6', 'Nc3', 'e6', 'Nf3', 'Bb4', 'a3', 'Bxc3', 'dxc3', 'd5'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nc6', 'Nf3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bb4', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Ng5', 'Qxg5', 'd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Ng5', 'O-O'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Bc5', 'Nxe5', 'O-O', 'Bd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'O-O', 'O-O'], ['e3', 'e5', 'h4', 'Nf6', 'Nf3', 'Nc6', 'b3', 'Bc5', 'Bb2', 'O-O'], ['e4', 'e5', 'Nf3', 'd5', 'd4', 'exd4', 'Nxd4', 'dxe4', 'Nc3', 'Bc5'], ['e4', 'c5', 'Nc3', 'a6', 'Bc4', 'e6', 'd4', 'cxd4', 'Qxd4', 'Nc6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Qh4', 'Qf3', 'Nd4'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'a6', 'Bc4', 'h6', 'O-O', 'b5'], ['g3', 'e5', 'Bg2', 'Nf6', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qa4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Ng5', 'Qxg5', 'd4', 'Bxd4'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nd4', 'c3', 'Nb5', 'Bxb5', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nb4', 'O-O', 'c5', 'Nxe5', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Ng4', 'h3', 'h5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd4', 'Nxd4'], ['e4', 'b6', 'Nc3', 'Bb7', 'Bc4', 'e6', 'f3', 'Nf6', 'e5', 'Ne4'], ['d4', 'e6', 'c3', 'b6', 'a4', 'Bb7', 'e3', 'd5', 'a5', 'Ba6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'f4', 'Bg7', 'Nf3', 'Bg4'], ['e4', 'e6', 'Nf3', 'c5', 'c4', 'b6', 'Nc3', 'Bb7', 'd3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'f3', 'Nxe4'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'exd4', 'Nf3', 'Nxe4', 'Qxd4', 'Nf6'], ['Nf3', 'e6', 'd4', 'd5', 'c4', 'Nf6', 'Bg5', 'b6', 'Bxf6', 'Qxf6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'h6', 'O-O', 'Bc5', 'b4', 'Bxb4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nc6', 'Bb5', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'Bd2', 'Bxc3', 'Bxc3', 'dxe4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Bb4', 'Bd2', 'Nf6'], ['e4', 'e6', 'Nf3', 'c5', 'Nc3', 'd5', 'e5', 'Nc6', 'd4', 'Qb6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Bc5', 'b4', 'Bxb4', 'c3', 'Bc5'], ['e4', 'b6'], ['e4', 'e6', 'f4', 'Nf6', 'Nc3', 'c5', 'Nf3', 'Nc6', 'Bc4', 'd5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Bg5', 'Nbd7'], ['Nc3', 'e6', 'Nf3', 'Nf6', 'e4', 'd5', 'e5', 'Nfd7', 'd4', 'c5'], ['e4', 'e5', 'Bc4', 'Nh6', 'Nf3', 'Nc6', 'c3', 'Na5', 'Be2', 'Bc5'], ['e4', 'f6', 'Nf3', 'e5', 'Nxe5', 'fxe5', 'Qh5+', 'g6', 'Qxe5+', 'Ne7'], ['e4', 'e5', 'Bc4', 'd6', 'd4', 'f6', 'dxe5', 'fxe5', 'Nf3', 'Nf6'], ['e4', 'e6', 'e5', 'd5', 'exd6', 'Bxd6', 'Nf3', 'Nc6', 'c3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'exd4', 'Nf3', 'Bb4+', 'c3', 'dxc3'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['g3', 'e5', 'Bg2', 'Nf6', 'c4', 'c6', 'd4', 'Be7', 'dxe5', 'Qa5+'], ['e4', 'b6', 'd4', 'Bb7', 'Nf3', 'd5', 'e5', 'e6', 'c4', 'c5'], ['g3', 'e5', 'Bg2', 'd5', 'Nf3', 'Nc6', 'e3', 'Bg4', 'd4', 'e4'], ['f4', 'b6', 'Nf3', 'Nf6', 'b3', 'Bb7', 'Bb2', 'e6', 'g3', 'c5'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Be7', 'd4', 'exd4', 'O-O', 'd6'], ['d4', 'Nf6', 'Bf4', 'b6', 'e3', 'd5', 'Nf3', 'e6', 'Nbd2', 'c5'], ['g3', 'd5', 'd4', 'Nc6', 'c3', 'Bf5', 'Nd2', 'e6', 'Ngf3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'Nc6', 'dxe5', 'Nxe5', 'Bg5', 'Be7'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'b5', 'Nf3', 'Nf6', 'Nc3', 'Bd7'], ['e4', 'e5', 'Qf3', 'Nf6', 'Bc4', 'Bc5', 'c3', 'O-O', 'b4', 'Bd6'], ['e4', 'e5', 'd4', 'Qh4', 'Nc3', 'exd4', 'Qxd4', 'Nc6', 'Qd3', 'Bc5'], ['e4', 'e5', 'd3', 'd6', 'Nf3', 'f6', 'd4', 'c6', 'd5', 'cxd5'], ['e4', 'e5', 'Bc4', 'Bb4', 'Qh5', 'g6', 'Qd1', 'Nf6', 'c3', 'Bc5'], ['d4', 'd5', 'Nc3', 'e6', 'e4', 'c6', 'exd5', 'cxd5', 'Bb5+', 'Bd7'], ['d4', 'd5', 'Nf3', 'Bf5', 'Nc3', 'Nc6', 'Bd2', 'Nb4', 'e4', 'dxe4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Bc4', 'Bg7'], ['d4', 'c6', 'c4', 'd5', 'Nc3', 'Bf5', 'e3', 'Nf6', 'Nf3', 'e6'], ['e4', 'e5', 'd4', 'd6', 'Bc4', 'exd4', 'c3', 'dxc3', 'Qb3', 'Qe7'], ['e4', 'e5', 'Bc4', 'Nc6', 'Bxf7+', 'Kxf7', 'Qh5+', 'g6', 'Qf3+', 'Qf6'], ['e4', 'd6', 'd4', 'c6', 'c4', 'Nf6', 'Nc3', 'Bg4', 'Be2', 'Bxe2'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Be3', 'Qb6', 'b3', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e6', 'Nc3', 'd5', 'd4', 'c6', 'Nf3', 'Nf6', 'Bg5', 'Be7'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'a3', 'Bd7', 'Bg5', 'dxc4'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'a6', 'd4', 'cxd4', 'Nxd4', 'Qc7'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Bg4', 'h3', 'Bh5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'Bg5', 'Be7', 'e3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'h6', 'h3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'e6', 'O-O', 'Nc6'], ['e4', 'e5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'Bb5', 'd6', 'd4', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd4', 'exd4', 'e5', 'd5'], ['e4', 'Nc6', 'd4', 'e5', 'Nf3', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'Qf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e6', 'Bb5', 'a6', 'Bxc6', 'bxc6'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'dxc5', 'Bxc5'], ['e3', 'c5', 'd3', 'd5', 'Bd2', 'e5', 'Be2', 'Nc6', 'f3', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nxc6', 'bxc6'], ['c4', 'e6', 'e3', 'd5', 'cxd5', 'exd5', 'Nf3', 'Nf6', 'Nc3', 'Be7'], ['e4', 'c5', 'c3', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'd3', 'Nc6'], ['e3', 'c5', 'Nc3', 'd6', 'Be2', 'g6', 'Bg4', 'Bxg4', 'Qxg4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Nxe5', 'Nxe5', 'd4', 'Bd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'Nc6', 'Nf3', 'f5'], ['e4', 'e5', 'Nf3', 'Nh6', 'Nc3', 'd6', 'Bc4', 'Nc6', 'd3', 'Bg4'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nf3', 'g6', 'Nc3', 'Bg7'], ['c4', 'e6', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'g6', 'g3', 'Bg7'], ['c4', 'e5', 'd3', 'Nf6', 'e4', 'a6', 'd4', 'exd4', 'Qxd4', 'Nc6'], ['c4', 'e6', 'd3', 'Qf6', 'Nf3', 'd5', 'cxd5', 'exd5', 'Nc3', 'Bb4'], ['c4', 'e6', 'd3', 'Qf6', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'Bd2', 'Ne5'], ['d4', 'Nf6', 'c3', 'e6', 'a4', 'Ng4', 'h3', 'Nf6', 'g4', 'g5'], ['d4', 'e5', 'c3', 'd6', 'a4', 'Qh4', 'g3', 'Qe4', 'Nd2', 'Qxh1'], ['e4', 'd6', 'Nf3', 'b6', 'Bb5+', 'Bd7', 'Nc3', 'a6', 'Bxd7+', 'Qxd7'], ['e4', 'd6', 'Nh3', 'c5', 'Ng5', 'Qa5', 'Bc4', 'b5', 'Bxf7+', 'Kd8'], ['e4', 'd6', 'Nc3', 'c5', 'g3', 'g5', 'Nf3', 'Nh6', 'Nxg5', 'f6'], ['d4', 'e6', 'c3', 'Qf6', 'Nd2', 'Nh6', 'b3', 'Ng4', 'f3', 'Ne3'], ['d4', 'd5', 'c4', 'b6', 'cxd5', 'Qxd5', 'Qb3', 'Bb7', 'Qxd5', 'Bxd5'], ['Nc3', 'd6', 'Nf3', 'c5', 'e3', 'b6', 'Nd5', 'Nc6', 'Bb5', 'Bg4'], ['d4', 'd5', 'c3', 'Bf5', 'Na3', 'e6', 'Nb5', 'Nc6', 'f3', 'Nf6'], ['e4', 'd6', 'd4', 'c5', 'd5', 'e6', 'Nf3', 'Na6', 'Bg5', 'f6'], ['d4', 'd5', 'c3', 'Bf5', 'Na3', 'e5', 'b4', 'exd4', 'cxd4', 'Be7'], ['d4', 'e6', 'e3', 'd5', 'c3', 'Nc6', 'b4', 'Bd6', 'a3', 'e5'], ['e4', 'd6', 'd4', 'c5', 'dxc5', 'b5', 'cxd6', 'exd6', 'Bxb5+', 'Bd7'], ['d4', 'd5', 'c3', 'e6', 'b4', 'Nf6', 'Na3', 'Bd6', 'Nb5', 'O-O'], ['d4', 'd5', 'b4', 'c6', 'f4', 'b5', 'Nf3', 'f5', 'h4', 'g6'], ['Nc3', 'd6', 'd3', 'c6', 'e3', 'b5', 'Ne4', 'Na6', 'Nf3', 'f6'], ['e3', 'd5', 'd3', 'c5', 'c3', 'c4', 'dxc4', 'dxc4', 'Bxc4', 'Qxd1+'], ['d4', 'd5', 'c3', 'Nc6', 'e3', 'Nf6', 'f4', 'h6', 'g4', 'Bxg4'], ['d4', 'd5', 'c3', 'c6', 'b4', 'b5', 'a3', 'Nf6', 'Nd2', 'e6'], ['e4', 'd6', 'Nf3', 'c5', 'c3', 'b5', 'd4', 'b4', 'd5', 'Nf6'], ['d4', 'd5', 'c3', 'Nf6', 'b4', 'h6', 'Na3', 'g6', 'e3', 'Bg7'], ['Nf3', 'd6', 'c4', 'b6', 'd4', 'a5', 'Nc3', 'Na6', 'e4', 'e5'], ['d4', 'd5', 'c3', 'c6', 'b4', 'Nf6', 'a4', 'a5', 'bxa5', 'Qxa5'], ['Nf3', 'd6', 'g3', 'c6', 'Bg2', 'd5', 'O-O', 'Nf6', 'b3', 'b5'], ['e3', 'd6', 'd4', 'c5', 'c3', 'Nc6', 'Bb5', 'Bd7', 'c4', 'a6'], ['d4', 'd5', 'c4', 'c6', 'c5', 'b6', 'cxb6', 'axb6', 'e3', 'Na6'], ['d4', 'c6', 'c3', 'd5', 'b4', 'Nf6', 'a4', 'e6', 'a5', 'Be7'], ['d4', 'b6', 'c3', 'e6', 'b4', 'Bb7', 'a3', 'h6', 'e3', 'Nf6'], ['d4', 'e6', 'c3', 'd5', 'e3', 'c5', 'f4', 'Nc6', 'dxc5', 'Bxc5'], ['d4', 'e6', 'e4', 'd5', 'Nc3', 'Bd7', 'Nf3', 'g5', 'Bxg5', 'f6'], ['d4', 'd5', 'c3', 'c6', 'e3', 'e6', 'b4', 'f5', 'f4', 'b5'], ['e3', 'd6', 'c3', 'Nc6', 'b4', 'Ne5', 'd4', 'Ng4', 'Qf3', 'N8f6'], ['d4', 'c5', 'c3', 'd5', 'b4', 'cxd4', 'cxd4', 'Nf6', 'Nc3', 'Bf5'], ['d4', 'g6', 'c3', 'Bg7', 'e3', 'd5', 'Nf3', 'Bg4', 'Be2', 'Nc6'], ['e3', 'd6', 'Qh5', 'g6', 'Qg4', 'h5', 'Qd4', 'Rh7', 'Nf3', 'Nf6'], ['d4', 'Nf6', 'c3', 'g6', 'Nd2', 'd6', 'f4', 'c5', 'g3', 'Bg7'], ['e4', 'd6', 'Nf3', 'c5', 'd4', 'Bg4', 'Be3', 'Nf6', 'Bb5+', 'Nc6'], ['d4', 'e5', 'c3', 'exd4', 'cxd4', 'Nc6', 'Nc3', 'Qf6', 'e3', 'Bb4'], ['e4', 'd6', 'd4', 'c5', 'Nf3', 'Nc6', 'd5', 'Ne5', 'Bd2', 'Nc4'], ['d4', 'd6', 'c3', 'e5', 'b4', 'Nc6', 'a3', 'exd4', 'cxd4', 'd5'], ['e4', 'd6', 'c4', 'c5', 'Bd3', 'Bd7', 'b3', 'b6', 'a4', 'a5'], ['e3', 'd6', 'd4', 'c5', 'c3', 'Bd7', 'a3', 'e5', 'b4', 'Be7'], ['e4', 'e5', 'Bc4', 'Na6', 'Qf3', 'b6', 'Qxf7#'], ['e4', 'e5', 'Bc4', 'Na6', 'Qf3', 'b6', 'Qxf7#'], ['f4', 'e6', 'g4', 'Qh4#'], ['e4', 'c5', 'Bc4', 'e6', 'Ke2', 'Nc6', 'Kf3', 'Nf6', 'Kf4', 'Bd6+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bb4+', 'Nc3', 'Nf6', 'dxe5', 'Nh5'], ['e4', 'e5', 'Bc4', 'd6', 'Qf3', 'Nf6', 'Nh3', 'h6', 'Nf4', 'exf4'], ['e4', 'd5', 'e5', 'c5', 'Bb5+', 'Bd7', 'Be2', 'Nc6', 'f4', 'e6'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'dxe6', 'Bxe6', 'd4', 'Bb4+'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'Nf6', 'Bc4', 'e6', 'Nc3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'Bc5', 'O-O', 'Nd4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nc3', 'Be6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'd5', 'd3', 'Nd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'O-O', 'Nf6', 'Bxf7+', 'Kxf7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'f6', 'dxe5', 'fxe5', 'Bb5', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'c3', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'O-O', 'Nf6', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'Bd7', 'e3', 'Nc6', 'Nb5', 'Rc8'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bd6', 'd5', 'Nce7', 'Nc3', 'a6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Be7', 'd3', 'Nf6', 'Bb5', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'exd6', 'Bxd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'Qf6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'Bg4', 'Bg5', 'Qxg5'], ['e4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'e5', 'Ng4', 'Nd4', 'Nh6'], ['e3', 'e5', 'Bc4', 'Nc6', 'Qf3', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bxc3'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'h6', 'dxc5', 'Qa5+', 'Bd2', 'Qxc5'], ['e4', 'e5', 'c3', 'Nf6', 'd3', 'Nc6', 'b4', 'd5', 'Qe2', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Qf6', 'Be3', 'exd4', 'Bxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Ne7', 'Nc3', 'Nbc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bd3', 'Nf6', 'a4', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'Nxe5', 'Nxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'b3', 'Nf6', 'd3', 'd5', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Be7', 'Nc3', 'Nf6', 'Nd5', 'Nxe4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'f6', 'Bb5', 'fxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'Nc3', 'Bd6', 'dxe5', 'Bxe5'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'd3', 'Be7', 'Nc3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'Nc3', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'Nc3', 'Nf6', 'd4', 'exd4'], ['e4', 'e6', 'Nf3', 'g6', 'd4', 'c5', 'Be3', 'Qb6', 'b3', 'Qb4+'], ['e4', 'd5', 'exd5', 'Qxd5', 'd4', 'e5', 'Nf3', 'e4', 'c4', 'Qd6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'gxf3', 'Nc6'], ['g3', 'd5', 'Bg2', 'f5', 'Nf3', 'Nf6', 'b3', 'e6', 'Bb2', 'Be7'], ['d4', 'Nf6', 'f4', 'd5', 'Nf3', 'c5', 'e3', 'Nc6', 'c3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Nf6', 'd4', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'd6', 'Re1', 'Be7'], ['g3', 'e5', 'Bg2', 'd5', 'd4', 'Nd7', 'Bxd5', 'c6', 'Bxf7+', 'Kxf7'], ['e4', 'c5', 'f4', 'e5', 'Nf3', 'd6', 'fxe5', 'dxe5', 'Bc4', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'c3', 'Qb6', 'exd5', 'exd5'], ['d4', 'd5', 'h3', 'c5', 'Nf3', 'Bf5', 'g3', 'Be4', 'Bg2', 'e6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'c4', 'Qc7'], ['d4', 'd5', 'b3', 'Nf6', 'Ba3', 'Nbd7', 'e3', 'c5', 'dxc5', 'Nxc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'd3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'Qf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'c3', 'Bc5', 'Bg5', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'O-O', 'd6', 'c3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Qc7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'Re1', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'Qf6'], ['d4', 'd5', 'Bf4', 'e6', 'e3', 'Bd6', 'Bg3', 'Nf6', 'c3', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['g3', 'd5', 'Bg2', 'e5', 'e4', 'd4', 'c3', 'Nc6', 'Qb3', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nf6', 'Nc3', 'c5', 'Nf3', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'Bxc3', 'Bxc3', 'Nf6'], ['b4', 'e5', 'b5', 'd5', 'Bb2', 'Bd6', 'Nf3', 'Qe7', 'g3', 'Bg4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'c5', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Nf6', 'O-O', 'd6'], ['b3', 'e5', 'Bb2', 'Nc6', 'g3', 'Nf6', 'Bg2', 'd5', 'e3', 'Bg4'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'c6', 'Bg5', 'e6', 'Nf3', 'd6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nf3', 'd6', 'c3', 'c6'], ['d4', 'e6', 'c4', 'c6', 'Nc3', 'd5', 'e3', 'Nf6', 'Nf3', 'Bb4'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'g5', 'Bc4', 'd6', 'O-O', 'g4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Bb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qc5', 'Be2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd4', 'exd4', 'c3', 'dxc3'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'exd5', 'Bg5', 'Be7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'c6', 'Bg5', 'Bg7', 'Nf3', 'd6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'dxc4', 'e3', 'Bg4'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'g5', 'h3', 'Bg7', 'Bc4', 'd6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nc6', 'a3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e6', 'd4', 'c6', 'Nc3', 'Bb4', 'Bd2', 'd6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'dxc6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'd6', 'dxe5', 'Nxe4', 'Qd5'], ['d4', 'd5', 'Nf3', 'e6', 'Nc3', 'c5', 'e4', 'Nf6', 'e5', 'Nfd7'], ['e4'], ['e4', 'e6', 'd4', 'Bb4+', 'c3'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'g3', 'd5', 'cxd5', 'Nxd5'], ['e4', 'e6', 'e5', 'Bc5', 'd4', 'Be7', 'c3', 'Nh6', 'Bxh6', 'gxh6'], ['e4', 'e5', 'd3', 'Bc5', 'f4', 'Qf6', 'g3', 'exf4', 'Bxf4', 'g5'], ['e4', 'e5', 'Bc4', 'd6', 'Qf3', 'Nf6', 'g4', 'b6', 'g5', 'Bb7'], ['e4', 'e5', 'd3', 'Bc5', 'f4', 'Qf6', 'g3', 'exf4', 'Bxf4', 'g5'], ['e4', 'e5', 'Bc4', 'Qh4', 'Nf3', 'Qxe4+', 'Be2', 'd6', 'd3', 'Qf5'], ['e4', 'e5', 'Bd3', 'Ke7', 'Nf3', 'b6', 'O-O', 'Ba6', 'Ne1', 'Bxd3'], ['f3', 'd5', 'Kf2', 'Bd7', 'g4', 'Be6', 'Kg2', 'Nd7', 'Nh3', 'Nc5'], ['d4', 'd5', 'c3', 'c6', 'Bf4', 'e5', 'dxe5', 'f6', 'Nf3', 'fxe5'], ['Nf3', 'f6', 'd4', 'e5', 'e3', 'exd4', 'exd4', 'f5', 'c3', 'g5'], ['e4', 'c5', 'Nc3', 'e6', 'f4', 'd5', 'Nf3', 'dxe4', 'Nxe4', 'Nc6'], ['f4', 'd5', 'Nf3', 'Nf6', 'e3', 'g6', 'Be2', 'Bg7', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'O-O', 'd6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'Bd3', 'c5'], ['e4', 'e5', 'Nc3', 'Nf6', 'g3', 'Bc5', 'Bg2', 'a5', 'Nge2', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'O-O', 'Nf6', 'Re1', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'Be7'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'c5', 'dxc5', 'Na6'], ['e4', 'c5', 'Nc3', 'Nc6', 'f4', 'g6', 'Nf3', 'Bg7', 'Bb5', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bc5', 'c3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'g6', 'd4', 'exd4', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'Bb4+', 'Bd2', 'a5', 'e3', 'O-O'], ['e4', 'g6', 'Nc3', 'Bg7', 'f4', 'c6', 'g3', 'd6', 'Bg2', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Bg4', 'd4', 'Bxf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'Nc3', 'b5'], ['e4', 'd5', 'Qf3', 'dxe4', 'Qb3', 'Nf6', 'Bc4', 'e6', 'a3', 'Nc6'], ['e4', 'd5', 'Qf3', 'Nf6', 'e5', 'Bg4', 'Qg3', 'Nfd7', 'Qxg4', 'Nxe5'], ['d4', 'd5', 'Nc3', 'c6', 'e4', 'e6', 'exd5', 'exd5', 'Qe2+', 'Qe7'], ['g4', 'Nf6', 'Bg2', 'Nxg4', 'h3', 'Nf6', 'c4', 'd5', 'Qb3', 'Be6'], ['d4', 'd5', 'Nc3'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'b6', 'e4', 'Bb7', 'Bd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'd3', 'd6', 'h3', 'Nf6'], ['e4', 'c6', 'f4', 'd5', 'd3', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'Bg4+'], ['d4', 'g6', 'c4', 'Bg7', 'Nf3', 'a6', 'Bf4', 'd6', 'Nc3', 'Bg4'], ['e4', 'c5', 'Bc4', 'Nc6', 'd3', 'a6', 'a3', 'b5', 'Ba2', 'Bb7'], ['e4', 'e5', 'f4', 'Nc6', 'Bc4', 'Bd6', 'Nf3', 'h6', 'O-O', 'exf4'], ['e4', 'c5', 'Bc4', 'Nc6', 'd3', 'e6', 'Ne2', 'a6', 'a3', 'b5'], ['e4', 'c5', 'Bc4', 'Nc6', 'c3', 'Ne5', 'Qb3', 'Nf6', 'Bxf7+', 'Nxf7'], ['d4', 'Nf6', 'e3', 'g6', 'Nf3', 'Bg7', 'c3', 'O-O', 'b4', 'd6'], ['e4', 'c5', 'Bc4', 'Nc6', 'c3', 'Nf6', 'd3', 'g6', 'Nf3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'O-O', 'd6'], ['d4', 'd5', 'c4', 'Nf6', 'Nf3', 'Bg4', 'e3', 'c6', 'cxd5', 'Nxd5'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'Bb5', 'a6', 'Bc4', 'e6'], ['e4', 'e5', 'f4', 'Nc6', 'Bc4', 'Qh4+', 'g3', 'Qf6', 'd3', 'exf4'], ['d4', 'Nf6', 'Bf4', 'g6', 'Nc3', 'Bg7', 'f3', 'O-O', 'g3', 'd6'], ['d4', 'e6', 'c4', 'c5', 'Nf3', 'd5', 'dxc5', 'Bxc5', 'e3', 'Nf6'], ['f4', 'd6', 'Nf3', 'Nf6', 'e3', 'c5', 'Be2', 'Nc6', 'c3', 'Bg4'], ['e4', 'e5', 'f4', 'exf4', 'Bc4', 'Nc6', 'Nf3', 'd6', 'O-O', 'Nf6'], ['e4', 'e5', 'f4', 'd6', 'Bc4', 'exf4', 'Nf3', 'Nf6', 'O-O', 'Be7'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'b6', 'a3', 'Bb7', 'Qf3', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd3', 'g6', 'Nc3', 'Bg7', 'Be3', 'd6'], ['e4', 'c5', 'Qf3', 'e6', 'd3', 'Nc6', 'c3', 'Nf6', 'Be2', 'd6'], ['Nf3', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'e6', 'O-O', 'Be7'], ['f4', 'e6', 'Nf3', 'Be7', 'b3', 'c5', 'Bb2', 'Nf6', 'Nc3', 'Qc7'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'O-O', 'Nf6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nc6', 'Bc4', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'Nf6', 'd4', 'c6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'd4', 'cxd4', 'Nxd4', 'Ne5'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qc3', 'Nf6', 'Bd3', 'e5'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'Bc5', 'Bc4', 'Nf6', 'b4', 'Bxb4'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bb5', 'g6', 'Bxc6', 'bxc6', 'Nf3', 'Bg7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'a4', 'a6', 'c3', 'Nf6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nxc6', 'dxc6'], ['e3', 'Nf6', 'c3', 'd5', 'd4', 'c5', 'dxc5', 'Nc6', 'b4', 'a5'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'e6', 'dxe6', 'fxe6', 'Nf3', 'Be7'], ['g3', 'e5', 'Bg2', 'Nf6', 'e3', 'd5', 'd4', 'e4', 'Ne2', 'Bd6'], ['g3', 'e5', 'c4', 'Nf6', 'Bg2', 'Bc5', 'Nc3', 'O-O', 'e3', 'c6'], ['e4', 'a6', 'Nf3', 'g6', 'd4', 'd6', 'c4', 'Bg7', 'b3', 'Nd7'], ['d4', 'Nf6', 'Nc3', 'b6', 'b4', 'e6', 'a3', 'Bb7', 'f3', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Bc4', 'e5', 'c3', 'dxc3'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e5', 'd5', 'Nf6', 'Bxc4', 'Bd6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'cxd4', 'cxd4', 'Nc6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd3', 'Nf6', 'Bg5', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'a6', 'a3', 'Nf6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Bb4+'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'd5', 'c6', 'Nc3', 'Qa5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bxb4', 'c3', 'Ba5'], ['d4', 'd5', 'e3', 'a6', 'c4', 'dxc4', 'Bxc4', 'e5', 'Nc3', 'exd4'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'd4', 'd6', 'exd6', 'exd6'], ['e4', 'e5', 'c4', 'Nf6', 'Nc3', 'Bb4', 'd3', 'Bxc3+', 'bxc3', 'h6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'd4', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'a6', 'Bxc6', 'bxc6'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'a3', 'Be7', 'Nf3', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nc6', 'e3', 'Bf5', 'Bxc4', 'Nf6'], ['e4', 'e5', 'd3', 'Nc6', 'Nf3', 'h6', 'Be2', 'Nf6', 'b3', 'Bc5'], ['g3', 'e5', 'Bg2', 'Nf6', 'c3', 'd5', 'Nh3', 'Bxh3', 'Bxh3', 'Nc6'], ['e4', 'e6', 'd4', 'c6', 'Nc3', 'b5', 'a3', 'h6', 'Nf3', 'g5'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Nc6', 'Bxc6+', 'bxc6', 'd4', 'g6'], ['e4', 'c5', 'Nf3', 'd5', 'exd5', 'e6', 'dxe6', 'Bxe6', 'Bb5+', 'Nd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'a6', 'Qb3', 'Na5', 'Qd5', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'a6', 'd4', 'exd4', 'cxd4', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'a6', 'Nc3', 'h6', 'd4', 'Nc6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Nc3', 'a6'], ['d4', 'd5', 'e3', 'Nc6', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'f6', 'Nc3', 'Nc6', 'Bb5', 'Nb4', 'a3', 'Nxc2+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'a3', 'Nf6', 'h3', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'h6', 'Bb5+', 'c6', 'Bc4', 'Nf6'], ['d4', 'd5', 'e3', 'Nc6', 'Nf3', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'Nf6'], ['e4', 'c5', 'Bc4', 'd6', 'd4', 'b6', 'dxc5', 'bxc5', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f5', 'dxe5', 'fxe4', 'Ng5', 'd5'], ['e4', 'e5', 'Nf3', 'f5', 'exf5', 'e4', 'Nd4', 'd5', 'Bb5+', 'c6'], ['e4', 'e5', 'd4', 'd5', 'dxe5', 'd4', 'Bb5+', 'Bd7', 'c4', 'Bxb5'], ['e4', 'e5', 'Nc3', 'd6', 'Bc4', 'Ne7', 'Qh5', 'g6', 'Qf3', 'Be6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'g6', 'Nf3', 'c5'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'Be7', 'd3', 'c6', 'O-O', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'c5', 'Bc4', 'a6', 'd3', 'b5'], ['d4', 'd5', 'e3', 'c6', 'Bd3', 'g6', 'f4', 'f5', 'Nf3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Bd6', 'Nc3', 'c5', 'Bc4', 'a6', 'd3', 'b5'], ['e4', 'e5', 'Nf3', 'd6', 'd3', 'f5', 'Nbd2', 'f4', 'b3', 'Bd7'], ['d4', 'd5', 'e3', 'Nf6', 'Bd3', 'c6', 'c3', 'b5', 'a3', 'a5'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'f6', 'Nc3', 'e5', 'dxe5', 'fxe5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'h3', 'd6', 'Nf3', 'O-O'], ['e4', 'c5', 'c4', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'g6'], ['d4', 'd5', 'Bf4', 'h6', 'e3', 'g5', 'Bg3', 'e6', 'Be5', 'Rh7'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'g5', 'Bc4', 'd6', 'e5', 'Be6'], ['e4', 'c6', 'd3', 'd5', 'exd5', 'Qxd5', 'c4', 'Qd8', 'Be2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Be2', 'c6', 'c3', 'b5', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'd6', 'Nc3', 'Be6', 'Bxe6', 'Qxe6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'd6', 'Bc4', 'Nf6'], ['e4', 'e5', 'd4', 'f5', 'exf5', 'e4', 'f3', 'exf3', 'Qxf3', 'Qh4+'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'd5', 'dxe5', 'dxe4', 'Qxd8+', 'Kxd8'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'b3', 'Bg4', 'Bc4', 'Qe4+'], ['d4', 'd5', 'Nf3', 'g6', 'Bg5', 'Bg7', 'e3', 'Bf6', 'Bxf6', 'Nxf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nxd4', 'Nxe5', 'Bc5', 'Be3', 'f6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f6', 'dxe5', 'fxe5', 'Bc4', 'g6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Qh4', 'g3', 'Qxe4+'], ['c4', 'e5', 'd4', 'f6', 'dxe5', 'fxe5', 'e4', 'c6', 'Bd3', 'Bc5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'f6', 'Nc3', 'b6'], ['d4', 'd6', 'c4', 'f6', 'e3', 'e5', 'Nf3', 'exd4', 'exd4', 'c6'], ['a3', 'e5', 'h4', 'g6', 'h5', 'Bg7', 'hxg6', 'hxg6', 'Rxh8', 'Bxh8'], ['e4', 'c5', 'g3', 'g6', 'Bg2', 'Bg7', 'Nf3', 'Nc6', 'c3', 'e6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'd5', 'Na5', 'Bd2', 'c6'], ['d4', 'd5', 'Nf3', 'Nf6', 'g3', 'Ne4', 'Nbd2', 'c6', 'Bg2', 'Qa5'], ['Nf3', 'e5', 'Nxe5', 'd6', 'Nf3', 'Bd7', 'e4', 'Be7', 'd4', 'c5'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'e6', 'Be3', 'Nc6', 'Qd1', 'd6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'h6', 'Be2', 'Nf6'], ['c4', 'e6', 'Nc3', 'd6', 'e4', 'Bd7', 'd3', 'Be7', 'g3', 'a6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bb5', 'e5', 'Qh5', 'g6', 'Qf3', 'Nge7'], ['d4', 'e6', 'c4', 'c5', 'e3', 'cxd4', 'exd4', 'Nc6', 'Nf3', 'b6'], ['e4', 'e5', 'c4', 'Nf6', 'Nc3', 'Bb4', 'd3', 'c6', 'Bd2', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bc4', 'c5', 'Nc3', 'Nc6'], ['b4', 'e5', 'a3', 'c5', 'b5', 'a6', 'bxa6', 'bxa6', 'Bb2', 'Nc6'], ['e4', 'e5', 'c4', 'Nf6', 'Nc3', 'Nc6', 'd3', 'd6', 'Nf3', 'Bg4'], ['Nf3', 'e6', 'd4', 'c5', 'e3', 'Nc6', 'Bb5', 'Qa5+', 'c3', 'Qxb5'], ['e4', 'e5', 'c4', 'b6', 'Nc3', 'Ba6', 'd3', 'Nf6', 'Nf3', 'Bb4'], ['d4', 'e6', 'e4', 'c5', 'd5', 'Be7', 'd6', 'Bf8', 'e5', 'g6'], ['e4', 'e5', 'c4', 'Bc5', 'Nc3', 'd6', 'd3', 'h6', 'g3', 'c6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'c5', 'Nf3', 'Nc6'], ['e4', 'e6', 'd4', 'd6', 'c4', 'Nf6', 'Nc3', 'a6', 'g3', 'Be7'], ['d4', 'e6', 'e4', 'Qh4', 'Nc3', 'Bb4', 'Bd3', 'Nf6', 'Nf3', 'Bxc3+'], ['e4', 'e6', 'c4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'd3', 'h6'], ['e4', 'e5', 'c4', 'Nf6', 'Nc3', 'Nc6', 'g3', 'd6', 'Bg2', 'g6'], ['d4', 'e6', 'c4', 'g6', 'b3', 'Bg7', 'Bb2', 'Nc6', 'g3', 'd5'], ['e4', 'e6', 'Qf3', 'c5', 'Bc4', 'Nc6', 'c3', 'b6', 'Ne2', 'Bb7'], ['e4', 'e5', 'c4', 'Bc5', 'Nc3', 'd6', 'd3', 'Nc6', 'g3', 'Nd4'], ['e4', 'e6', 'Nf3', 'c5', 'd3', 'Nc6', 'c3', 'b6', 'e5', 'Bb7'], ['e4', 'e5', 'c4', 'Nc6', 'Nc3', 'Bc5', 'd3', 'd6', 'Nf3', 'h6'], ['e4', 'e5', 'c4', 'd6', 'Nc3', 'f5', 'exf5', 'Bxf5', 'Qh5+', 'Bg6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'c5', 'Nc3', 'Nc6', 'Bb5', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'd5', 'exd5', 'Nxd5', 'Nxe5', 'Be6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Nxd5', 'Qxd5', 'd3', 'Bf5'], ['e4', 'c5', 'Nf3', 'g6', 'Bc4', 'e6', 'Nc3', 'a5', 'a4', 'b6'], ['d4', 'Nf6', 'h4'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Bd3', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'bxc6', 'e5', 'Ng4'], ['e4', 'e6', 'Nf3', 'c6', 'Nc3', 'h6', 'd4', 'd5', 'e5', 'f6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nf6', 'Bg5', 'Nc6'], ['d4', 'Nf6', 'e3', 'g6', 'Nc3', 'Bg7', 'Nf3', 'O-O', 'Bd3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Qe2', 'Qxe2+', 'Bxe2', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'd3', 'Nf6', 'h3', 'd5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'e5', 'Nf3', 'Bb4'], ['d4', 'd5', 'c4', 'Nc6', 'cxd5', 'Qxd5', 'Nc3', 'Qa5', 'Bd2', 'e6'], ['d4', 'Nf6', 'e3', 'g6', 'Nc3', 'Bg7', 'h4', 'Nc6', 'Qf3', 'O-O'], ['d4', 'Nf6', 'f3', 'g6', 'Bg5', 'Bg7', 'Bxf6', 'Bxf6', 'e4', 'O-O'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'Ng5', 'Bc5', 'Nxf7', 'Bxf2+'], ['d4', 'e6', 'e4', 'd5', 'e5', 'Nc6', 'Nf3', 'Bb4+', 'c3', 'Be7'], ['d4', 'Nf6', 'Nf3', 'g6', 'c4', 'Bg7', 'Bf4', 'd6', 'Qd2', 'O-O'], ['e4', 'e5', 'd4', 'Bd6', 'dxe5', 'Bxe5', 'Nc3', 'Nf6', 'Nf3', 'Bd6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'Bg5', 'Be7', 'e3', 'h6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'c3', 'Bc5'], ['d4', 'd5', 'Nc3', 'g6', 'e4', 'e6', 'exd5', 'exd5', 'Bd3', 'Bg7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Qe2', 'Qxe2+', 'Bxe2', 'Bf5'], ['a4', 'e5', 'Na3', 'Bc5', 'd3', 'd5', 'b3', 'Nf6', 'Bg5', 'h6'], ['d4', 'Nc6', 'd5', 'Nb4', 'a3', 'Na6', 'e4', 'Nf6', 'Bc4', 'Nxe4'], ['a4', 'e5', 'b3', 'd5', 'Ba3', 'Bxa3', 'Nxa3', 'Nf6', 'Nf3', 'e4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bd7', 'd4', 'exd4'], ['d4', 'c6', 'e4', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nf6', 'Bg5', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Bc5', 'Nxf7', 'Bxf2+'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nce7', 'd6', 'cxd6', 'Qxd6', 'Nd5'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'e6', 'e3', 'b6', 'cxd5', 'cxd5'], ['d4', 'd5', 'c4', 'e6', 'cxd5', 'exd5', 'Nc3', 'Nf6', 'Nf3', 'Bb4'], ['d4', 'd5', 'Nc3', 'e6', 'e4', 'Bb4', 'Bd3', 'c6', 'e5', 'Ne7'], ['Nf3', 'd5', 'd4', 'Bg4', 'Ne5', 'Bh5', 'f3', 'f6', 'Nd3', 'Bg6'], ['d4', 'c6', 'e4', 'e6', 'Nc3', 'Bb4', 'Bc4', 'b5', 'Bb3', 'a5'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qf3', 'Nf6', 'c3', 'Bc5', 'd3', 'O-O'], ['e4', 'c5', 'Bc4', 'Qa5', 'Nc3', 'd6', 'd3', 'h5', 'Bd2', 'Bg4'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Qe7', 'Qxh8', 'Nh6', 'Qd4', 'c5'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'e6', 'Nc3', 'exd5', 'cxd5', 'd6'], ['d4', 'Nf6', 'c4', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nb6', 'Nc3', 'g6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'g4', 'Bg6', 'Bg2', 'h6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bg4', 'h3', 'Bxf3'], ['c4', 'Nf6', 'Nc3', 'g6', 'e4', 'd6', 'g3', 'Bg7', 'Nge2', 'O-O'], ['e3', 'd5', 'b3', 'Nf6', 'Bb2', 'Bf5', 'd3', 'e6', 'Nd2', 'Be7'], ['d4', 'e6', 'c4', 'b6', 'Nc3', 'Bb7', 'e4', 'Bb4', 'Bd3', 'Bxc3+'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nd2', 'e6', 'c3', 'c5'], ['d4', 'Nf6', 'c4', 'g6', 'e3', 'Bg7', 'Nf3', 'O-O', 'h3', 'd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'd6', 'Bg5', 'O-O'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'g6', 'e4', 'Bg7', 'f3', 'c6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nc6', 'Nf3', 'Bg4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e3', 'b6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f3', 'O-O'], ['c4', 'Nf6', 'd4', 'g6', 'Nc3', 'Bg7', 'e4', 'O-O', 'Bd3', 'd6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'h6', 'Bh4', 'Be7'], ['e4', 'c6', 'e5', 'd5', 'd4', 'Bf5', 'f4', 'h6', 'Nf3', 'Bg4'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'g6', 'e4', 'Bg7', 'f3', 'Nbd7'], ['d4', 'g6', 'c4', 'Bg7', 'Nc3', 'd6', 'Nf3', 'c5', 'e4', 'Bg4'], ['e4', 'c6', 'c4', 'd5', 'exd5', 'cxd5', 'd4', 'Nf6', 'Nf3', 'Bg4'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f3', 'O-O'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Bg4', 'Be2', 'Nc6'], ['e4', 'c6', 'd3', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nf6', 'Nxf6+', 'exf6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd6', 'e4', 'Bg7', 'Nf3', 'O-O'], ['d4', 'Nf6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Bc4', 'O-O'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'd4', 'Nf3', 'Nc6', 'e3', 'Bb4+'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'Qb3', 'c6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'e6', 'e3', 'Be7'], ['e4', 'c6', 'd3', 'd5', 'Nd2', 'Nf6', 'g3', 'dxe4', 'dxe4', 'e5'], ['d4', 'f5', 'Bf4', 'Nf6', 'g3', 'e6', 'Bg2', 'Be7', 'Nc3', 'd6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'Bg4', 'd4', 'e6', 'Be2', 'c5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f3', 'O-O'], ['d4', 'g6', 'c4', 'Bg7', 'Nc3', 'c6', 'Nf3', 'd5', 'c5', 'b6'], ['d4', 'Nf6', 'e3', 'g6', 'h3', 'Bg7', 'Bd3', 'd5', 'Nf3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'Bb4+'], ['d4', 'Nf6', 'Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O', 'O-O', 'd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'O-O', 'Bg5', 'd6'], ['d4', 'b5', 'e4', 'Bb7', 'f3', 'a6', 'a3', 'e6', 'Nc3', 'c5'], ['e4', 'c6', 'c4', 'd5', 'exd5', 'cxd5', 'cxd5', 'Nf6', 'Nc3', 'Nxd5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nc6', 'Bxc4', 'Nf6', 'Nc3', 'Bf5'], ['d4', 'g6', 'c4', 'Bg7', 'Nc3', 'c6', 'e4', 'd6', 'f3', 'Nf6'], ['d4', 'e6', 'c4', 'Qf6', 'Nc3', 'Bb4', 'a3', 'Ba5', 'b4', 'Bb6'], ['e4', 'c6', 'f4', 'd5', 'e5', 'h6', 'd4', 'Bf5', 'Bd3', 'Bxd3'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f3', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'exd5', 'Bf4', 'Nc6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'dxc6', 'Nf3', 'g6'], ['e4', 'c5', 'c3', 'g6', 'e5', 'Bg7', 'f4', 'e6', 'Nf3', 'Ne7'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'e6', 'e3', 'Be7', 'Nf3', 'h6'], ['d4', 'Nf6', 'c4', 'g6', 'Bf4', 'Bg7', 'Nf3', 'Nh5', 'Bd2', 'd6'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nc6', 'c3', 'g6', 'd4', 'cxd4'], ['d4', 'd5', 'Nf3', 'Bf5', 'e3', 'g6', 'h3', 'Bg7', 'g4', 'Be6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'dxc4', 'e4', 'b5', 'Nf3', 'h5'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'O-O', 'Nf6', 'Ng5', 'e6'], ['e4', 'c5', 'f4', 'Nc6', 'Nf3', 'd6', 'Bc4', 'e6', 'Qe2', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'e5'], ['e4', 'e5', 'f4', 'd6', 'Nf3', 'Bg4', 'Be2', 'Nc6', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'e5', 'Qd5', 'Be6'], ['e4', 'c5', 'f4', 'e6', 'Nf3', 'd6', 'Bc4', 'a6', 'a3', 'g6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'd4', 'Nxe4', 'Qe2', 'Qe7'], ['e4', 'c5', 'Bc4', 'Nf6', 'Nf3', 'd6', 'd3', 'Nc6', 'Ng5', 'e6'], ['e4', 'e5', 'f4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6', 'fxe5', 'Qxe5+'], ['e4', 'c5', 'c4', 'Nf6', 'f3', 'g6', 'd3', 'd6', 'Bg5', 'Bg7'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'exf4', 'Bc4', 'Nf6', 'Nc3', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'a3', 'g6', 'd4', 'cxd4'], ['e4', 'Nc6', 'f4', 'g6', 'Nf3', 'e6', 'd4', 'Nb4', 'c3', 'Na6'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'Bd6', 'fxe5', 'Nxe5', 'd4', 'Nxf3+'], ['f4', 'd5', 'Nf3', 'Nc6', 'e3', 'e6', 'Ne5', 'Nxe5', 'fxe5', 'f6'], ['e4', 'e5', 'f4', 'd6', 'Nf3', 'Bg4', 'Be2', 'Nf6', 'Nc3', 'h6'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'f3', 'exf3', 'Qxf3', 'Nc6'], ['e4', 'd6', 'f4', 'e5', 'Nf3', 'Nc6', 'fxe5', 'dxe5', 'Bb5', 'Bd7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'c3', 'd5', 'exd5', 'exd5'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Ng5', 'e6', 'Nc3', 'h6'], ['e4', 'e5', 'f4', 'Bd6', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'a6'], ['e4', 'c5', 'Nf3', 'Nf6', 'Nc3', 'd6', 'd4', 'cxd4', 'Nxd4', 'e5'], ['e4', 'd5', 'f4', 'dxe4', 'Nc3', 'Nf6', 'Bc4', 'Bg4', 'Nce2', 'Nc6'], ['e4', 'c5', 'Nf3', 'g6', 'Bc4', 'Bg7', 'Ng5', 'e6', 'Qf3', 'Qe7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'dxc5', 'Bxc5', 'Be3', 'Bxe3'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'Nc3', 'h6', 'd4', 'Nxe4'], ['e4', 'c5', 'Bc4', 'e6', 'd4', 'Nc6', 'd5', 'exd5', 'exd5', 'Ne5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bxe6', 'fxe6', 'O-O', 'Nc6'], ['e4', 'c5', 'Bc4', 'd6', 'Qf3', 'Nf6', 'Nc3', 'e6', 'd3', 'Nc6'], ['d4', 'Nf6', 'Nc3', 'd5', 'e3'], ['b4', 'b5', 'a4', 'Nc6', 'axb5', 'Nxb4', 'Ba3', 'c5', 'c3', 'a5'], ['e4', 'c5', 'Na3', 'e5', 'Nf3', 'Nf6', 'Bd3', 'Nc6', 'O-O', 'Bd6'], ['e4', 'h5', 'Nf3', 'g6', 'd4', 'e6', 'Bg5', 'f6', 'Be3', 'Bh6'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'Nf6', 'e3', 'Nc6', 'Bxc4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'b3', 'O-O'], ['d4', 'e6', 'e4', 'Bb4+', 'Nc3', 'a6', 'Bd2', 'Ba5', 'Nf3', 'h6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Bc5', 'd3', 'd6', 'a3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'b4', 'Nxb4', 'Nxe5', 'd6', 'Nd3', 'Nxd3+'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd3', 'Nf6', 'f4', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'd4', 'Nc6', 'Nf3', 'Qe4+', 'Be3', 'Nb4'], ['e4', 'e5', 'Nf3', 'Qe7', 'd4', 'Qb4+', 'Bd2', 'Qxb2', 'Nc3', 'Bb4'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Nf6'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Qe7', 'd3', 'h6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'd5', 'd4', 'Bd6', 'Bb5', 'Be6'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'Ne7', 'O-O', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Qe7', 'c3', 'Qxe4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'h6', 'd4', 'exd4', 'Nxd4', 'Qf6'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'e6', 'Be2', 'Bd6', 'Bxd6', 'Qxd6'], ['e4', 'e6', 'd4', 'a6', 'e5', 'c5', 'Nf3', 'Qc7', 'Bf4', 'b6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nc6', 'd5', 'Ne5', 'f4', 'Ng6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'Nc3', 'Ng4', 'Qg3', 'h5'], ['e4', 'e6', 'e5', 'f6', 'd4', 'd6', 'Nf3', 'Ne7', 'Nbd2', 'Nec6'], ['e3', 'd5', 'h3', 'e5', 'Nf3', 'e4', 'Ne5', 'h5', 'Qe2', 'f6'], ['e4', 'c5', 'Nc3', 'e5', 'Nf3', 'd6', 'g3', 'Nc6', 'Bg2', 'f5'], ['c4', 'Nf6', 'd4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'd6', 'Bf4', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Nxd8'], ['e4', 'e6', 'd3', 'd5', 'Nd2', 'd4', 'e5', 'c5', 'c3', 'Nc6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f3', 'O-O'], ['e4', 'Nc6', 'Nf3', 'e5', 'd4', 'g6', 'd5', 'Nd4', 'c4', 'Nxf3+'], ['Nf3', 'Nf6', 'd4', 'g6', 'Bg5', 'Bg7', 'Qd2', 'O-O', 'Bh6', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'f5', 'exf5', 'e4', 'Qe2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'd6', 'Bc4', 'Nf6', 'Nc3', 'g6', 'd3', 'Bg7', 'Nf3', 'c6'], ['e4', 'd6', 'd4', 'Nf6', 'f3', 'g6', 'd5', 'Bg7', 'Bc4', 'c5'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'd3', 'g6', 'Be3', 'Bg7'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bg5', 'Bg7', 'c3', 'O-O', 'Nbd2', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e6', 'd3', 'a6', 'Be3', 'Nf6'], ['e4', 'c5', 'Bc4', 'd6', 'Nc3', 'Nf6', 'd3', 'e6', 'f4', 'd5'], ['c4', 'c5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd4', 'e6', 'd5', 'exd5'], ['Nf3', 'e5', 'Nxe5', 'Qe7', 'd4', 'd6', 'Nd3', 'Qe4', 'e3', 'Bg4'], ['g3', 'Nf6', 'd4', 'g6', 'Bg2', 'd5', 'Nc3', 'Bg7', 'Bf4', 'c5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'Nf3', 'O-O'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Bg4', 'Be2', 'Nf6', 'O-O', 'e6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'e5', 'dxe5', 'dxe5', 'Qxd1+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'a6', 'a3', 'Nf6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'e6', 'Bd3', 'b6', 'c3', 'Bb7'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Nc6', 'Bxc6+', 'bxc6'], ['Nf3', 'd5', 'd4', 'e6', 'Bf4', 'b6', 'e3', 'Bb7', 'Bd3', 'Qe7'], ['d4', 'Nf6', 'Nf3', 'e6', 'h3', 'b6', 'g3', 'Bb7', 'Bg2', 'd6'], ['Nf3', 'd5', 'd4', 'e6', 'Bf4', 'h6', 'e3', 'a6', 'Bd3', 'Nc6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd6', 'h4', 'Nf6', 'Ng5', 'Be7'], ['d3', 'd5', 'Bf4', 'Nc6', 'Nf3', 'e6', 'e4', 'dxe4', 'dxe4', 'Qxd1+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Ng5', 'd5', 'exd5', 'f6'], ['d4', 'd5', 'e4', 'dxe4', 'f3', 'exf3', 'gxf3', 'Nf6', 'Be3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd5', 'Nc3', 'd4', 'Nb5', 'Nc6', 'Bc4', 'Nh6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'a6', 'Ng5', 'Nf6', 'Nxf7', 'Bg4'], ['e4', 'e6', 'Nf3', 'b6', 'e5', 'Nc6', 'Bd3', 'Nb4', 'Be4', 'Nd5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Bf5', 'Bxc4', 'Nc6', 'Nf3', 'Nb4'], ['e4', 'e6', 'Nf3', 'Bc5', 'Nc3', 'Bxf2+', 'Kxf2', 'Nf6', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Nxd5', 'Qxd5'], ['e4', 'e5', 'Bc4', 'd6', 'Qh5', 'Qe7', 'd3', 'Be6', 'Bb5+', 'Bd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'g6', 'O-O', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'O-O'], ['d4', 'Nf6', 'Nc3', 'g6', 'e4', 'd6', 'f4', 'Bg7', 'Nf3', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'a6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'Nf6', 'd3', 'd6'], ['e4', 'c5', 'c3', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'dxc5', 'Bxc5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'Bc5'], ['e4', 'c5', 'Nc3', 'd6', 'Nge2', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'c6', 'dxc6', 'e5', 'Bb5', 'bxc6'], ['g3', 'Nf6', 'Bg2', 'Nc6', 'Nf3', 'Ng4', 'O-O', 'Na5', 'Nc3', 'e6'], ['g3', 'g6', 'Bg2', 'Bg7', 'Nf3', 'Nf6', 'Nc3', 'O-O', 'O-O', 'd5'], ['g3', 'e6', 'Bg2', 'c6', 'Nf3', 'f6', 'd4', 'd5', 'Nc3', 'Na6'], ['e3', 'g6', 'd4', 'Bg7', 'c3', 'e6', 'a4', 'Ne7', 'Bc4', 'O-O'], ['g3', 'd5', 'Bg2', 'e6', 'Nf3', 'Be7', 'd3', 'Nc6', 'O-O', 'Nh6'], ['e4', 'g6', 'Nf3', 'Bg7', 'g3', 'c5', 'Bg2', 'Nc6', 'd3', 'e6'], ['g3', 'd5', 'Bg2', 'g6', 'Nf3', 'Bg7', 'd3', 'Nc6', 'O-O', 'Nf6'], ['Nf3', 'g6', 'd4', 'Bg7', 'e3', 'e6', 'Bb5', 'Ne7', 'Nc3', 'O-O'], ['g3', 'Nc6', 'Bg2', 'b6', 'Nf3', 'Bb7', 'O-O', 'e5', 'd3', 'd5'], ['e4', 'g6', 'Nf3', 'Bg7', 'Bc4', 'c5', 'Ng5', 'e6', 'd3', 'Nc6'], ['e4', 'g6', 'Nf3', 'Bg7', 'Bc4', 'c5', 'Ng5', 'e6', 'Qf3', 'Qxg5'], ['g3', 'g6', 'Bg2', 'Bg7', 'Nf3', 'Nc6', 'Nc3', 'd6', 'O-O', 'Nh6'], ['e4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'c5', 'b3', 'Nc6', 'Bb2', 'e6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'e5', 'O-O', 'Nf6', 'Nc3'], ['g3', 'b6', 'Bg2', 'Nc6', 'Nf3', 'Bb7', 'd4', 'g6', 'd5', 'Nb4'], ['d4', 'd5', 'c4', 'Be6', 'Nc3', 'Nf6', 'Bg5', 'dxc4', 'e3', 'Qd7'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb3', 'Nf6', 'd3', 'Bg4'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb3', 'Nf6', 'Qf3', 'Bg4'], ['d4', 'd5', 'c4', 'a6', 'Nc3', 'Be6', 'Bg5', 'dxc4', 'e3', 'b5'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'Bg4', 'h3', 'Bh5', 'g4', 'Bg6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nc3', 'e6', 'Nf3', 'c5'], ['d4', 'e6', 'c4', 'd6', 'Nc3', 'h5', 'Nf3', 'Be7', 'e3', 'g5'], ['d4', 'e6', 'c4', 'c5', 'Nc3', 'cxd4', 'Qxd4', 'b6', 'Nf3', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'g4', 'Bg6', 'h4', 'h6'], ['d4', 'c6', 'c4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'Bg4', 'Bg5', 'Bxf3'], ['e4', 'c6', 'f4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'd4', 'g6'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'c6', 'Nf3', 'Bb4', 'cxd5', 'Bxc3+'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nf6', 'Nf3', 'Bg4'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nf6', 'Bb5+', 'Bd7'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'Bg5', 'c6', 'e3', 'Bb4'], ['d4', 'd5', 'Nc3', 'e6', 'e4', 'Bb4', 'exd5', 'Bxc3+', 'bxc3', 'exd5'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Bg4', 'Nc3', 'e6'], ['d4', 'Nf6', 'c4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'O-O', 'Bg5', 'h6'], ['e4', 'c6', 'c3', 'd5', 'e5', 'Bf5', 'd4', 'e6', 'Be3', 'Nd7'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Bb4', 'Bd2', 'O-O'], ['g3', 'd5', 'Bg2', 'c5', 'd4', 'Nc6', 'dxc5', 'Nf6', 'a3', 'a5'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'a6', 'Nf3', 'b5', 'a4', 'b4'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'Bf5', 'd4', 'e6', 'Bd3', 'Bxd3'], ['d4', 'd5', 'c4', 'e5', 'Nc3', 'dxc4', 'Nf3', 'Bb4', 'Nxe5', 'f6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'e5', 'dxe5', 'Qxd1+', 'Nxd1', 'Nc6'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'Bf5', 'd4', 'e6', 'Bd3', 'Bxd3'], ['d4', 'd5', 'c4', 'Nf6', 'Nf3', 'c6', 'Nc3', 'Bf5', 'Bg5', 'h6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd3', 'Nf6', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'Bd6', 'O-O', 'O-O'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'f3', 'exf3', 'Qxf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd4', 'Be7', 'dxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['d4', 'd5', 'e3', 'Nf6', 'h3', 'Nc6', 'Nf3', 'Bf5', 'a3', 'e6'], ['e4', 'e6', 'd4', 'a6', 'Nf3', 'Be7', 'Bc4', 'c5', 'Nc3', 'b5'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'd6', 'Nc3', 'b6', 'Bc4', 'Bb7'], ['d4', 'd5', 'e3', 'Nf6', 'Bd3', 'Nc6', 'f4', 'e6', 'c3', 'Bd6'], ['e4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'e5', 'Bxc3', 'bxc3', 'Nd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Nf6', 'd3', 'Be7'], ['e4', 'Nc6', 'Nf3', 'e5', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['c4', 'e5', 'e3', 'Nc6', 'd4', 'Nf6', 'Nc3', 'Bb4', 'Bd3', 'd6'], ['e4', 'e5', 'd3', 'Nc6', 'c3', 'Bc5', 'h3', 'd6', 'Be2', 'Nge7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e5', 'Bb5', 'Nf6', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'Nc3', 'a6', 'Ba4', 'b5'], ['c4', 'e5', 'g3', 'Nc6', 'Bg2', 'Nf6', 'Nc3', 'd6', 'e3', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f5', 'Nc3', 'Qe7', 'Be2', 'f4'], ['e4', 'd6', 'Nf3', 'e6', 'd4', 'g6', 'Nc3', 'Bh6', 'Bxh6', 'Nxh6'], ['e4', 'd6', 'd4', 'Nd7', 'Nc3', 'b6', 'Nf3', 'c6', 'Bd3', 'e5'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'e5', 'g3', 'a6', 'Bg2', 'b5'], ['e4', 'c5', 'f4', 'Nc6', 'Nf3', 'd6', 'c3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'Nc6', 'a3', 'a6', 'd3', 'b5'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'h6', 'Nc3', 'Nf6', 'a3', 'c6'], ['d4', 'e6', 'e4', 'd5', 'e5', 'c5', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'd3', 'Be7'], ['d4', 'd5', 'Nf3', 'g6', 'g3', 'Bg7', 'c3', 'Nf6', 'Bg2', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7', 'O-O', 'Nxd4'], ['d4', 'e6', 'e4', 'c6', 'c4', 'Bb4+', 'Bd2', 'Bxd2+', 'Qxd2', 'd6'], ['d4', 'd5', 'c4', 'c5', 'dxc5', 'Qa5+', 'Nc3', 'dxc4', 'Qd5', 'e6'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nf3', 'Bg4', 'e3', 'g6', 'Be2', 'Bh6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7'], ['b4', 'e5', 'Bb2', 'Bxb4', 'Bxe5', 'f6', 'Bb2', 'd5', 'e3', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'e6', 'a4', 'c5', 'e4', 'cxd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'O-O', 'g6'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nb6', 'Nc3', 'g6'], ['d4', 'g6', 'c4', 'Bg7', 'e4', 'Nc6', 'Nf3', 'e5', 'd5', 'Nd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nxc6', 'bxc6'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'd4', 'Nf3', 'Nc6', 'a3', 'g6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'Bg5', 'Be7', 'Nc3', 'Bb7'], ['h4', 'Nf6', 'Rh3', 'd6', 'Rf3', 'c5', 'Rd3', 'e6', 'a4', 'Nc6'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'c6', 'Nc3', 'Bg4', 'h3', 'Bxf3'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'b6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nd2', 'e5'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'Bg5', 'Be7', 'Nc3', 'Bb7'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'e4', 'Bb7', 'e5', 'Ne4'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Bg5', 'Bg4', 'e3', 'h6'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'g3', 'e6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'a6', 'Ng5', 'e6', 'Nf3', 'b5'], ['d4', 'e6', 'c4', 'd5', 'Nf3', 'c5', 'e3', 'dxc4', 'Bxc4', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'e4', 'Bb7', 'Qc2', 'd5'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'Nc3', 'Bb7', 'Bg5', 'Be7'], ['d4', 'd6', 'e4', 'e5', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8', 'Nf3', 'Nc6'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'Nc6', 'e4', 'Bg4', 'Be3', 'Bxf3'], ['e4', 'c5', 'Nf3', 'd6', 'Be2', 'Nf6', 'd3', 'g6', 'O-O', 'Bg7'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'e6', 'e5', 'Qc7', 'Qe2', 'Nge7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'O-O', 'Bd3', 'c5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bd3', 'g6'], ['d4', 'e5', 'c4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Bc5', 'Nf3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e6'], ['d4', 'Nf6', 'Bg5', 'h6', 'Bxf6', 'gxf6', 'Nf3', 'b6', 'e3', 'Bb7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'Bd3', 'e6', 'O-O', 'd5'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'h6', 'd3', 'b6', 'a3', 'a6'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'e6', 'fxe6', 'e4', 'Ne5'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'h6', 'd3', 'Nf6', 'a3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Bb4', 'a3', 'Bxc3'], ['d4', 'f5', 'g3', 'e6', 'Bg2', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bd3', 'a6'], ['e4', 'c5', 'c4', 'Nc6', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'exd5', 'Bg5', 'Be7'], ['d4', 'Nf6', 'e3', 'd5', 'Nf3', 'Nc6', 'Be2', 'Bf5', 'Nc3', 'e6'], ['e4', 'c5', 'c4', 'Nc6', 'Nf3', 'g6', 'd4', 'b6', 'd5', 'Nb8'], ['d4', 'e6', 'c4', 'd5', 'Nf3', 'dxc4', 'e4', 'c6', 'Bxc4', 'b5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'Nf3', 'f6', 'Qa4+', 'Qd7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'O-O'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be7', 'Qb5+', 'Nc6'], ['g4', 'e6', 'Bg2', 'f5', 'gxf5', 'exf5', 'c4', 'Qf6', 'Qb3', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['c4', 'e5', 'Nc3', 'f5', 'g3', 'Nc6', 'Bg2', 'Nf6', 'e3', 'Bb4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nc6', 'O-O', 'Bc5', 'd3', 'O-O'], ['e4', 'c6', 'd4', 'd5', 'f3', 'e6', 'Nc3', 'Nf6', 'Bd3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd3', 'd6'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'Nf6', 'Bc4', 'e6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'a6', 'c3', 'cxd4', 'cxd4', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Bd7', 'Nf3', 'Qb6'], ['e4', 'c5', 'Bc4', 'd6', 'd3', 'Nc6', 'Bb5', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Nc3', 'Bg4', 'h3', 'Bh5'], ['e4', 'c5', 'Bc4', 'd6', 'Qh5', 'g6', 'Qf3', 'Nf6', 'd3', 'Nc6'], ['e4', 'c5', 'Bc4', 'd6', 'f4', 'Nf6', 'd3', 'Nc6', 'Nf3', 'a6'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'd5', 'Bb5', 'f6', 'Ne2', 'Ne7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'f3', 'e5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'Nc3', 'c6', 'd3', 'a5'], ['e3', 'e5', 'b3', 'd5', 'Bb2', 'Nc6', 'Bb5', 'Bd6', 'Bxc6+', 'bxc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'd6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'd4', 'f6', 'Nf3', 'Nc6', 'Bc4', 'd6', 'O-O', 'h5'], ['d4', 'd5', 'e3', 'Nc6', 'c3', 'Nf6', 'f4', 'e6', 'Bd3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bg5', 'h6', 'Bh4', 'g5', 'Bg3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bd3', 'e5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'h3', 'Bh5', 'g4', 'Bg6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'a6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd3', 'd6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'c3', 'd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'd6', 'Nd5', 'Nxe4'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bg4', 'Bf4', 'Nbd7'], ['c4', 'e5', 'Nf3', 'Nc6', 'Qb3', 'Nf6', 'h3', 'Bc5', 'e3', 'Ne4'], ['e4', 'c5', 'Nf3', 'f6', 'Bc4', 'Qa5', 'e5', 'b5', 'Be2', 'c4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Nc3', 'Nf6'], ['e4', 'c5', 'Bc4', 'd6', 'Bxf7+', 'Kxf7', 'd3', 'Nf6', 'h3', 'd5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'c4', 'c5', 'Nc3', 'Nf6'], ['e4', 'g6', 'd4', 'Bg7', 'Nc3', 'c6', 'd5', 'cxd5', 'Nxd5', 'Nf6'], ['e4', 'c6', 'e5', 'd5', 'd4', 'Bf5', 'Bd3', 'e6', 'Bxf5', 'exf5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'Nc3', 'Nc6', 'O-O', 'Nd4'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nf6', 'Bd3', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd4', 'Nf3', 'Qc5', 'd4', 'Qd6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Qe7', 'Nf3', 'd5', 'exd5', 'e4'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'f6', 'Nc3', 'c6', 'Nf3', 'b5'], ['Nf3', 'Nc6', 'c3', 'e5', 'e4', 'Nf6', 'h3', 'Nxe4', 'Qe2', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'd3', 'e5', 'Nc3', 'Qe6', 'Qf3', 'c6'], ['Nf3', 'c5', 'd4', 'cxd4', 'Nxd4', 'd5', 'g3', 'Nc6', 'c3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'f6', 'd4', 'exd4', 'Bxc6', 'Qe7'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nf6', 'f3', 'Nc6', 'Qc3', 'Bb4'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'c6', 'Na4', 'Na6', 'Nf3', 'Ne4'], ['c4', 'e5', 'f3', 'Nf6', 'Nc3', 'Nc6', 'e3', 'd6', 'd4', 'exd4'], ['d3', 'Nc6', 'c3', 'e5', 'Nf3', 'f5', 'Qb3', 'e4', 'Ng5', 'Qe7'], ['d3', 'e5', 'Nf3', 'Nc6', 'Bg5', 'f6', 'Be3', 'Bb4+', 'Nc3', 'Nge7'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Nxc3', 'Bb4', 'Bd2', 'Qe7'], ['e4', 'e5', 'Qh5', 'Qe7', 'd3', 'g6', 'Qf3', 'Nf6', 'Bg5', 'h6'], ['e4', 'e5', 'Nc3', 'Nc6', 'Nf3', 'g6', 'd4', 'f5', 'Nxe5', 'Qf6'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'e6', 'Bf4', 'Bb4', 'Qc2', 'Ne4'], ['d4', 'e6', 'c4', 'Ne7', 'e4', 'h6', 'Nc3', 'a6', 'Qg4', 'g5'], ['e4', 'c5', 'Bb5', 'a6', 'Bc4', 'd6', 'Qf3', 'Nf6', 'd3', 'e6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Be2', 'O-O'], ['d4', 'c6', 'e4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'c5'], ['e4', 'c5', 'Nc3', 'Nc6', 'd3', 'd6', 'h3', 'Nf6', 'Nf3', 'e5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'cxd4', 'Nxd4', 'g6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'Bg4', 'cxd5', 'Nxd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'f4', 'Nxe4'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nc6', 'Bxc4', 'e5', 'Qf3', 'f6'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Be2', 'e4', 'Nh4', 'Qg5'], ['e4', 'Nc6', 'd4', 'e6', 'd5', 'exd5', 'exd5', 'Nce7', 'd6', 'cxd6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qc4', 'Qh4', 'Nf3', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nf6', 'e5', 'Ng4', 'd4', 'cxd4'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd5', 'exd5', 'Qxd5', 'd4', 'Bb4+'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c5', 'cxd5', 'Qa5', 'dxe6', 'Bxe6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'Nf3', 'Bxc3+', 'bxc3', 'Nf6'], ['a3', 'd5', 'g3', 'c5', 'Bg2', 'Nf6', 'Nf3', 'Nc6', 'b3', 'Bg4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Be7', 'e3', 'O-O'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'Bg4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'Nf3', 'Nf6', 'e3', 'Ne4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'h3', 'Nf6'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'Nf6', 'Ne5', 'Nc6', 'e3', 'Nxe5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bb5', 'Nf6', 'O-O', 'e6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c5', 'cxd5', 'exd5', 'e3', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nc6', 'e3', 'e6', 'Bxc4', 'a6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'c6', 'Bxc4', 'b5', 'Bd3', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'Nc3', 'Nc6', 'd3', 'h6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Bf5', 'e4', 'Bg6', 'Nf3', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'Bc4', 'Nc6', 'a3', 'd6', 'h3', 'e6', 'Nf3', 'Nf6'], ['Nf3', 'd5', 'g3', 'Nf6', 'Bg2', 'Bg4', 'd3', 'Nc6', 'Bf4', 'h6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'd6', 'Nc3', 'Nf6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'e3', 'Bg7', 'Nf3', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Nc6', 'c4', 'Bd7', 'Bxc6', 'Bxc6'], ['d4', 'Nf6', 'c4', 'c6', 'Nc3', 'h6', 'e3', 'e6', 'Nf3', 'Bb4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Bb4', 'e3', 'Ne4'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'Nc6', 'a3', 'a6', 'Nf3', 'd6'], ['e4', 'c5', 'd4', 'cxd4', 'Nf3', 'd6', 'Qxd4', 'Nc6', 'Qa4', 'Bd7'], ['Nf3', 'c5', 'g3', 'g6', 'Bg2', 'Bg7', 'd3', 'd5', 'O-O', 'Nc6'], ['Nf3', 'd5', 'g3', 'b6', 'Bg2', 'Bb7', 'd3', 'Nf6', 'O-O', 'h5'], ['Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'd3', 'O-O', 'O-O', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'g3', 'a6', 'Bg2', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'Ng5', 'e6', 'Nxf7', 'Kxf7', 'Bc4', 'Nf6'], ['d4', 'd5', 'Nc3', 'e6', 'e4', 'Bb4', 'exd5', 'Bxc3+', 'bxc3', 'Qxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'h3', 'Nf6'], ['e4', 'd5', 'Nc3', 'd4', 'Nb1', 'e5', 'h3', 'Nf6', 'd3', 'Nc6'], ['e4', 'c6', 'Nf3', 'Qc7', 'd4', 'd6', 'Nc3', 'Nd7', 'Bf4', 'e5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'Qxf3', 'Nd7'], ['e4', 'd5', 'e5', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qa4', 'Bd7'], ['d4', 'd5', 'Nf3', 'e6', 'Nbd2', 'Nc6', 'c3', 'Bd6', 'e4', 'h6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'd3', 'h6', 'h3', 'Nf6'], ['d4', 'd5', 'c4', 'Nc6', 'cxd5', 'Qxd5', 'Nf3', 'Nf6', 'Nc3', 'Qd8'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'O-O', 'Bg4', 'd3', 'h6'], ['c4', 'e5', 'g3', 'd6', 'Bg2', 'Nc6', 'Nc3', 'Nf6', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nd7', 'O-O', 'h6', 'h3', 'g5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'd6', 'Bg5', 'Be7', 'Bxe7', 'Qxe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'h3', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Qh5', 'd6', 'Bc4', 'g6', 'Qe2', 'Nf6', 'Qf3', 'Bg7'], ['e4', 'e6', 'Nf3', 'd5', 'Nc3', 'd4', 'Nb5', 'c5', 'c3', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Nf6', 'Nc3', 'c6', 'Bc4', 'h6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'Nc3', 'h6', 'Nxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'd3', 'h6', 'Be3', 'Bg4'], ['e4', 'e6', 'Nf3', 'b6', 'd4', 'Bb7', 'Nc3', 'Bb4', 'Bd2', 'Bxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'd6', 'd4', 'exd4'], ['e4', 'e6', 'Bc4', 'c5', 'd4', 'a6', 'd5', 'b5', 'Be2', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'a3', 'h6', 'd3', 'a6'], ['e4', 'e5', 'f4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd3', 'Bg4'], ['d4', 'd5', 'e3', 'Nc6', 'c3', 'Bf5', 'Nd2', 'Nf6', 'a3', 'h6'], ['e4', 'e5', 'Bc4', 'd6', 'Nc3', 'Nc6', 'a3', 'a6', 'Nf3', 'Be7'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'd5', 'e5', 'dxc4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'Be3', 'Nf6', 'Nc3', 'Ng4'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'h6', 'd4', 'Nc6', 'dxe5', 'a6'], ['Nf3', 'd5', 'd4', 'Nf6', 'a3', 'Nc6', 'Nc3', 'a6', 'Bf4', 'e6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Bb4+', 'Nbd2', 'Nf6', 'cxd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Nc6', 'Bc4', 'Nh6', 'd3', 'Be7'], ['d4', 'd5', 'Nf3', 'Bg4', 'Nbd2', 'Nc6', 'c3', 'h6', 'Qa4', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'g6', 'Bc4', 'e6', 'Nc3', 'Be7', 'd4', 'Nf6', 'e5', 'Nd5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'Nc3', 'Bg4', 'h3', 'Bxf3'], ['Nf3', 'd5', 'd4', 'Bg4', 'Ne5', 'Bh5', 'c4', 'c6', 'cxd5', 'Qa5+'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'Nc3', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Nc3', 'd6', 'Bc4', 'Nc6', 'd3', 'h6', 'Qf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'd3', 'h6', 'h3', 'Bh5'], ['e4', 'g6', 'Nf3', 'Bg7', 'Bc4', 'c6', 'h3', 'd5', 'exd5', 'cxd5'], ['e4', 'd5', 'e5', 'h5', 'd4', 'h4', 'h3', 'c6', 'Nc3', 'Bf5'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nc6', 'a3', 'Nf6', 'Nd2', 'Be7'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bf4', 'Bb4'], ['e4', 'e5', 'Bc4', 'd6', 'Qf3', 'Nf6', 'h3', 'h6', 'd3', 'Be7'], ['e4', 'e6', 'Nf3', 'Nf6', 'e5', 'Ng4', 'h3', 'Nh6', 'd4', 'Nf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'b3', 'Nxe4', 'd4', 'f6'], ['e4', 'e5', 'Nf3', 'Bc5', 'a3', 'd6', 'Nc3', 'Bd7', 'Be2', 'Nf6'], ['e4', 'Nc6', 'd4', 'e6', 'e5', 'd5', 'exd6', 'cxd6', 'Nf3', 'Nb4'], ['e4', 'b6', 'Nf3', 'h5', 'Nc3', 'Rh6', 'd4', 'Rg6', 'Bd3', 'Rxg2'], ['e4', 'b6', 'Nf3', 'h5', 'Bc4', 'Rh6', 'd4', 'Rc6', 'Bd5', 'Rf6'], ['e4', 'd5', 'Qh5', 'dxe4', 'Qxf7+', 'Kxf7', 'Bc4+', 'Be6', 'Bxe6+', 'Kxe6'], ['e4', 'e5', 'd3', 'd5', 'Nh3', 'h6', 'exd5', 'Qxd5', 'Nc3', 'Qd7'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Na5', 'a3', 'Nc4', 'Bxc4', 'Nf6'], ['e4', 'Nc6', 'd4', 'b6', 'd5', 'Nb8', 'Nc3', 'g6', 'Nf3', 'Bg7'], ['e4', 'b6', 'd4', 'Nc6', 'd5', 'Ne5', 'Bf4', 'Ng4', 'h3', 'N4f6'], ['e4', 'e6', 'd4', 'c6', 'Nf3', 'd5', 'e5', 'c5', 'c3', 'Qb6'], ['d4', 'e6', 'c4', 'Nf6', 'Nc3', 'c5', 'Bf4', 'Qb6', 'dxc5', 'Bxc5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf3', 'Bc5'], ['e4', 'c5', 'f4', 'e6', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxe5', 'Qg5', 'Ng4', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Be3', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Bc4', 'Nc6'], ['e4', 'c5', 'Nc3', 'e6', 'g3', 'd6', 'Bg2', 'Nc6', 'd3', 'g6'], ['d4', 'e6', 'e4', 'c5', 'c3', 'Nf6', 'Bd3', 'Nc6', 'Ne2', 'Qb6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nc6', 'Nxc6', 'dxc6', 'd3', 'Bc5'], ['e4', 'c5', 'Bc4', 'e6', 'Qf3', 'd6', 'd3', 'a6', 'Nh3', 'Be7'], ['d4', 'e6', 'c4', 'Nf6', 'Bg5', 'c5', 'd5', 'Qb6', 'b3', 'Be7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'Qxf3', 'dxe5'], ['Nc3', 'd5', 'd4', 'Bf5', 'Nf3', 'h6', 'Bf4', 'Nd7', 'Nb5', 'Rc8'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'exd4', 'Bg5', 'Qb6', 'Bc4', 'Qb4+'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Bc4', 'e6', 'Nf3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'Re1', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['Nf3', 'c5', 'g3', 'Nc6', 'Bg2', 'e5', 'd3', 'g6', 'Nbd2', 'Bg7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'Qc7', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e6'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'Nf6', 'e5', 'Ng8', 'Nbd2', 'e6'], ['c4', 'c5', 'e3', 'Nf6', 'Nc3', 'e6', 'h3', 'd5', 'a3', 'Nc6'], ['d4', 'e6', 'c4', 'Nf6', 'Bg5', 'c5', 'd5', 'Qb6', 'Bxf6', 'gxf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nxe4', 'Nxe5', 'Qe7', 'Bxf7+', 'Kd8'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'd6', 'd4', 'Nc6', 'Nf3', 'f6', 'Bd3', 'e5', 'd5', 'Nce7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e6'], ['e4', 'd6', 'd4', 'Nc6', 'c3', 'f6', 'e5', 'fxe5', 'Bd3', 'Nf6'], ['e4', 'd6', 'Bc4', 'e5', 'Qh5', 'g6', 'Qf3', 'Nf6', 'Qb3', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'd3', 'Nf6', 'Nc3', 'c6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd3', 'Nc6', 'Be3', 'g6', 'c3', 'Bg7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'c3', 'Nf6', 'd3', 'a6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'b6', 'e4', 'd6', 'Bd3', 'Nbd7'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'e6', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'h3', 'Nc6'], ['d4', 'e6', 'Nc3', 'Nf6', 'Bf4', 'd5', 'Nf3', 'c5', 'dxc5', 'Bxc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Qf6', 'd4', 'h6', 'Nc3', 'Nxd4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'O-O', 'Nf6', 'Nc3', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Nc3', 'a6', 'Bc4', 'b5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Bc4', 'e6', 'Qxd4', 'Bd7'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'b6', 'Bg5', 'Be7', 'e3', 'h6'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'e6', 'b3', 'Ne7', 'Nbd2', 'c5'], ['e4', 'c5', 'f4', 'd6', 'Bc4', 'e6', 'Nf3', 'Nc6', 'c3', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'O-O', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Bxf7+', 'Kxf7', 'Nxe5+', 'Nxe5'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'f3', 'Nc6', 'd5', 'e6'], ['e4', 'e5', 'b3', 'Nc6', 'Ba3', 'Nf6', 'Bxf8', 'Kxf8', 'Nc3', 'd6'], ['e4', 'c5', 'Qh5', 'd6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'Nc3', 'Nc6'], ['d4', 'd5', 'e4', 'e6', 'e5', 'c5', 'c4', 'cxd4', 'Qxd4', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'g3', 'Nf6', 'd3', 'Bc5', 'Bg2', 'd6'], ['e4', 'c5', 'Nc3', 'd6', 'Bc4', 'Nf6', 'd3', 'g6', 'a3', 'Bg7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'd6', 'e4', 'O-O'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'Bf5', 'Bd3', 'Bxd3', 'cxd3', 'e6'], ['Nf3', 'Nf6', 'd4', 'd5', 'e3', 'g6', 'Be2', 'Bg7', 'h3', 'O-O'], ['d4', 'd5', 'Nf3', 'Bg4', 'e3', 'Bxf3', 'Qxf3', 'Nf6', 'Bd3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Qf6', 'Nxc6', 'Qxc6'], ['d4', 'Nf6', 'c3', 'g6', 'a3', 'Bg7', 'b4', 'O-O', 'f3', 'd5'], ['d4', 'Nf6', 'Nc3', 'g6', 'd5', 'd6', 'Bg5', 'Bg7', 'e4', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'e6', 'd4', 'cxd4'], ['d4', 'd5', 'Nf3', 'c5', 'c3', 'cxd4', 'cxd4', 'Bf5', 'e3', 'Nc6'], ['e4', 'c5', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'c4'], ['d4', 'e6', 'e4', 'd5', 'e5', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'a6'], ['Nf3', 'Nf6', 'c4', 'g6', 'b3', 'Bg7', 'Bb2', 'O-O', 'g3', 'b6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'e6', 'O-O', 'Be7'], ['d4', 'd5', 'Nf3', 'e6', 'e3', 'Bb4+', 'Bd2', 'Bxd2+', 'Nbxd2', 'Nf6'], ['d4', 'c5', 'Nf3', 'd6', 'e4', 'Nf6', 'Nc3', 'd5', 'Bb5+', 'Bd7'], ['e4', 'c5', 'Nh3', 'd6', 'Bc4', 'Bxh3', 'gxh3', 'Nf6', 'f3', 'g6'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nc6', 'Bb5', 'Bd7', 'd3', 'a6'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'c5', 'c3', 'Nc6', 'Bd3', 'Bg4'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'g3', 'O-O'], ['e4', 'c6', 'c3', 'd5', 'd4', 'dxe4', 'Bg5', 'h6', 'Bf4', 'Nf6'], ['e4', 'c5', 'd3', 'Nc6', 'Nf3', 'Nf6', 'Nbd2', 'd6', 'g3', 'g6'], ['c4', 'Nf6', 'Nc3', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O', 'd3', 'd6'], ['d4', 'e5', 'dxe5'], ['d4', 'Nf6', 'Nf3', 'd5', 'e3', 'Bg4', 'Nbd2', 'Nc6', 'c3', 'e5'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'g6', 'O-O', 'Bg7'], ['Nf3', 'd5', 'g3', 'Nc6', 'Bg2', 'e5', 'd3', 'Nf6', 'Nbd2', 'Be7'], ['Nf3', 'Nc6', 'g3', 'e5', 'd3', 'Nf6', 'Nbd2', 'Bb4', 'c3', 'Ba5'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'Bf5', 'Bd3', 'Bg4', 'c3', 'e6'], ['e4', 'e5', 'Nf3', 'f6', 'a3', 'g5', 'Nc3', 'c6', 'd4', 'Bd6'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'f6', 'Bc4', 'exf4', 'd4', 'Qe7'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'Nc6', 'd5', 'Nd4', 'Nxd4', 'exd4'], ['d4', 'd5', 'Nc3', 'Nc6', 'a3', 'e6', 'e4', 'e5', 'dxe5', 'd4'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'Nc6', 'd5', 'Nb4', 'a3', 'Na6'], ['d4', 'c5', 'd5', 'c4', 'e4', 'Nf6', 'Nc3', 'e6', 'f3', 'Bb4'], ['d4', 'd5', 'Nc3', 'Nf6', 'f3', 'h6', 'g4', 'e6', 'Nh3', 'Bd6'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'f6', 'Bf4', 'g5', 'Bg3', 'h5'], ['d4', 'd5', 'Nc3', 'Nf6', 'f3', 'e6', 'g4', 'Bb4', 'Rb1', 'Bxc3+'], ['d4', 'd5', 'Nf3', 'f6', 'e3', 'Nc6', 'c3', 'g5', 'Bb5', 'Rb8'], ['d4', 'd5', 'Nc3', 'Nc6', 'e4', 'dxe4', 'd5', 'Nb4', 'Nxe4', 'Qxd5'], ['e4', 'e5', 'd3', 'Nc6', 'Nf3', 'f6', 'c3', 'b5', 'g4', 'g5'], ['d4', 'd5', 'Nc3', 'Nf6', 'f3', 'h6', 'g4', 'e6', 'Bf4', 'Bb4'], ['e4', 'e5', 'd3', 'Nf6', 'Nf3', 'Nc6', 'Be2', 'h6', 'O-O', 'd6'], ['d4', 'd5', 'Bf4', 'c5', 'e3', 'e6', 'c4', 'Qa5+', 'Nd2', 'cxd4'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'g5', 'd3', 'c6', 'Nc3', 'b5'], ['d4', 'd5', 'Nc3', 'Nf6', 'f3', 'h6', 'g4', 'a6', 'h4', 'Bd7'], ['e4', 'e5', 'Nf3', 'f6', 'Bd3', 'g5', 'O-O', 'h5', 'Nc3', 'c6'], ['e4', 'd5', 'e5', 'c5', 'd4', 'Nc6', 'c3', 'cxd4', 'cxd4', 'e6'], ['d4', 'd5', 'Nc3', 'Nf6', 'f3', 'Nc6', 'a3', 'e5', 'e3', 'exd4'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'd6', 'Bc4', 'c6', 'dxe5', 'fxe5'], ['e4', 'e5', 'd4', 'Nc6', 'Nf3', 'Nf6', 'Bg5', 'Rg8', 'dxe5', 'Nxe4'], ['d4', 'd5', 'e3', 'Nc6', 'Nf3', 'f6', 'c3', 'g5', 'Be2', 'h5'], ['d4', 'e6', 'e4', 'Bb4+', 'c3', 'Bd6', 'e5', 'Be7', 'Nf3', 'f5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'c3', 'Bc5', 'd4', 'exd4'], ['d4', 'd5', 'c3', 'Nf6', 'f3', 'e6', 'h4', 'g6', 'g4', 'h5'], ['d4', 'd5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'h3', 'h6', 'Bf4', 'a6'], ['d4', 'd5', 'Nc3', 'e6', 'Nf3', 'Nf6', 'Bf4', 'Ne4', 'Nxe4', 'dxe4'], ['e4', 'e5', 'Qh5', 'd6', 'Bc4', 'g6', 'Qf3', 'Nh6', 'd4', 'Bd7'], ['e4', 'e5', 'Nc3', 'Nf6', 'Bc4', 'c6', 'a3', 'b5', 'Ba2', 'a5'], ['d4', 'd5', 'Nc3', 'Nf6', 'f3', 'Bf5', 'g4', 'Bg6', 'h4', 'h6'], ['d4', 'e6', 'e4', 'd5', 'e5', 'Nc6', 'c3', 'Be7', 'b4', 'a6'], ['e4', 'e5', 'Nf3', 'f6', 'Nxe5', 'fxe5', 'Qh5+', 'Ke7', 'Qxe5+', 'Kf7'], ['e4', 'e5', 'Qf3', 'Nf6', 'Bc4', 'd6', 'd3', 'Nc6', 'Bg5', 'Nd4'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'g5', 'd3', 'h5', 'h3', 'h4'], ['e4', 'e5', 'Qf3', 'Nf6', 'Bc4', 'Bc5', 'd3', 'O-O', 'Qg3', 'Nh5'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'g5', 'h3', 'h5', 'O-O', 'h4'], ['e3', 'd5', 'c3', 'e5', 'g3', 'Nf6', 'Bg2', 'e4', 'd3', 'Nc6'], ['d4', 'e6', 'e4', 'c6', 'e5', 'd6', 'Nc3', 'dxe5', 'dxe5', 'Qh4'], ['d4', 'd5', 'e3', 'Nf6', 'c3', 'Bf5', 'Qb3', 'e6', 'Qxb7', 'Nbd7'], ['Nf3', 'd5', 'd4', 'Nc6', 'c4', 'e6', 'e3', 'f6', 'Nc3', 'a6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Bc5', 'd4', 'Bb6', 'Bxf4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'f6', 'Nc3', 'Nge7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'O-O', 'Be7', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Bb7'], ['d4', 'Nf6', 'c4', 'b6', 'Nc3', 'Bb7', 'Nf3', 'Na6', 'e3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nc6', 'Bb5', 'a6'], ['d4', 'f5', 'Nc3', 'd5', 'Bf4', 'c6', 'Nf3', 'Nd7', 'e3', 'e6'], ['d4', 'd5', 'e3', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Nc6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'f6', 'Bf4', 'g5'], ['d4', 'Nf6', 'Bf4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'h3', 'g6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nf3', 'Nc6', 'a3', 'h6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Bc5'], ['d4', 'h6', 'e4', 'a6', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Be2', 'Nf6'], ['e4', 'c5', 'Nf3', 'a6', 'Nc3', 'b5', 'a4', 'b4', 'Ne2', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bc5', 'c3', 'dxc3'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Qxd5', 'Nc3', 'Qh5', 'Nf3', 'e6'], ['c4', 'e5', 'Nc3', 'Nf6', 'e4', 'Nc6', 'g3', 'Bc5', 'Bg2', 'O-O'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'd6', 'e4', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'Bg5', 'Bg7', 'e3', 'O-O'], ['d4', 'c5', 'dxc5', 'e6', 'Be3', 'Qa5+', 'Qd2', 'Qb5', 'Nc3', 'Qxb2'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Bc5'], ['e4', 'e6', 'Nf3', 'd6', 'd4', 'Nf6', 'Nc3', 'Nc6', 'Bg5', 'Be7'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'c5', 'dxc5', 'e5', 'Nc3', 'Bxc5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'c3', 'Na5', 'Nd2', 'Nxc4'], ['Nf3', 'd5', 'c3', 'Nf6', 'Qa4+', 'Bd7', 'Qb3', 'b6', 'h3', 'a5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bd6', 'Nc3', 'Ne7'], ['g3', 'e5', 'Bg2', 'Nf6', 'd3', 'Bc5', 'Nf3', 'd6', 'O-O', 'O-O'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'e6', 'Bg5', 'Be7', 'Nf3', 'O-O'], ['Nf3', 'd5', 'd4', 'Nf6', 'Nbd2', 'Bf5', 'Nh4', 'Bg6', 'e3', 'e6'], ['g4', 'd5', 'Bg2', 'c6', 'g5', 'e5', 'd4', 'e4', 'c4', 'f5'], ['d4', 'd5', 'e3', 'Nf6', 'Bd3', 'c5', 'c3', 'Nc6', 'f4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7', 'O-O', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e6'], ['c4', 'e6', 'g3', 'd5', 'Bg2', 'Nf6', 'Nf3', 'Be7', 'O-O', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'd6', 'e4', 'e6', 'c4', 'b6', 'Nc3', 'Nd7', 'Nf3', 'h6'], ['d4', 'd6', 'e4', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Nc6', 'Bb5', 'Bd7'], ['d4', 'e5', 'dxe5', 'Qe7', 'Nf3', 'Nc6', 'Bg5', 'Qb4+', 'Bd2', 'Qxb2'], ['e3', 'd5', 'c3', 'e5', 'Qh5', 'Nc6', 'Bb5', 'Be6', 'Qxe5', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'g6', 'e5', 'dxe5'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'g6', 'Bc4', 'Bg7'], ['d4', 'd6', 'e4', 'Nf6', 'Nc3', 'e6', 'Bg5', 'Be7', 'Nf3', 'h6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'c6', 'Bg5', 'h6', 'Bh4', 'Nbd7'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'O-O', 'Ngf6'], ['e4', 'c5', 'Nf3', 'd6', 'd3', 'Nf6', 'Bg5', 'e6', 'Be2', 'g6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'c6', 'axb5', 'cxb5'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'g6', 'Nd5', 'Nxd5'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'c5', 'dxc5', 'Bxc5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'a6', 'Nc3', 'b5'], ['d4', 'Nf6', 'c4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'd5', 'Bg5', 'c6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nf6', 'Bg5', 'e5'], ['d4', 'd5', 'c4', 'Nf6', 'Nf3', 'e6', 'Nc3', 'Bd7', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'h6', 'c3', 'd5'], ['e4', 'c6', 'Nc3', 'd5', 'exd5', 'cxd5', 'd4', 'Nf6', 'Bg5', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Na5', 'Nxe5', 'Nxc4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4', 'Qxd4', 'e6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'Nxe5', 'Nxe5', 'dxe5'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nc6', 'Bd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'c3', 'a6'], ['e4', 'd6', 'd4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'b6', 'Bd3', 'Bb7'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'Bf5', 'd4', 'e6', 'Nc3', 'c5'], ['d4', 'd5', 'Bf4', 'e6', 'e3', 'Nf6', 'c3', 'c5', 'Nd2', 'Nc6'], ['e4', 'Nf6', 'Nc3', 'c5', 'Bc4', 'e6', 'd3', 'Qa5', 'Bd2', 'Qb6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'Be2', 'Nf6', 'dxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f6', 'Nc3', 'Nc6', 'Be3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'h6', 'd3', 'Bc5', 'O-O', 'g5'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'g4', 'Bg6', 'h4', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'c3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'c3', 'd5'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Qg4'], ['e4', 'c6', 'Bc4', 'd5', 'Be2', 'dxe4', 'Bf1', 'Bf5', 'f3', 'h6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bd3', 'Nf6', 'Nf3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'Nf6', 'd3', 'Bxf2+', 'Kxf2', 'Ng4+'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Be2', 'Nf6', 'O-O', 'Bf5'], ['d4', 'd5', 'Nc3', 'e6', 'Nf3', 'Nf6', 'e4', 'dxe4', 'Nd2', 'Nc6'], ['e4', 'd6', 'd4', 'c6', 'Nc3', 'b5', 'a3', 'a5', 'Be3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'c3', 'O-O'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nc6', 'Nf3'], ['e4', 'c6', 'c3', 'd5', 'Bd3', 'dxe4', 'Bc2', 'Nf6', 'd4', 'Bf5'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'c3', 'e6', 'g4', 'Bg6'], ['h3', 'e5', 'f3', 'd5', 'a3', 'Nf6', 'h4', 'h6', 'Rh3', 'Bxh3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'h6', 'O-O', 'Bc5'], ['e4', 'c6', 'Nc3', 'd5', 'exd5', 'cxd5', 'd4', 'Nf6', 'Bd3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'Bd3', 'c5'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'Bd3', 'c5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nxc3'], ['d4', 'e6', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'Nf6', 'c4', 'b6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'b6', 'Nf3', 'Bb7', 'Bg5', 'h6'], ['d4', 'e6', 'e4', 'd5', 'e5', 'Nc6', 'Nf3', 'a6', 'Bg5', 'Be7'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'c6', 'axb5', 'cxb5'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'Nc6', 'Nf3', 'g6', 'O-O', 'Bg7'], ['g3', 'd5', 'Bg2', 'Nf6', 'd3', 'e5', 'Nd2', 'c5', 'e3', 'Bd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'd6', 'Be3', 'O-O'], ['d4', 'c5', 'dxc5', 'e5', 'Nc3', 'Bxc5', 'Nf3', 'Nc6', 'e4', 'a6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'g5', 'd4', 'g4', 'Bxf4', 'gxf3'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'e6', 'Bxc6', 'bxc6', 'd4', 'cxd4'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'Bf4', 'Bb4', 'a3', 'Bxc3+'], ['d4', 'Nf6', 'c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'Bf4', 'e6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'g5', 'h4', 'g4', 'Ne5', 'd6'], ['d4', 'Nf6', 'Bf4', 'e6', 'Nf3', 'd5', 'c3', 'Bd6', 'Bg3', 'Bxg3'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bf4', 'Bd6', 'Bxd6', 'Qxd6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bf4', 'Bd6', 'Bxd6', 'Qxd6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'e6', 'Nf3', 'b6'], ['g3', 'e5', 'Bg2', 'd5', 'Nf3', 'e4', 'Nd4', 'c5', 'Nb3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'Nc3', 'Bg4'], ['d4', 'c6', 'e4', 'd6', 'c4', 'Nf6', 'Nc3', 'e6', 'Bg5', 'Be7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'd6', 'Be3', 'a6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'd3', 'd6', 'a3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Qxd4', 'Bd7'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'Nc3', 'c6', 'Nf3', 'b5'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'g5', 'Bc4', 'g4', 'Ne5', 'Qh4+'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nc6', 'Bxc4', 'Nf6', 'Nf3', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'a6', 'O-O', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'f6', 'a3', 'Nh6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Bf5', 'Bxc4', 'Nf6', 'Nc3', 'e6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bf4', 'e6', 'e3', 'Be7'], ['d4', 'Nf6', 'Bg5', 'h6', 'Bh4', 'e6', 'e3', 'd5', 'a3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['d4', 'Nf6', 'c4', 'g6', 'Bf4', 'Bg7', 'Qd2', 'd5', 'cxd5', 'Nxd5'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ne4', 'Nf3', 'Nc6', 'e3', 'd5'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'Bb4', 'Bd2', 'Bxc3'], ['d4', 'f5', 'Nc3', 'Nf6', 'f3', 'e6', 'e4', 'fxe4', 'fxe4', 'Bb4'], ['f4', 'd5', 'e3', 'e6', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Be2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'd6', 'Be2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'd6', 'h3', 'Be6'], ['d4', 'Nf6', 'Nc3', 'e6', 'e4', 'd5', 'e5', 'Nfd7', 'f4', 'c5'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'Be6', 'Nc3', 'd4', 'Nd5', 'Bxd5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'e6', 'e3', 'Nbd7'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'Bd7', 'axb5', 'Bxb5'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'd3', 'O-O'], ['b3', 'e5', 'Bb2', 'Nc6', 'g3', 'Nf6', 'Nf3', 'd6', 'd4', 'exd4'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nf3', 'f5', 'exf5', 'Nc6', 'd4', 'exd4'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'O-O'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'O-O'], ['e4', 'e5', 'Bc4', 'c6', 'Nf3', 'd6', 'd4', 'f6', 'Nh4', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'a3', 'Ng4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'g6', 'd4', 'Bg7', 'Bc4', 'e6', 'Nc3', 'Nc6', 'd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['e3', 'e5', 'd4', 'exd4', 'exd4', 'd5', 'c3', 'Nf6', 'h3', 'Bd6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Bg5', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'd6'], ['e4', 'c5', 'Bc4', 'g6', 'Nf3', 'Bg7', 'd4', 'cxd4', 'Nxd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'c3', 'Bg4', 'Ba4', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Bc5', 'Nc3', 'a6', 'd3', 'h6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nc6', 'Bd3', 'Bg4'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'h6', 'Nc3', 'a6', 'd3', 'Nge7'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'h6', 'd4', 'exd4'], ['e4', 'e5', 'c3', 'Nf6', 'Nf3', 'Nc6', 'd3', 'Bc5', 'b4', 'Bb6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'd6', 'Nc3', 'Na5', 'Bb3', 'Nf6'], ['e4', 'c6', 'd4', 'e6', 'd5', 'cxd5', 'exd5', 'Nf6', 'dxe6', 'fxe6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'Bc4', 'Bc5', 'Ng5', 'O-O'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'h6', 'd4', 'cxd4', 'Nxd4', 'e5'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxf7+', 'Kxf7'], ['e4', 'c6', 'd4', 'Qc7', 'Nf3', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb4'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Bb5+', 'Bd7'], ['e4', 'b6', 'd4', 'Ba6', 'Bxa6', 'Nxa6', 'Qd3', 'Nb8', 'd5', 'd6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'Bc5', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'f6', 'd5', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'g3', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bxc3'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'Nf3', 'Nc6', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'h3', 'd6'], ['e4', 'e5', 'f4', 'd6', 'fxe5', 'dxe5', 'Nf3', 'Nc6', 'Bc4', 'Bc5'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Nf3', 'Nc6'], ['e4', 'c5', 'Bc4', 'a6', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'b5'], ['e4', 'c5', 'Bc4', 'e5', 'Nf3', 'Nc6', 'd3', 'd6', 'Ng5', 'Nh6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c4', 'Bc5', 'a3', 'Nf6', 'b4', 'Bd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'a3', 'Nf6', 'b4', 'Bd4'], ['Nf3', 'Nf6', 'g3', 'g6', 'b3', 'Bg7', 'Bb2', 'O-O', 'Bg2', 'c5'], ['e4', 'c6', 'Nc3', 'd5', 'Nf3', 'Bg4', 'h3', 'Bh5', 'g4', 'Bg6'], ['Nf3', 'c5', 'g3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Bg2', 'Bg7'], ['e4', 'c6', 'Nc3', 'd5', 'Nf3', 'Bg4', 'h3', 'Bh5', 'g4', 'Bg6'], ['e4', 'c5', 'Nc3', 'Nc6', 'g3', 'g6', 'Bg2', 'Bg7', 'Nge2', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Be3', 'Nf6'], ['d4', 'Nf6', 'c4', 'g6', 'Nf3', 'Bg7', 'g3', 'O-O', 'Bg2', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['Nf3', 'c5', 'c4', 'Nf6', 'Nc3', 'e6', 'g3', 'b6', 'Bg2', 'Bb7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Be7', 'c3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'd4', 'd6', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'b5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'c5', 'c3', 'Nf6', 'e5', 'Nd5', 'd4', 'cxd4', 'cxd4', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'O-O', 'Ngf6'], ['e4', 'e5', 'Nf3', 'f5', 'Nxe5', 'Qf6', 'd4', 'd6', 'Nd3', 'fxe4'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'Be2', 'Bd7', 'Qc2', 'Nc6'], ['e4', 'd6', 'd4', 'e6', 'Nf3', 'h6', 'Nc3', 'a6', 'Be2', 'Nd7'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nb6', 'Nf3', 'g6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['c4', 'c5', 'Nc3', 'g6', 'g3', 'Bg7', 'Qb3', 'e6', 'Bg2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'c3', 'Nf6', 'd3', 'd5'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'c6', 'c4', 'd6', 'Nc3', 'Qb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Bc5'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'd4', 'g6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nxe5', 'Nf6', 'd4', 'Bd6', 'Bc4', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'h3', 'a6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Bd7'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'g6', 'Nc3', 'Bg7', 'Nf3', 'h6'], ['e4', 'e6', 'g3', 'd5', 'exd5', 'exd5', 'Bg2', 'Nf6', 'd4', 'c5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'Nf3', 'Nxe4', 'd3', 'Nc3+'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'O-O', 'Qf6', 'c3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bd7', 'c3', 'Nf6'], ['e4', 'e6', 'Nf3', 'd5', 'd3', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'Bc5'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'g6', 'Nc3', 'Bg7', 'Nf3', 'c6'], ['d4', 'd5', 'c4', 'Nf6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'cxd5', 'Nxd5'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'f3', 'e6'], ['d4', 'd5', 'c4', 'Nf6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'h3', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'd4', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Bc4', 'Nf6', 'c3', 'Nxf3+'], ['Nf3', 'e6', 'e4', 'd5', 'e5', 'c5', 'c4', 'Nc6', 'cxd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'c3', 'Nf6', 'O-O', 'Nxe4'], ['e4', 'e6', 'e5', 'd6', 'Nf3', 'c5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Ne7', 'Re1', 'c6'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'g6', 'Nc3', 'Bg7', 'Nf3', 'b6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'c4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'Nf3', 'Nxe4', 'Be2', 'd5'], ['Nf3', 'e6', 'b3', 'd5', 'Bb2', 'f6', 'd4', 'c5', 'e3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'O-O', 'Be6', 'Bxe6', 'fxe6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'h6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nxc6', 'bxc6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c5', 'Nf3', 'Qb6', 'Be3', 'Qxb2'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e5', 'Bc4', 'h6', 'Nd5', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'dxc5', 'Bxc5', 'Nf3', 'Qb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'd6', 'h3', 'g6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Qe2', 'Qe7'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nc6', 'Be2', 'Nf6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'b4', 'cxb4', 'd4', 'Nc6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'g6', 'e3', 'Bg7', 'Nf3', 'Nc6'], ['e4', 'e6', 'e5', 'd5', 'd4', 'c5', 'c3', 'Qb6', 'Nf3', 'Nc6'], ['e4', 'e6', 'e5', 'd5', 'exd6', 'Bxd6', 'd4', 'Nc6', 'd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'c3', 'Nge7', 'Bxc6', 'Nxc6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Qe2+', 'Be6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'dxc4', 'e3', 'b5', 'a4', 'b4'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'Bg4', 'cxd5', 'e6'], ['f4', 'e6', 'g4', 'Qh4#'], ['d4', 'e6', 'e4', 'Qf6', 'e5', 'Qf5', 'Nc3', 'c5', 'Nf3', 'cxd4'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'cxd5', 'cxd5', 'Bf4', 'Nc6'], ['d4', 'Nf6', 'Nc3', 'd5', 'Bf4', 'Bf5', 'Nf3', 'e6', 'g3', 'Nbd7'], ['d4', 'e6', 'e4', 'd5', 'exd5', 'exd5', 'Nf3', 'c5', 'c3', 'Nc6'], ['b4', 'e5', 'Bb2', 'Bxb4', 'Bxe5', 'Nf6', 'a3', 'Be7', 'e3', 'O-O'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'Nc6', 'Bg2', 'Bb4', 'e3', 'Bxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Be7', 'O-O', 'O-O'], ['e4', 'c5', 'Nc3', 'd6', 'Bc4', 'Nc6', 'Nf3', 'a6', 'd4', 'cxd4'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'cxd5', 'exd5', 'Bg5', 'Bb4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Bg4', 'Be2', 'Nc6', 'O-O', 'O-O-O'], ['d4', 'd5', 'e3', 'Nc6', 'Nf3', 'Nf6', 'c3', 'Bg4', 'Be2', 'Bxf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Bc5', 'd3', 'd6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nc6', 'e3', 'Nf6', 'Qa4', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Bc5', 'a3', 'Nf6', 'h3', 'd5'], ['e4', 'e5', 'Nf3'], ['e4', 'e5', 'Nf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bc4', 'Nf6', 'd3', 'h6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'd6'], ['e4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'e5', 'Bc4', 'Bg4', 'd3', 'Nc6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nf3', 'Nxd5', 'd4', 'e6', 'c4', 'Nf6'], ['d4', 'Nf6', 'Bf4', 'd5', 'e3', 'c5', 'c3', 'Nc6', 'Bd3', 'Qb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Be7', 'O-O', 'O-O'], ['d4', 'Nf6', 'Bf4', 'd5', 'e3', 'c5', 'c3', 'Nc6', 'Nd2', 'Bf5'], ['e4', 'c6', 'Nc3', 'd5', 'Nf3', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'e6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'e5', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['e4', 'Nc6', 'Nf3', 'Nf6', 'Be2', 'Nxe4', 'O-O', 'e5', 'd3', 'Ng5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'b6', 'Bc4', 'Qe7', 'd3', 'Bb7'], ['e4', 'e5', 'Nc3', 'Nf6', 'f3', 'Bb4', 'Nge2', 'Nc6', 'g3', 'd6'], ['Nf3', 'Nc6', 'g3', 'e5', 'e4', 'Nf6', 'Bg2', 'Nxe4', 'd3', 'Nf6'], ['d4', 'e6', 'e3', 'Nf6', 'Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'bxc6', 'Nxe5', 'Nxe4'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'c6', 'Nc3', 'b5', 'Nxe5', 'fxe5'], ['d4', 'Nf6', 'Bg5', 'd5', 'c4', 'dxc4', 'Nc3', 'c6', 'e4', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'd4', 'Nf3', 'Nc6', 'e3', 'Bg4'], ['d4', 'e6', 'c4', 'Qf6', 'Nc3', 'Bd6', 'Nf3', 'Bb4', 'Bg5', 'Qg6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e6', 'Bxc4', 'Nc6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'h4', 'Nf6', 'Nc3', 'Bb4', 'Bc4', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['f4', 'd5', 'd4', 'Nc6', 'Nf3', 'Bf5', 'a3', 'Nf6', 'e3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'h3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'Nc3', 'Bxf3', 'Qxf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'h3', 'Nf6', 'd3', 'Bd7'], ['e4', 'c5', 'c3', 'e6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Qc6'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'Bb4', 'Bg2', 'Bxc3', 'bxc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nd3', 'Nxe4', 'Qe2', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Nxe4', 'Nxe4', 'd5'], ['c4', 'c6', 'e4', 'e6', 'Nc3', 'd5', 'cxd5', 'cxd5', 'exd5', 'exd5'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qf5', 'e4', 'Qf6', 'd4', 'Nc6'], ['e4', 'e5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nxe4', 'b4', 'd5', 'Bb3', 'Bxb4'], ['c4', 'Nf6', 'Nc3', 'e6', 'g3', 'g6', 'Bg2', 'Bg7', 'e4', 'd6'], ['c4', 'e6', 'Nc3', 'c6', 'd4', 'd5', 'e4', 'Nf6', 'e5', 'Nfd7'], ['e3', 'e5', 'd4', 'e4', 'c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qa5'], ['c4', 'Nf6', 'g3', 'g6', 'Nc3', 'Bg7', 'Bg2', 'e6', 'e4', 'O-O'], ['d4', 'd5', 'Nf3', 'c5', 'dxc5', 'e6', 'Nc3', 'Bxc5', 'Bf4', 'Ne7'], ['c4', 'b6', 'Nc3', 'Nc6', 'g3', 'e6', 'Bg2', 'Bb4', 'e4', 'Bxc3'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'Bxf6', 'Bxf6'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'Bf5', 'Bd2', 'c6'], ['c4', 'c5', 'Nc3', 'd6', 'g3', 'a6', 'Bg2', 'Nf6', 'e4', 'g6'], ['c4', 'Nf6', 'Nc3', 'e6', 'g3', 'd5', 'cxd5', 'Nxd5', 'Bg2', 'Nxc3'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'Bd6', 'Bxc6', 'bxc6'], ['d4', 'd5', 'c4', 'e6', 'cxd5', 'exd5', 'Nc3', 'g6', 'Nf3', 'Bg7'], ['c4', 'a5', 'Nc3', 'a4', 'Nxa4', 'b6', 'g3', 'Bb7', 'Nf3', 'Bc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Bd3', 'd5'], ['c4', 'c6', 'Nc3', 'Nf6', 'd4', 'd5', 'e3', 'Bf5', 'cxd5', 'cxd5'], ['c4', 'e5', 'Nc3', 'd6', 'g3', 'c6', 'Bg2', 'f5', 'e4', 'Nf6'], ['d4', 'd5', 'e3', 'c5', 'c3', 'e6', 'Nf3', 'Nc6', 'Bb5', 'Bd7'], ['c4', 'e6', 'Nc3', 'Bc5', 'g3', 'Qf6', 'e3', 'd5', 'd4', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Qe2', 'Qe7'], ['c4', 'e6', 'Nc3', 'Bb4', 'g3', 'Bxc3', 'bxc3', 'b6', 'Bg2', 'c6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Qe2', 'Qe7'], ['c4', 'g6', 'Nc3', 'Bg7', 'g3', 'b6', 'Bg2', 'Bb7', 'Bxb7', 'c6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Bg5', 'Be7', 'e3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Qe2', 'Qe7'], ['c4', 'c5', 'e3', 'Nc6', 'Nc3', 'e6', 'Nf3', 'g6', 'Be2', 'Bg7'], ['c4', 'e5', 'Nc3', 'Nc6', 'g3', 'Bc5', 'Bg2', 'd6', 'e4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nc4', 'Nxe4', 'Bd3', 'Nc5'], ['c4', 'e5', 'Nc3', 'Bc5', 'g3', 'Nf6', 'Bg2', 'Nc6', 'e4', 'Qe7'], ['e4', 'e5', 'Nc3', 'Nf6', 'f4', 'exf4', 'Nf3', 'd6', 'Bc4', 'h6'], ['d4', 'd5', 'Bg5', 'f6', 'Bh4', 'c5', 'Nf3', 'Nc6', 'e3', 'Nh6'], ['c4', 'c5', 'Nc3', 'Nc6', 'g3', 'b6', 'Bg2', 'Bb7', 'e4', 'Nd4'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'd4', 'd3', 'Nc6', 'b3', 'Nge7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Be3', 'Nh6'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'Bc5', 'Bg2', 'Nc6', 'e4', 'd6'], ['c4', 'e6', 'Nc3', 'Bb4', 'g3', 'Bxc3', 'bxc3', 'c6', 'd4', 'd5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'dxc5', 'Bxc5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Ng4', 'Bxg4', 'f3', 'Bd7'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'Bb4', 'Bg2', 'Bxc3', 'bxc3', 'O-O'], ['e4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4'], ['Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'O-O', 'd4', 'Nc6'], ['e4', 'f6', 'd4', 'g6', 'Nf3', 'e6', 'Be2', 'Ne7', 'O-O', 'Bg7'], ['Nf3', 'e6', 'e3', 'd5', 'c4', 'c5', 'cxd5', 'exd5', 'Bb5+', 'Bd7'], ['b3', 'Nf6', 'Bb2', 'e6', 'e3', 'Ne4', 'd3', 'Nxf2', 'Kxf2', 'Bc5'], ['Nf3', 'd5', 'g3', 'Nf6', 'Bg2', 'c5', 'e3', 'e6', 'Ne5', 'Nc6'], ['d4', 'f6', 'Nf3', 'g6', 'c3', 'e6', 'Bf4', 'h6', 'h3', 'Ne7'], ['Nf3', 'c5', 'd4', 'cxd4', 'Nxd4', 'd6', 'e4', 'a6', 'c4', 'Nf6'], ['Nf3', 'd5', 'd4', 'Nf6', 'c4', 'e6', 'c5', 'Be7', 'Nc3', 'O-O'], ['f3', 'e5', 'g3', 'd5', 'e3', 'Bd6', 'c3', 'c5', 'Ne2', 'Nc6'], ['g3', 'Nf6', 'b3', 'e5', 'Bb2', 'Ng4', 'Bxe5', 'Nxe5'], ['Nf3', 'd6', 'e4', 'Nf6', 'e5', 'dxe5', 'Nxe5', 'Nbd7', 'f4', 'Nxe5'], ['Nf3', 'b6', 'e4', 'Bb7', 'Ng5', 'h6', 'Nxf7', 'Kxf7', 'Bc4+', 'e6'], ['d4', 'f6', 'c4', 'g6', 'e4', 'Bg7', 'Nc3', 'c6', 'Nf3', 'e6'], ['b4', 'Nf6', 'Bb2', 'g6', 'c4', 'Bg7', 'Qb3', 'O-O', 'e3', 'd5'], ['Nf3', 'd6', 'e4', 'g6', 'e5', 'dxe5', 'Nxe5', 'Qd5', 'f4', 'Bg7'], ['e4', 'Nf6', 'e5', 'Ne4', 'Nc3', 'Nxf2', 'Kxf2', 'e6', 'Nf3', 'Bc5+'], ['c4', 'Nf6', 'c5', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Bxc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['d4', 'e6', 'c4', 'f5', 'g3', 'Nf6', 'Bg2', 'Be7', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'Qf6', 'c3', 'Bc5', 'd4', 'exd4', 'cxd4', 'Bb4+'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Bg4', 'h3', 'Bh5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Bc5', 'O-O', 'Qe7'], ['e4', 'c5', 'Nf3', 'Nc6'], ['Nf3', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Bxc4', 'e6', 'd4', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nxe5', 'Qe7', 'd4', 'Bb4+', 'Nc3', 'Bxc3+'], ['Nf3', 'Nc6', 'd4', 'd5', 'e3', 'e6', 'c4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'd4', 'Nc6', 'Bb5', 'Qb6'], ['Nf3', 'g6', 'e4', 'Bg7', 'd4', 'd6', 'Nc3', 'a6', 'Be2', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'Bd7', 'Bxd7+', 'Qxd7'], ['d4', 'd5', 'c4', 'Nf6', 'Nf3', 'Bg4', 'Nc3', 'e6', 'a3', 'c5'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'c6', 'd4', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nb8', 'Nc3', 'c6'], ['e4', 'e5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'Nf3', 'Nxe4', 'Qe2', 'Nc6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Be7', 'Nf3', 'Nb4'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'Nc6', 'Be2', 'd5', 'O-O', 'dxe4'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'Nbd7', 'cxd5', 'Nb6', 'Qc2', 'Qxd5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Nxe5', 'Bxc3', 'bxc3', 'Qe7'], ['e4', 'c5', 'c3', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'cxd4', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'd4', 'd6', 'Nf3', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'Nc6', 'Nc3', 'Bb4', 'Bd2', 'Bxc3'], ['c4', 'e5', 'g3', 'c6', 'Bg2', 'd5', 'cxd5', 'cxd5', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'd4', 'd6', 'Nf3', 'Nxe4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'Nc3', 'Bc5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nc6', 'Nc3', 'Nxe4', 'Nxe4', 'd5'], ['e4', 'e6', 'Bb5', 'c6', 'Ba4', 'b5', 'Bb3', 'a5', 'a3', 'c5'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'd6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bb4', 'd3', 'd6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Be7', 'Bc4', 'Nf6'], ['e4', 'e5', 'Nc3', 'Bb4', 'a3', 'Ba5', 'Nf3', 'd6', 'Bc4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Nxe5', 'Qe7', 'f4', 'Bxc3'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Bg5', 'Be7', 'e3', 'a6'], ['a3', 'd5', 'Nc3', 'd4', 'Ne4', 'f5', 'Nc5', 'e5', 'Nd3', 'Nc6'], ['e4', 'd5', 'e5', 'Nc6', 'd4', 'g6', 'Bb5', 'Bd7', 'Nf3', 'Bg7'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e6', 'Nc3', 'Nc6', 'Nf3', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Bg4', 'd4', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'exd4', 'Nf3', 'Nc6', 'O-O', 'Bc5'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'h6', 'Nc3', 'Nf6', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'g6', 'd4', 'Nf6', 'O-O', 'Nxe4'], ['e4', 'Nf6', 'd3', 'c6', 'Be3', 'd5', 'Nd2', 'dxe4', 'dxe4', 'Ng4'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Be3', 'Nc6', 'Bd3', 'Nf6'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'f6', 'Nc3', 'e5', 'dxe5', 'fxe5'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Qd7', 'd3', 'Qd8', 'Be3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e3', 'e6', 'd4', 'h6', 'Bd3', 'Qg5', 'Ne2', 'Qxg2', 'Rf1', 'Qxh2'], ['d4', 'e6', 'e4', 'Qf6', 'Nf3', 'c5', 'e5', 'Qf5', 'Bd3', 'Qg4'], ['e4', 'c6', 'Be2', 'd5', 'exd5', 'cxd5', 'h3', 'Nc6', 'Nf3', 'Nf6'], ['Nf3', 'd5', 'd4', 'Nc6', 'e3', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'Nb4'], ['e3', 'e5', 'Nf3', 'Nc6', 'd4', 'e4', 'Ng1', 'Nf6', 'h3', 'd5'], ['e4', 'Nf6', 'f3', 'g6', 'd4', 'Bg7', 'Be3', 'O-O', 'Nc3', 'e6'], ['e4', 'e5', 'Nf3', 'c6', 'Nxe5', 'f6', 'Ng4', 'd5', 'e5', 'Bxg4'], ['d4', 'd5', 'c3', 'e6', 'f3', 'Nf6', 'Bg5', 'Nc6', 'Nd2', 'Bd6'], ['f4', 'd5', 'e3', 'f6', 'Qe2', 'e5', 'fxe5', 'fxe5', 'e4', 'Nf6'], ['d4', 'd5', 'f3', 'e6', 'e4', 'Nc6', 'c3', 'f5', 'Bd3', 'Nf6'], ['g3', 'e5', 'Bg2', 'd5', 'c3', 'e4', 'e3', 'Nf6', 'd4', 'c5'], ['g4', 'e5', 'Nf3', 'f6', 'e4', 'b6', 'd3', 'g5', 'Nc3', 'Nc6'], ['e4', 'e5', 'c3', 'Nf6', 'f3', 'Nc6', 'd4', 'Be7', 'dxe5', 'Nxe5'], ['d4', 'd5', 'c3', 'e5', 'dxe5', 'Nc6', 'f4', 'Bg4', 'h3', 'Bf5'], ['e4', 'e5', 'Nf3', 'd6', 'g3', 'Nc6', 'Nc3', 'f6', 'Bc4', 'Na5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'c6', 'Ng5', 'Nxe4', 'Nxf7', 'Qb6'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'c6', 'Bc4', 'Nf6', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Be7', 'Nxc6', 'dxc6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Qe7', 'Qxc7', 'Nc6', 'd3', 'Nxe4'], ['f4', 'd5', 'Nf3', 'Nf6', 'e3', 'e6', 'b3', 'Nc6', 'Bb2', 'Ng4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Qe2', 'c6', 'Nxe5', 'd5', 'exd5', 'cxd5'], ['d4', 'e5', 'dxe5', 'Nc6', 'f4', 'd6', 'exd6', 'Bxd6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Bc5', 'Na4', 'Na5'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'd6', 'exd6', 'Bxd6', 'c3', 'Nf6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'Nc3', 'Ngf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Bc5', 'Bxf7+', 'Kf8'], ['e4', 'e6', 'b4', 'd5', 'h4', 'Bxb4', 'f3', 'Nf6', 'Nc3', 'Bxc3'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'g6'], ['d4', 'e6', 'e3', 'd5', 'Na3', 'c5', 'Nb5', 'Bd6', 'Nxd6+', 'Qxd6'], ['e4', 'e6', 'Nc3', 'd5', 'e5', 'c5', 'b4', 'c4', 'd3', 'cxd3'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Qe7', 'O-O', 'a6'], ['e4', 'e6', 'Bc4', 'd5', 'Bd3', 'c5', 'exd5', 'exd5', 'Qf3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e6'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb5+', 'c6', 'Bd3', 'Bb4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'b6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nc6', 'Nc3', 'g6', 'Bg5', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'd3', 'a6', 'Nc3', 'b5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'Nf3', 'Bg4', 'Bxc4', 'a6'], ['d4', 'd5', 'e3', 'Nf6', 'h3', 'Bf5', 'a3', 'e6', 'Bb5+', 'c6'], ['d4', 'e5', 'dxe5', 'Qg5', 'Bxg5', 'Bd6', 'exd6', 'Ne7', 'dxe7', 'Rf8'], ['d4', 'Nf6', 'c4', 'g6', 'Nf3', 'd6', 'Nc3', 'Bg7', 'Bg5', 'O-O'], ['d4', 'f5', 'b3', 'Nf6', 'Bb2', 'd5', 'Nf3', 'Nc6', 'e3', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'e6', 'Be2', 'a6', 'O-O', 'b5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'Nf3', 'c6', 'Ng5', 'b5'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'e6', 'Bc4', 'a6', 'd4', 'b5'], ['d4', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Nc3', 'Nf6', 'Bf4', 'Bf5'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'd4', 'Nf3', 'Nc6', 'e4', 'Bb4+'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Bf5', 'Bxc4', 'Bxb1', 'Rxb1', 'Nf6'], ['Nh3', 'e5', 'f4', 'exf4', 'Nxf4', 'Qh4+', 'g3', 'Qf6', 'Bg2', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Bd6', 'Nc4', 'Bc5', 'Ne5', 'd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Be2', 'Be7', 'O-O', 'O-O'], ['d4', 'Nf6', 'Nc3', 'd5', 'Nf3', 'Bg4', 'Ne5', 'e6', 'b3', 'Bb4'], ['Nf3', 'd5', 'd4', 'c6', 'Nc3', 'g6', 'h3', 'Bg7', 'e3', 'e6'], ['e4', 'd5', 'e5', 'Nc6', 'd4', 'e6', 'a3', 'Qf6', 'exf6'], ['d4', 'e6', 'c4', 'c5', 'e3', 'cxd4', 'exd4', 'Nf6', 'Nc3', 'Bb4'], ['d4', 'e6', 'e4', 'Qf6', 'Nf3', 'Qg6', 'Nc3', 'Nf6', 'Qe2', 'Nc6'], ['d4', 'd5', 'c4', 'c6', 'Bf4', 'e6', 'cxd5', 'cxd5', 'Nc3', 'Bd6'], ['e4', 'e5', 'd4', 'f6', 'dxe5', 'fxe5', 'b3', 'Bc5', 'Bb2', 'Nf6'], ['e4', 'e5', 'd3', 'Nc6', 'Nf3', 'Bc5', 'a3', 'Nf6', 'h3', 'd6'], ['d4', 'd5', 'c4', 'e6', 'cxd5', 'exd5', 'Bf4', 'Nc6', 'Nc3', 'Bb4'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'a6', 'Qf3', 'c6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Bf5', 'e3', 'Nc6', 'Bb5', 'Qd7'], ['d4', 'b6', 'c4', 'Bb7', 'Bf4', 'e6', 'Nc3', 'Bb4', 'Qd2', 'Qh4'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nc6', 'cxd5', 'exd5', 'Nc3', 'Nf6'], ['d4', 'Nc6', 'Nf3', 'd5', 'Nc3', 'Nf6', 'Bf4', 'Bf5', 'e3', 'a6'], ['d4', 'd6', 'Bf4', 'e5', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8', 'Bxe5', 'f6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'Nc6', 'c3', 'd6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'dxc6', 'O-O', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'dxc4', 'e4', 'Nf6', 'e5', 'Nd5'], ['d4', 'd5', 'c4', 'e6', 'cxd5', 'Qxd5', 'Nc3', 'Qa5', 'Bd2', 'Bb4'], ['d4', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Nf3', 'Nc6', 'Bf4', 'Nf6'], ['e4', 'e5', 'd4', 'f6', 'd5', 'd6', 'Nc3', 'f5', 'f3', 'Nf6'], ['c4', 'e5', 'Nc3', 'Nc6', 'e3', 'Nf6', 'd4', 'd6', 'd5', 'Nb4'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'Bc5', 'e3', 'd5', 'Nc3', 'Be6'], ['d4', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Nc3', 'Nf6', 'Bf4', 'e6'], ['d4', 'd5', 'c4', 'c6', 'e3', 'e6', 'Nc3', 'Nf6', 'cxd5', 'exd5'], ['d4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'Bf4', 'Bf5', 'a3', 'Qd7'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'Bf5', 'Bd3', 'Be4', 'f3', 'Bxd3'], ['d4', 'd5', 'c4', 'e6', 'cxd5', 'exd5', 'Bf4', 'Na6', 'Nc3', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nc3', 'Ng4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'Nxe5', 'Bc5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e5', 'dxe5', 'Qxd1+', 'Kxd1', 'Nc6'], ['d4', 'g6', 'e4', 'Nf6', 'Nc3', 'Bg7', 'Bf4', 'O-O', 'Nb5', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Ng5', 'd5'], ['d4', 'c5', 'dxc5', 'Nc6', 'e4', 'e6', 'Nc3', 'Bxc5', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'Nc3', 'Nb4', 'Bd2', 'Bf5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'c6', 'axb5', 'cxb5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'd6', 'Ng5', 'Be6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Qf3', 'Bc5', 'g4', 'h6', 'h4', 'Qe7'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'Ne4', 'f3', 'Nd6', 'cxd5', 'Bf5'], ['d4', 'e6', 'e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'd5', 'Be3', 'h6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd5', 'Nf6', 'Qf5', 'd5'], ['d4', 'd5', 'h3', 'Nf6', 'f3', 'Nc6', 'c3', 'e5', 'Bg5', 'Be7'], ['d4', 'Nc6', 'Nf3', 'd5', 'c4', 'e6', 'cxd5', 'exd5', 'e3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd4', 'exd4'], ['d4', 'b6', 'e4', 'Bb7', 'Nc3', 'Nf6', 'e5', 'Ne4', 'Nxe4', 'Bxe4'], ['d4', 'e6', 'c4', 'd5', 'e3', 'dxc4', 'Bxc4', 'c6', 'Nf3', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd5', 'dxe5', 'dxe4', 'Nd4', 'Nxd4'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'c6', 'axb5', 'cxb5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Nd4', 'Nxe5', 'Ne6'], ['d4', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Nc3', 'Nf6', 'Nf3', 'Bd7'], ['e4', 'd5', 'e5', 'd4', 'Nf3', 'Bg4', 'Be2', 'Nc6', 'd3', 'e6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'Ba6', 'axb5', 'Bxb5'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nd4', 'c3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bc4', 'd6', 'd3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'Bb4', 'Bxc6', 'Bxc3'], ['Nf3', 'd6', 'd4', 'g6', 'Bf4', 'Nf6', 'e4', 'Nxe4', 'Bd3', 'Bf5'], ['d4', 'd5', 'c3', 'Bf5', 'Nd2', 'e6', 'Ngf3', 'Nc6', 'Qa4', 'Bd6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'Be6', 'e4', 'Bd7', 'Nf3', 'e6'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bb5', 'Bd6', 'O-O', 'Nf6', 'Re1', 'Nd4'], ['e4', 'c5', 'd3', 'Nc6', 'Nf3', 'e5', 'c4', 'Nd4', 'Nxe5', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'd4', 'Ngf6'], ['e4', 'd6', 'Nf3', 'd5', 'Bb5+', 'c6', 'Bd3', 'dxe4', 'Bxe4', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nge7', 'Bc4', 'd6', 'Ng5', 'Be6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Nc3', 'Bg4', 'Bb5+', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'd3', 'a6', 'Ba4', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'e5', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Qh4'], ['e4', 'c5', 'Nc3', 'Nf6', 'e5', 'Ng8', 'd4', 'cxd4', 'Qxd4', 'Nc6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bc4', 'd6', 'Qf3', 'e6', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'c6', 'Ba4', 'g5', 'O-O', 'g4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'g6', 'Bxc6', 'bxc6', 'O-O', 'Bg7'], ['Nf3', 'Nc6', 'b3', 'e5', 'Bb2', 'd6', 'e3', 'Bg4', 'Bb5', 'e4'], ['e4', 'b6', 'd4', 'Bb7', 'd5', 'e6', 'Nc3', 'Bb4', 'Bd2', 'Nf6'], ['Nf3', 'Nc6', 'b3', 'e5', 'Bb2', 'Bd6', 'e3', 'h6', 'd4', 'e4'], ['c4', 'b6', 'Nc3', 'Bb7', 'e4', 'Nf6', 'd3', 'e6', 'Nf3', 'Bb4'], ['e4', 'b6', 'd4', 'Bb7', 'f3', 'Nf6', 'Bd3', 'e6', 'Bg5', 'c5'], ['d4', 'g6', 'e4', 'b6', 'c4', 'Bb7', 'd5', 'Bg7', 'Qc2', 'e6'], ['Nf3', 'd5', 'b3', 'Nc6', 'Bb2', 'e5', 'Nxe5', 'Qf6', 'e3', 'Nxe5'], ['d4', 'b6', 'g3', 'Bb7', 'f3', 'Nf6', 'Bg5', 'e6', 'Bxf6', 'Qxf6'], ['Nf3', 'd5', 'b3', 'Bg4', 'Bb2', 'Bxf3', 'exf3', 'Nc6', 'Bb5', 'Qd7'], ['Nf3', 'Nc6', 'b3', 'Nf6', 'Bb2', 'd5', 'e3', 'Bg4', 'd4', 'g6'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Nf6', 'Bc4', 'e6', 'd3', 'Bb4'], ['Nf3', 'e6', 'b3', 'b6', 'Bb2', 'd5', 'e3', 'Nf6', 'Ne5', 'Qd6'], ['e4', 'b6', 'd4', 'Bb7', 'f3', 'Nf6', 'Bd3', 'e6', 'Be3', 'c5'], ['d4', 'b6', 'c3', 'Bb7', 'e3', 'Nf6', 'Nh3', 'e6', 'Nd2', 'c5'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'Nf6', 'f3', 'e6', 'a3', 'c5'], ['e4', 'b6', 'Nf3', 'Bb7', 'd4', 'Bxe4', 'Bf4', 'Nf6', 'Bd3', 'Bb7'], ['d4', 'b6', 'c4', 'Bb7', 'f3', 'Nf6', 'Bg5', 'e6', 'Nc3', 'Bb4'], ['Nf3', 'c5', 'b3', 'd6', 'Bb2', 'Nc6', 'e3', 'Nf6', 'Bb5', 'e6'], ['Nf3', 'd5', 'b3', 'e5', 'Nxe5', 'Bd6', 'Nf3', 'Nf6', 'Bb2'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'Nf6', 'Bd3', 'd5', 'e5', 'Nfd7'], ['e4', 'b6', 'Bd3', 'Bb7', 'Nc3', 'Nf6', 'Nf3', 'e6', 'O-O', 'Bb4'], ['Nf3', 'g6', 'b3', 'Nf6', 'Bb2', 'Bg7', 'e3', 'O-O', 'd4', 'd6'], ['Nf3', 'd5', 'b3', 'Nc6', 'Bb2', 'f6', 'e3', 'e5', 'Bb5', 'Bd6'], ['e4', 'b6', 'Nf3', 'Bb7', 'Qe2', 'Nf6', 'd4', 'Bxe4', 'Nc3', 'Bb7'], ['Nf3', 'd5', 'b3', 'Nc6', 'Bb2', 'Bf5', 'a3', 'e5', 'Nxe5', 'Nxe5'], ['e4', 'b6', 'd4', 'Bb7', 'd5', 'Nf6', 'Nc3', 'e6', 'Nf3', 'exd5'], ['e4', 'b6', 'd4', 'Bb7', 'd5', 'Nf6', 'Nc3', 'e6', 'dxe6', 'fxe6'], ['Nf3', 'e6', 'b3', 'g5', 'd3', 'd5', 'Bxg5', 'f6', 'Bh4', 'Nc6'], ['e4', 'b6', 'f4', 'Bb7', 'd3', 'Nf6', 'Be3', 'e6', 'Nd2', 'g6'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Nf6', 'e5', 'Nd5', 'Nxd5', 'Bxd5'], ['Nf3', 'd5', 'b3', 'Bf5', 'Bb2', 'h6', 'e3', 'Qd6', 'Bb5+', 'c6'], ['Nf3', 'e6', 'b3', 'd5', 'Bb2', 'Nh6', 'e3', 'f6', 'c4', 'e5'], ['e3', 'b6', 'g3', 'Bb7', 'Nf3', 'Nf6', 'Bg2', 'e6', 'O-O', 'd5'], ['e4', 'b6', 'd4', 'Bb7', 'd5', 'Nf6', 'Nc3', 'e6', 'e5', 'Nxd5'], ['Nf3', 'd6', 'b3', 'Bg4', 'Bb2', 'c5', 'e3', 'Bh5', 'd3', 'Nc6'], ['e4', 'b6', 'd4', 'e6', 'Bd3', 'Bb7', 'Nf3', 'Nf6', 'Nc3', 'Bb4'], ['Nf3', 'e5', 'b3', 'Nc6', 'Bb2', 'd6', 'e3', 'e4', 'Nd4', 'Nxd4'], ['Nf3', 'e6', 'b3', 'Nc6', 'Bb2', 'Nf6', 'e3', 'Be7', 'd4', 'd5'], ['Nc3', 'b6', 'b4', 'Bb7', 'Ba3', 'e6', 'Qb1', 'Nf6', 'Nf3', 'Be7'], ['e4', 'e6', 'Nf3', 'd5', 'd3', 'dxe4', 'Ng5', 'exd3', 'Bxd3', 'Be7'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Bg5', 'Be7'], ['c4', 'c5', 'Nc3', 'Nf6', 'Nf3', 'd6', 'e3', 'Nc6', 'd4', 'cxd4'], ['e4', 'e6', 'd4', 'd5', 'f3', 'dxe4', 'fxe4', 'Qh4+'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qc4', 'e4', 'Nf6', 'Bxc4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Bb5', 'Bd7'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'd5', 'cxd5', 'Nxd5', 'Nc3', 'Nxc3'], ['d4', 'e6', 'c4', 'f5', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'Nf3', 'O-O'], ['c4', 'c5', 'Nf3', 'e6', 'Nc3', 'a6', 'g3', 'Nc6', 'Bg2', 'Nf6'], ['c4', 'c6', 'Nc3', 'd5', 'e3', 'Nf6', 'Nf3', 'Bg4', 'Qb3', 'Qd7'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'Nbd7', 'Bc4', 'e5', 'd5', 'c6'], ['e4', 'd6', 'd4', 'Nf6', 'Nf3', 'Nbd7', 'Nc3', 'e5', 'dxe5', 'dxe5'], ['c4', 'e5', 'g3', 'f5', 'Bg2', 'Nc6', 'Nc3', 'Nf6', 'e3', 'Bb4'], ['d4', 'd6', 'Nf3', 'Bg4', 'e4', 'Nf6', 'Bd3', 'c6', 'h3', 'Bh5'], ['c4', 'Nf6', 'Nc3', 'e6', 'e4', 'Bb4', 'e5', 'Bxc3', 'bxc3', 'Ne4'], ['c4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'g6', 'e4', 'Nf6', 'd3', 'Bg7'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qe6', 'Nf3', 'Bd7', 'e4', 'Nc6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'Nbd7', 'Nf3', 'e5', 'dxe5', 'dxe5'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'g3', 'Nf6', 'e4', 'e5'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'd6', 'h3', 'g6', 'Nc3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'bxc6', 'Nxe5', 'Bd6'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'd6', 'g3', 'Nc6', 'Bg2', 'g6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'd3', 'e6', 'Nc3', 'd5'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'c6', 'Nf3', 'Bg4', 'Qb3', 'b6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'dxc4', 'e3', 'Bb4', 'Bd2', 'c5'], ['e3', 'e5', 'Qh5', 'Nh6', 'Qxe5+', 'Be7', 'Qxg7'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Na6', 'Bxc4', 'b5', 'Bxb5+', 'Bd7'], ['e4', 'e5', 'c4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'b6', 'h3', 'Bc5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'Nbd7', 'Qc2', 'Qb6'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'd5', 'cxd5', 'Nxd5', 'Nc3', 'Be6'], ['d4', 'e6', 'c4', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Bc5', 'Be3', 'e5'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'Nf6', 'e3', 'Nc6', 'Bxc4', 'e5'], ['d4', 'd5', 'c4', 'Nf6', 'c5', 'Nc6', 'Nc3', 'Bf5', 'a3', 'e5'], ['d4', 'Nf6', 'c4', 'd5', 'Nc3', 'dxc4', 'e3', 'Be6', 'Qa4+', 'Qd7'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qc6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'd5', 'd3', 'f5', 'h3', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nxd4', 'Nxd4', 'exd4', 'Qxd4', 'c5'], ['e4', 'd5', 'Nc3', 'c6', 'd4', 'f5', 'exd5', 'cxd5', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'd5', 'exd5', 'Nxd5', 'Nxe5', 'Bd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e5', 'd3', 'Bd6', 'O-O', 'Nf6'], ['d4', 'd5', 'e3', 'Nf6', 'Bd3', 'e6', 'Nf3', 'Bb4+', 'Bd2', 'Nc6'], ['e4', 'e6', 'd4', 'c5', 'Nf3', 'a6', 'Be2', 'Qc7', 'O-O', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'dxe5', 'Nxe5', 'Nxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bg4', 'd3', 'Bxf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'Bxc6', 'Nxc6', 'O-O', 'Bc5'], ['e4', 'e5', 'Nf3', 'Bd6', 'Nc3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Qe7'], ['e4', 'c6', 'Bc4', 'd5', 'Bb3', 'e6', 'c4', 'dxe4', 'Nc3', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'Qa4+', 'c6', 'Qxc4', 'Be6', 'Qb4', 'Qb6'], ['Nc3', 'e5', 'Nf3', 'Nc6', 'd3', 'Bb4', 'Qd2', 'd6', 'Nb5', 'Bxd2+'], ['e4', 'Nc6', 'd4', 'Nf6', 'e5', 'Ne4', 'Bd3', 'f5', 'f3', 'Ng5'], ['d3', 'c6', 'e4', 'Qa5+', 'Bd2', 'Qb6', 'Nc3', 'Qxb2', 'Qb1', 'Qa3'], ['Nf3', 'e6', 'g3', 'c6', 'Bg2', 'Bd6', 'O-O', 'b5', 'e4', 'Nf6'], ['e3', 'e6', 'f4', 'Nf6', 'Bd3', 'b6', 'c4', 'Bb7', 'b4', 'Bxg2'], ['e4', 'f6', 'Nh3', 'a6', 'Bc4', 'Nc6', 'Bxg8', 'e6', 'Bxe6', 'dxe6'], ['e4', 'c6', 'e5', 'd6', 'f4', 'd5', 'g3', 'f6', 'd4', 'fxe5'], ['e3', 'd5', 'Bb5+', 'c6', 'Ba4', 'Nf6', 'Nf3', 'Qd6', 'O-O', 'Na6'], ['e4', 'e5', 'Nf3', 'Nc6'], ['d4', 'e6', 'e4', 'd6', 'Qh5', 'Nf6', 'Qd1', 'b6', 'Nc3', 'Bb7'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'h3', 'dxc4', 'Bxc4', 'Bf5'], ['e4', 'd6', 'd4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'Nf6', 'e5', 'Ng4'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Bf5', 'Nc3', 'e6', 'a3', 'h6'], ['Nf3', 'c5', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'e4', 'e5', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Bg5', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nc6', 'a3', 'g6', 'b4', 'Bg7'], ['e4', 'd6', 'd4', 'g6', 'c4', 'Bg7', 'Nf3', 'Nf6', 'Nc3', 'b6'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'a6', 'Be2', 'd6', 'O-O', 'b6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'e6', 'Bc4', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Bg4', 'Be2', 'c6', 'O-O', 'e6'], ['d4', 'd6', 'Bf4', 'g6', 'e3', 'a6', 'h3', 'Bg7', 'a3', 'Nc6'], ['e4', 'd6', 'c3', 'e5', 'Nf3', 'f5', 'Bd3', 'g6', 'O-O', 'f4'], ['d4', 'd5', 'c4', 'c5', 'e3', 'dxc4', 'Bxc4', 'cxd4', 'exd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Qh4'], ['d4', 'd5', 'Nf3', 'Bf5', 'Bf4', 'e6', 'Nbd2', 'Bb4', 'c3', 'Ba5'], ['e4', 'd6', 'd4', 'g6', 'h4', 'Bg7', 'h5', 'Nc6', 'Be3', 'e5'], ['e3', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nf6', 'e4', 'g6', 'f3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'Nf6', 'Qc2', 'Be7'], ['e4', 'd6', 'Nf3', 'g6', 'd4', 'Bg7', 'Be3', 'Nf6', 'Bd3', 'Nc6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Be2', 'Nf6', 'O-O', 'Bd6'], ['e4', 'd6', 'd4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'Nf6', 'Bg5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'Nf3', 'Nxe4', 'Be2', 'd5'], ['e4', 'd6', 'd4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'Nf6', 'Bg5', 'Bg4'], ['e3', 'd5', 'b3', 'g6', 'Bb2', 'Nf6', 'd4', 'Bg7', 'Be2', 'O-O'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'd6', 'd3', 'Nf6', 'Ng5', 'O-O'], ['e4', 'd6', 'Nf3', 'g6', 'c3', 'Bg7', 'Bc4', 'Nf6', 'Qb3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'Bf5', 'Nc3', 'e6', 'h3', 'Be7'], ['e4', 'd6', 'd4', 'g6', 'Nc3', 'Bg7', 'Be3', 'Nf6', 'Qd2', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'c6', 'g3', 'Nf6', 'Bg2', 'Be7'], ['e4', 'c5', 'Nf3', 'a6', 'Nc3', 'Nc6', 'd3', 'd6', 'Be2', 'e5'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'Bd3', 'Bb4', 'Bd2', 'Nf6'], ['e4', 'd6', 'd4', 'g6', 'f3', 'Bg7', 'Be3', 'Nf6', 'Nc3', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'c3', 'Nf6', 'd3', 'd5'], ['e4', 'd6', 'f4', 'e5', 'fxe5', 'dxe5', 'Nf3', 'Nc6', 'Bc4', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'Re1', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Bd7', 'Bc4', 'g6', 'Ng5', 'e6'], ['e4', 'Nc6', 'Nf3', 'd6', 'Bb5', 'Bd7', 'd4', 'e6', 'd5', 'a6'], ['d4', 'g6', 'e4', 'd6', 'Nf3', 'Bg7', 'Nc3', 'Nf6', 'Bc4', 'O-O'], ['e4', 'Nf6', 'e5', 'Ne4', 'd3', 'Nc5', 'b3', 'd6', 'd4', 'Ne4'], ['Nf3', 'd5', 'e3', 'h6', 'b3', 'f6', 'Bb2', 'Bd7', 'h3', 'b5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd6', 'Nc3', 'Ng4', 'h3', 'Nf6'], ['c4', 'Nf6', 'Nf3', 'g6', 'g4', 'Bg7', 'b4', 'Nxg4', 'Bh3', 'Bxa1'], ['h4', 'e5', 'e4', 'h5', 'f3', 'g6', 'g4', 'g5', 'hxg5', 'hxg4'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Qe7', 'Qxh8', 'a5', 'Qxg8', 'Ra6'], ['e4', 'e5', 'Nc3', 'c6', 'Nf3'], ['Nf3', 'c5', 'Nc3', 'g6', 'd3', 'd5', 'e4', 'dxe4', 'Nxe4', 'Bg7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nc6'], ['d4', 'c5', 'dxc5', 'b6', 'cxb6', 'Nf6', 'bxa7', 'Rxa7', 'Be3', 'Rc7'], ['e4', 'c6', 'Nc3', 'd5', 'Nf3', 'Bg4', 'd4', 'dxe4', 'Nxe4', 'e6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Be6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'Ngf3', 'c5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nd7', 'd4', 'c6', 'dxe5', 'dxe5'], ['d4', 'Nf6', 'h3', 'e6', 'Bf4', 'c5', 'Nf3', 'd5', 'e3', 'Nc6'], ['d4', 'e6', 'e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'Nf3', 'c5'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'c3', 'Nc6', 'Ngf3', 'Qb6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'e6', 'Bxc6', 'bxc6', 'd4', 'cxd4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'c6', 'd4', 'Bg4'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb5+', 'c6', 'Ba4', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nh6', 'd4', 'd6', 'Nf3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'Nf6', 'Nc3', 'Bf5', 'Qe2', 'c6'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'c6', 'Nxe4', 'Bf5', 'Ng3', 'e6'], ['e4', 'd6', 'f4', 'c5', 'Bc4', 'Nf6', 'Qe2', 'Be6', 'e5', 'Bxc4'], ['e4', 'c6', 'Bc4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bb3', 'Qe7+'], ['Nf3', 'Nf6', 'd4', 'b6', 'Bf4', 'Bb7', 'e3', 'g6', 'h3', 'd6'], ['d4', 'Nf6', 'Nc3', 'd5', 'Bf4', 'Bf5', 'Qd2', 'c5', 'e3', 'e6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'Nc6', 'Bc4', 'Bf5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'Nc3', 'c6', 'h3', 'Bh5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Nxe4', 'Bxf7+', 'Kxf7', 'Nxe4', 'd5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bc4', 'd6', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'O-O', 'h6', 'h3', 'Be7'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'e6', 'e5', 'Bb4', 'Nf3', 'Bxc3+'], ['e4', 'c5', 'g3', 'Nc6', 'Bg2', 'e5', 'Nc3', 'Nf6', 'Nf3', 'd6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'dxc5', 'Bxc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxd4', 'exd4', 'O-O', 'Nf6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'd4', 'Nc6'], ['d4', 'Nf6', 'c4', 'e5', 'd5', 'Bc5', 'Nc3', 'O-O', 'Bg5', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bb6', 'O-O', 'd6'], ['e4', 'c5', 'Nf3', 'e6', 'g3', 'a6', 'Bg2', 'Qc7', 'c4', 'd6'], ['c4', 'Nf6', 'Nf3', 'c5', 'Nc3', 'Nc6', 'e3', 'e5', 'Qc2', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'g3', 'e5', 'Bg2', 'd6', 'Nc3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'd5', 'exd5', 'Nxd5', 'O-O', 'Nb6'], ['b4', 'e6', 'Bb2', 'Nf6', 'b5', 'd5', 'e3', 'Bd6', 'c4', 'O-O'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'Nf6', 'e5', 'cxb2'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['d4', 'Nf6', 'Bf4', 'e6', 'Nc3', 'd5', 'Qd2', 'Bd6', 'f3', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'g3', 'Bg4', 'Bg2', 'Qd7', 'd3', 'Bh3'], ['e4', 'c5', 'Nf3', 'Nc6', 'g3', 'g6', 'Bg2', 'Bg7', 'Nc3', 'd6'], ['d4', 'Nf6', 'e3', 'b6', 'Nf3', 'Bb7', 'Be2', 'e6', 'Nc3', 'Be7'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'Nc6', 'Bf4', 'Bb4+'], ['e4', 'Nc6', 'd4', 'e6', 'Nc3', 'Be7', 'g3', 'h5', 'Bg2', 'h4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e3', 'h6'], ['e4', 'd6', 'b3', 'Nf6', 'Bb2', 'Nxe4', 'Nf3', 'Bg4', 'h3', 'Bxf3'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'e3', 'Be7', 'Nf3', 'b6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Bd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Bb4+'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'e5', 'd4', 'cxd4', 'cxd4', 'exd4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bc4', 'Be7', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'Bb5', 'Bd7', 'd3', 'a6'], ['Nf3', 'd5', 'e3', 'Nc6', 'd4', 'Nf6', 'Nbd2', 'Bf5', 'a3', 'e6'], ['e4', 'Nc6', 'Nf3', 'e5', 'Nc3', 'Nf6', 'a3', 'a6', 'Bc4', 'Bc5'], ['e4', 'Nf6', 'e5', 'Nd5', 'Bc4', 'Nb6', 'Bb3', 'd5', 'exd6', 'cxd6'], ['Nf3', 'Nc6', 'c4', 'e5', 'Nc3', 'a6', 'e3', 'Nf6', 'Qc2', 'Bc5'], ['e4', 'Nc6', 'Nf3', 'e5', 'a3', 'Bc5', 'Bc4', 'Nge7', 'Ng5', 'd5'], ['c4', 'e5', 'Nc3', 'Nf6', 'd3', 'h6', 'Nf3', 'Nc6', 'g3', 'd5'], ['e4', 'g6', 'Nf3', 'Bg7', 'd4', 'd5', 'e5', 'e6', 'Bb5+', 'Bd7'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'd5', 'Ne2', 'Bg4', 'd4', 'e4'], ['e4', 'Nc6', 'Nf3', 'd6', 'Bb5', 'e5', 'd4', 'exd4', 'Qxd4', 'Bd7'], ['c4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'Bb4', 'Nd2', 'Bxc3'], ['e4', 'Nf6', 'Nc3', 'd5', 'e5', 'Ng8', 'd4', 'e6', 'Bb5+', 'Bd7'], ['d4', 'd5', 'Nf3', 'c6', 'Bf4', 'Nd7', 'e3', 'Ngf6', 'h3', 'Ne4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'O-O', 'Bg4', 'c3', 'Nf6'], ['e4', 'c5', 'c3', 'd6', 'Nf3', 'Nf6', 'd3', 'h6', 'Nbd2', 'Nc6'], ['e4', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'e5', 'Nf3', 'Nd4', 'Bc4', 'Nxf3+'], ['b3', 'e5', 'Bb2', 'd6', 'e4', 'Be7', 'Nc3', 'Bf6', 'h3', 'Be6'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bb5', 'Nge7', 'O-O', 'd6', 'd4', 'exd4'], ['Nf3', 'd5', 'd4', 'Nf6', 'h3', 'Nc6', 'Bf4', 'e6', 'e3', 'Bb4+'], ['e4', 'c5', 'Bc4', 'e6', 'd3', 'd5', 'exd5', 'exd5', 'Bb5+', 'Nc6'], ['e4', 'Nc6', 'd4', 'e6', 'c3', 'b6', 'e5', 'Bb7', 'Nf3', 'h6'], ['c4', 'e6', 'd4', 'Nf6', 'Nf3', 'Be7', 'e4', 'Nxe4', 'Be2', 'Bb4+'], ['Nf3', 'e6', 'c4', 'd6', 'Nc3', 'e5', 'd4', 'exd4', 'Nxd4', 'g6'], ['e4', 'Nc6', 'Bb5', 'e5', 'Nf3', 'd6', 'O-O', 'Bd7', 'c3', 'g6'], ['Nf3', 'Nf6', 'c4', 'c6', 'd4', 'd5', 'e3', 'g6', 'Nc3', 'Bg7'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'Nf6', 'Nc3', 'O-O', 'Bd3', 'd5'], ['Nf3', 'c5', 'c4', 'd6', 'Nc3', 'Nf6', 'e3', 'e6', 'd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'd3', 'h6', 'Nc3'], ['b3', 'e5', 'Nf3', 'Nc6', 'Bb2', 'd6', 'Nc3', 'g6', 'e4', 'Bg4'], ['Nf3', 'f5', 'c4', 'Nf6', 'd3', 'Nc6', 'Nc3', 'e5', 'Qc2', 'Bc5'], ['Nf3', 'e6', 'c4', 'c6', 'd4', 'Na6', 'g3', 'd5', 'b3', 'Be7'], ['e4', 'g6', 'd3', 'Bg7', 'Nf3', 'd6', 'h3', 'c5', 'c3', 'Nc6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'Bd3', 'Ne7'], ['Nf3', 'd5', 'g3', 'Nc6', 'Bg2', 'e5', 'e3', 'e4', 'Nd4', 'Nxd4'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Qc7'], ['d4', 'Nf6', 'c4', 'd5', 'Nf3', 'h6', 'Nc3', 'Bf5', 'Bf4', 'a6'], ['Nf3', 'd5', 'e3', 'Nf6', 'g3', 'Bf5', 'Bg2', 'Nc6', 'd4', 'e6'], ['e3', 'g6', 'Nf3', 'Bg7', 'Be2', 'Nc6', 'O-O', 'd6', 'd4', 'e5'], ['e4', 'c5', 'c4', 'Nc6', 'a3', 'Nf6', 'Nc3', 'g6', 'd3', 'Bg7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'c5', 'Nb5', 'Be7'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'd3', 'Nf6', 'Nc3', 'O-O'], ['e4', 'e5', 'd3', 'Bc5', 'a3', 'c6', 'Nf3', 'd5', 'Nxe5', 'dxe4'], ['e4', 'e5', 'Nc3', 'Nf6', 'f4', 'Nxe4', 'Nxe4', 'exf4', 'Nf3', 'Qe7'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'Bd3', 'Nf6', 'Be3', 'Bb4'], ['c4', 'e5', 'Nc3', 'Nc6', 'd3', 'Bb4', 'Bd2', 'Nf6', 'g3', 'd5'], ['e4', 'e5', 'Nc3', 'd6', 'f4', 'exf4', 'Nf3', 'Nc6', 'd4', 'Bg4'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'd3', 'Ngf6'], ['e4', 'e5', 'Nc3', 'Nf6', 'f4', 'Bc5', 'fxe5', 'Ng8', 'd4', 'Qh4+'], ['e4', 'e6', 'Qe2', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Nf6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'g5', 'Bc4', 'g4', 'd4', 'gxf3'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'Nf6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'd6', 'Bc4', 'Nf6', 'cxd4', 'Nc6'], ['d4', 'd5', 'g3', 'g6', 'e3', 'Bg7', 'c4', 'c6', 'cxd5', 'Qxd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'd3', 'Bg4'], ['e4', 'e5', 'f4', 'd5', 'exd5', 'e4', 'Nc3', 'Nf6', 'Bc4', 'Bg4'], ['e4', 'e6', 'Qe2', 'Nf6', 'f4', 'Nc6', 'Nf3', 'b6', 'c4', 'a5'], ['e4', 'e5', 'Nc3', 'c6', 'f4', 'Bd6', 'fxe5', 'Bxe5', 'd4', 'Bf6'], ['d4', 'd5', 'Nf3', 'Nf6', 'c4', 'c6', 'Nc3', 'Bf5', 'e3', 'e6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'e6', 'Bxc6', 'bxc6', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'd3', 'Nf6', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'f5', 'd3', 'Nf6', 'exf5', 'Nc6', 'Bg5', 'd5'], ['e4', 'd6', 'd4', 'g6', 'c4', 'Bg7', 'Nc3', 'Nd7', 'Nf3', 'b6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Nf3', 'Nd4', 'Nxe5', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'd6', 'd4', 'exd4'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'Nf6', 'Bd3', 'e6', 'O-O', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd3', 'h6', 'Be3', 'd5'], ['e4', 'e6', 'c4', 'c6', 'Nc3', 'Bb4', 'Nf3', 'Bxc3', 'dxc3', 'Nf6'], ['c4', 'c5', 'e3', 'Nc6', 'd4', 'cxd4', 'exd4', 'd5', 'b3', 'dxc4'], ['e4', 'Nc6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Bg4', 'Nc3', 'Qe6+'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Bc5', 'd4', 'exd4', 'cxd4', 'Bb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'h3', 'Be6', 'Bxe6', 'fxe6'], ['e4', 'e5', 'f4', 'd6', 'fxe5', 'dxe5', 'Nf3', 'Nc6', 'Bc4', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'a6', 'd4', 'Bd6', 'd5', 'Nce7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Bc5', 'O-O', 'd6'], ['d4', 'Nf6', 'c4', 'c6', 'Bg5', 'Qa5+', 'Bd2', 'Qb6', 'Bc3', 'Ne4'], ['d4', 'c6', 'c4', 'd5', 'cxd5', 'cxd5', 'Nc3', 'e6', 'Nf3', 'Nc6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'e6', 'Bb5', 'a6', 'Bxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'Nc3', 'g6', 'd3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'O-O'], ['e4', 'c5', 'Bc4', 'a6', 'Qf3', 'e6', 'Nh3', 'Nc6', 'd3', 'Nd4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Bd3', 'd6'], ['d4', 'e6', 'Bf4', 'd5', 'e3', 'Nc6', 'Nf3', 'Nf6', 'Nbd2', 'Be7'], ['d4', 'e6', 'e4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Bd3', 'Nc6'], ['e4', 'e6', 'd3', 'd5', 'exd5', 'Qxd5', 'b3', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd7', 'Be2', 'a5', 'Nf3', 'Qe6'], ['e4', 'e6', 'Nf3', 'd5', 'd3', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'Bc5'], ['e3', 'e6', 'Nf3', 'd5', 'Ne5', 'Bd6', 'f4', 'Bxe5', 'fxe5', 'Nc6'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'Nf3', 'Nf6', 'e5', 'Nd5'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'd6', 'Bg5', 'c6', 'Nc3', 'Na6'], ['d4', 'e6', 'e4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Qb3', 'Qxb3'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Qf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Qa4+', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'exd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb3', 'b6'], ['e4', 'b6', 'd4', 'e6', 'Nc3', 'Bb7', 'Bd2', 'h6', 'Nf3', 'd5'], ['h4', 'd5', 'b4', 'Nf6', 'Nc3', 'b5', 'Nxb5', 'a6', 'Nxc7+', 'Qxc7'], ['e4', 'a5', 'Nf3', 'Nc6', 'Bb5', 'a4', 'a3', 'Ra5', 'c4', 'Na7'], ['e4', 'c5', 'Nf3', 'e6', 'g3', 'Nc6', 'Bg2', 'Nf6', 'Qe2', 'e5'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'e4', 'Nc6'], ['e4', 'e6', 'd4', 'a6', 'Nf3', 'b5', 'c4', 'bxc4', 'Bxc4', 'Bb7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c4', 'Nf6', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Bb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'e3', 'Be7', 'Be2', 'O-O'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c4', 'Nf6', 'Nf3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Nxe5', 'Nxe5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'h6', 'Nc3', 'Qe7'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'd3', 'Bc5', 'Ng5', 'O-O'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'Nf3', 'Be7', 'Bd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Bc5', 'O-O', 'd6', 'Nc3', 'c6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bd3', 'c5', 'dxc5', 'Bxc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nxd4', 'Nxe5', 'Bc5', 'Be3', 'Ne6'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e3', 'h6'], ['d4', 'f5', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'c3', 'Nc6', 'Ngf3', 'Qb6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'Be2', 'Be7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Bg5', 'Be7'], ['d4', 'Nf6', 'c4', 'g6', 'Bg5', 'Ne4', 'Nf3', 'Bg7', 'e3', 'O-O'], ['d4', 'e6', 'Nc3', 'd5', 'g3', 'c5', 'dxc5', 'Bxc5', 'Bg2', 'Nf6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'b3', 'd6', 'Bb2', 'O-O'], ['e4', 'c5', 'c3', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'cxd4'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'd6'], ['e4', 'Nc6', 'd4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'd5', 'Nxe5'], ['e4', 'c5', 'c3', 'b6', 'd4', 'Bb7', 'd5', 'Nf6', 'Bd3', 'c4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'Nc3', 'Nf6', 'd4', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bd3', 'e5'], ['e4', 'c5', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'e6', 'Nf3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'O-O', 'Qf6'], ['e4', 'c5', 'f4', 'd5', 'e5', 'e6', 'Nf3', 'Nc6', 'Be2', 'Nh6'], ['e4', 'c5', 'g3', 'd6', 'Bg2', 'Nc6', 'Ne2', 'Nf6', 'O-O', 'g6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Bd3', 'e6'], ['e4', 'e6', 'd4', 'd6', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'f5', 'Nxe5', 'Qf6', 'd4', 'd6', 'Nc4', 'fxe4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c5', 'c3', 'd6', 'd4', 'cxd4', 'cxd4', 'Nd7', 'Nf3', 'Ngf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd4', 'Bxd4'], ['e4', 'c5', 'c3', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c4', 'e6', 'Nf3', 'Nf6'], ['d4', 'Nf6', 'Bf4', 'c5', 'e3', 'Qb6', 'b3', 'Nc6', 'c3', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'Bg4', 'h3', 'Bh5'], ['f4', 'e5', 'fxe5', 'd6', 'Nf3', 'dxe5', 'e4', 'Nf6', 'd3', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'c5', 'Bc4', 'e6', 'e5', 'a6', 'Nf3', 'b5', 'Bd3', 'Bb7'], ['d4', 'Nf6', 'Nc3', 'e6', 'e4', 'Bb4', 'e5', 'Nd5', 'Bd2', 'Nxc3'], ['d4', 'd5', 'c4', 'Nf6', 'Nf3', 'Nc6', 'Bg5', 'Bg4', 'e3', 'h6'], ['d4', 'Nc6', 'c4', 'Nf6', 'Nf3', 'd5', 'e3', 'Bg4', 'cxd5', 'Nxd5'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'a6', 'd4', 'cxd4', 'Qxd4', 'b5'], ['d4', 'e6', 'c4', 'a6', 'Nf3', 'd6', 'e3', 'h6', 'Nc3', 'b6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Bb4+', 'Nc3', 'Nf6', 'Bg5', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nd7', 'd4', 'cxd4', 'cxd4', 'a6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e6', 'Bxc4', 'Nc6', 'Nf3', 'Bd6'], ['d4', 'Nf6', 'Bg5', 'e5', 'dxe5', 'Bb4+', 'c3', 'Be7', 'exf6', 'Bxf6'], ['d4', 'Nf6', 'Nf3', 'e6', 'Bf4', 'Nc6', 'e3', 'Be7', 'c4', 'O-O'], ['d4', 'Nc6', 'c4', 'e6', 'Nf3', 'g6', 'e3', 'Bg7', 'Be2', 'Nge7'], ['d4', 'Nf6', 'c4', 'e6', 'Bg5', 'h6', 'Bh4', 'd5', 'e3', 'c5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'd5', 'c4', 'h6', 'Nc3', 'Nf6', 'e3', 'a6', 'Nf3', 'Bg4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'c3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bb5+', 'Nbd7'], ['d4', 'c6', 'c4', 'd5', 'e3', 'Bf5', 'cxd5', 'cxd5', 'Nc3', 'e6'], ['d4', 'e6', 'c4', 'Be7', 'Nf3', 'h6', 'Nc3', 'd6', 'e3', 'Bd7'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'a6', 'Nf3', 'b5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c6', 'cxd5', 'cxd5', 'Nf3', 'Bb4'], ['e4', 'c5', 'c4', 'd6', 'Nc3', 'a6', 'Qf3', 'b6', 'b3', 'Bb7'], ['d4', 'Nf6', 'c4', 'c6', 'Nf3', 'd5', 'e3', 'e6', 'Nc3', 'Bb4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'c6', 'axb5', 'cxb5'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'd4', 'cxd4', 'Qxd4', 'Nf6'], ['d4', 'e6', 'c4', 'b6', 'Nc3', 'Bb7', 'Nf3', 'Bb4', 'e3', 'Nf6'], ['d4', 'Nf6', 'Nf3', 'e6', 'e3', 'Be7', 'Bd3', 'O-O', 'O-O', 'Nc6'], ['e4', 'c5', 'd3', 'd6', 'Nc3', 'Nd7', 'b3', 'a6', 'a3', 'b5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'c6', 'axb5', 'cxb5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e5', 'Bxc4', 'exd4', 'Qf3', 'Nf6'], ['g3', 'Nf6', 'Bg2', 'g6', 'c4', 'Bg7', 'Qb3', 'O-O', 'Bxb7', 'Bxb7'], ['d4', 'Nc6', 'c4', 'd5', 'e3', 'Nf6', 'Nc3', 'e6', 'Nf3', 'Be7'], ['d4', 'Nf6', 'Bf4', 'e6', 'e3', 'Be7', 'Bg5', 'O-O', 'Bxf6', 'Bxf6'], ['d4', 'Nf6', 'Nc3', 'e6', 'e4', 'Bb4', 'e5', 'Nd5', 'Bd2', 'O-O'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'Bd7', 'axb5', 'Bxb5'], ['d4', 'g6', 'c4', 'Bg7', 'Nf3', 'c5', 'd5', 'Qa5+', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nc6', 'O-O', 'Bc5', 'c3', 'd5'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'd6', 'Ne2', 'g6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bf4', 'O-O', 'e3', 'c5'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'Qe7', 'Qd5', 'f6', 'exf6', 'Nxf6'], ['d4', 'Nf6', 'Nf3', 'g6', 'e3', 'Bg7', 'Bd3', 'O-O', 'b3', 'd6'], ['Nf3', 'd5', 'd4', 'Nf6', 'c4', 'b6', 'cxd5', 'Nxd5', 'e4', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['Nf3', 'd5', 'c4', 'c6', 'b3', 'Bf5', 'Bb2', 'e6', 'g3', 'Nf6'], ['d4', 'd5', 'Bf4', 'Nd7', 'c4', 'c6', 'e3', 'e6', 'Nf3', 'a6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'a6', 'a4', 'e6', 'Bf4', 'Nd7'], ['c4', 'c5', 'g3', 'd6', 'Bg2', 'Qd7', 'Nf3', 'b6', 'Ne5', 'dxe5'], ['c4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qc3', 'Bb4'], ['c4', 'e6', 'g3', 'd5', 'cxd5', 'Qxd5', 'Nf3', 'Nf6', 'Nc3', 'Qd6'], ['d4', 'Nf6', 'c4', 'g6', 'Bg5', 'Bg7', 'Nc3', 'd5', 'c5', 'Nc6'], ['c4', 'e5', 'Nc3', 'd6', 'g3', 'Nc6', 'Bg2', 'Bf5', 'd3', 'a6'], ['c4', 'e5', 'Nc3', 'c6', 'a4', 'a5', 'g3', 'f6', 'Bg2', 'Bb4'], ['c4', 'c5', 'a3', 'Nc6', 'Nc3', 'g6', 'd3', 'Bg7', 'Bf4', 'e5'], ['c4', 'c5', 'Nc3', 'f5', 'g3', 'Nf6', 'Bg2', 'e5', 'Rb1', 'Nc6'], ['c4', 'd6', 'g3', 'e5', 'e4', 'Nf6', 'Bg2', 'Bg4', 'Ne2', 'Qd7'], ['c4', 'e5', 'Nc3', 'Bb4', 'e4', 'Bxc3', 'dxc3', 'd6', 'Nf3', 'f5'], ['d4', 'Nc6', 'e3', 'd5', 'Bd3', 'Nf6', 'Nc3', 'Bg4', 'f3', 'Bh5'], ['c4', 'e6', 'Nc3', 'b6', 'Nf3', 'Ba6', 'g3', 'c6', 'd3', 'Nf6'], ['c4', 'e5', 'e4', 'Nf6', 'd3', 'g6', 'Bg5', 'h6', 'Bxf6', 'Qxf6'], ['c4', 'Nf6', 'Nc3', 'e5', 'g3', 'Bc5', 'Bg2', 'Ng4', 'e3', 'Qf6'], ['c4', 'e5', 'e4', 'Nf6', 'd3', 'Nc6', 'f4', 'Bb4+', 'Nc3', 'd6'], ['c4', 'c5', 'Nc3', 'd6', 'g3', 'Nf6', 'Bg2', 'Nc6', 'Nf3', 'Nd4'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e6', 'Bxc4', 'Bb4+', 'Bd2', 'Qxd4'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'Bg4', 'f3', 'Bh5', 'Qa4+', 'Nc6'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'b5', 'Nc3', 'e6', 'Nf3', 'Bb4'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'Bg4', 'Be2', 'e6', 'Bxg4', 'Bb4+'], ['d4', 'd6', 'c4', 'e6', 'Nc3', 'c5', 'dxc5', 'Nc6', 'cxd6', 'Bxd6'], ['c4', 'e5', 'e4', 'Nf6', 'd3', 'g6', 'Bg5', 'Bg7', 'Nc3', 'O-O'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e6', 'Bxc4', 'a6', 'Nf3', 'Bb4+'], ['e4', 'e6', 'd4', 'd5', 'e5', 'Nc6', 'Nf3', 'f6', 'Bb5', 'a6'], ['c4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qc3', 'Bb4', 'Qd2', 'Bxd2+'], ['d4', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Nc3', 'Qa5', 'Bd2', 'Qb4'], ['c4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe4+', 'Qe7', 'Qxe7+', 'Bxe7'], ['d4', 'e6', 'c4', 'Qh4', 'Nf3', 'Qg4', 'h3', 'Qg6', 'Nc3', 'Bb4'], ['e3', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Qe7', 'Qc3', 'Nc6', 'Bb5', 'd5'], ['d4', 'd5', 'c4', 'Nc6', 'Nc3', 'dxc4', 'e4', 'Qxd4', 'Qxd4', 'Nxd4'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Nc6', 'Bg5', 'Ne4', 'Nxe4', 'dxe4'], ['c4', 'c5', 'd4', 'd6', 'd5', 'Nf6', 'e4', 'Nxe4', 'Nc3', 'Nxc3'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'Nc6', 'Bf4', 'Bb4+'], ['c4', 'e5', 'Nc3', 'Nf6', 'd4', 'exd4', 'Nb5', 'c5', 'e3', 'dxe3'], ['e4', 'e6', 'e5', 'd5', 'f4', 'c5', 'a4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e6', 'a3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'g3', 'Be7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'c6', 'c3', 'a5', 'd3', 'b5'], ['Nf3', 'e6', 'b3', 'd5', 'Bb2', 'c5', 'c3', 'Nf6', 'Na3', 'Nc6'], ['e4', 'e6', 'a4', 'd5', 'exd5', 'exd5', 'b3', 'Nf6', 'Bb2', 'Be7'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e6', 'Nf3', 'd5', 'Nc3', 'c5', 'exd5', 'exd5', 'Bb5+', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'Qxf3', 'dxe5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Bb5+', 'Nc6', 'Nf3', 'Bd7'], ['e4', 'e6', 'd4', 'd5', 'Bd3', 'c5', 'Nf3', 'Nc6', 'Be3', 'Qb6'], ['e4', 'e6', 'Nf3', 'Nf6', 'e5', 'Nd5', 'Bc4', 'd6', 'd3', 'f6'], ['e4', 'e6', 'e5', 'd5', 'd4', 'c5', 'Nf3', 'Nc6', 'c3', 'Nge7'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'Qd5', 'd3', 'f6', 'Qh5+', 'g6'], ['g3', 'e6', 'Nf3', 'd5', 'Bg2', 'c5', 'O-O', 'Nc6', 'Nc3', 'Nge7'], ['b4', 'e6', 'c3', 'd5', 'e3', 'c5', 'a3', 'Nc6', 'b5', 'Na5'], ['d4', 'e6', 'Bf4', 'd5', 'e3', 'c5', 'Qd2', 'Qb6', 'b3', 'cxd4'], ['f4', 'e6', 'Nf3', 'd5', 'e3', 'c5', 'd4', 'Nc6', 'Bb5', 'Bd7'], ['c4', 'e6', 'g3', 'd5', 'Bg2', 'dxc4', 'Qa4+', 'Nd7', 'Qxc4', 'Ngf6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Bd3', 'Be7'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'Nc6', 'd3', 'h6', 'O-O', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'e5', 'Ng5', 'd5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'dxc5', 'Bxc5', 'Nf3', 'Qb6'], ['d4', 'e6', 'Nf3', 'd5', 'e3', 'c5', 'b3', 'cxd4', 'exd4', 'Bb4+'], ['Nf3', 'e6', 'e4', 'd5', 'e5', 'c5', 'd4', 'cxd4', 'Nxd4', 'Nc6'], ['e3', 'e6', 'Qf3', 'd5', 'e4', 'Bc5', 'exd5', 'exd5', 'Qg3', 'Nf6'], ['f4', 'e6', 'd4', 'd5', 'e3', 'c5', 'c3', 'cxd4', 'exd4', 'Qb6'], ['c4', 'e6', 'd4', 'Ne7', 'Nf3', 'Nf5', 'e4', 'Nh6', 'Bxh6', 'gxh6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'c4', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'd6', 'c3', 'Bd7'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Bb4', 'Bd2', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'Ne7', 'Bg5', 'c6', 'Nf3', 'Qb6'], ['e4', 'e6', 'e5', 'd5', 'exd6', 'cxd6', 'Nf3', 'd5', 'd4', 'Nc6'], ['e4', 'e6', 'c3', 'd5', 'Nf3', 'dxe4', 'Qa4+', 'Nc6', 'Qxe4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'O-O', 'c6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Bd3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'd3', 'c6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Bb5+', 'c6', 'Qe2+', 'Be7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'b6', 'Nf3', 'Qc5'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Qf3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['d4', 'e6', 'Bf4', 'd5', 'e3', 'Ne7', 'Bd3', 'Ng6', 'Bg3', 'Be7'], ['e4', 'd5', 'e5', 'c5', 'Nf3', 'Bg4', 'c3', 'e6', 'Bb5+', 'Nc6'], ['d4', 'e6', 'Nf3', 'd5', 'c3', 'c5', 'Bg5', 'Ne7', 'Na3', 'cxd4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'a3', 'Qb6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be7', 'Ne5', 'Nf6'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'd6', 'Bc4', 'exf4', 'O-O', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd4', 'exd4', 'O-O', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxe5', 'Qg5', 'Nf3', 'Qxg2'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'd4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'Bxf2+', 'Kxf2', 'Nh6', 'Nxe5', 'O-O'], ['e4', 'e5', 'Bb5', 'c6', 'Bc4', 'd5', 'Bd3', 'dxe4', 'Bxe4', 'Nf6'], ['d4', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'g3', 'Nc6', 'e3', 'e6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'h6', 'Bd3', 'c5'], ['Nf3', 'c5', 'd4', 'd5', 'dxc5', 'Nf6', 'b4', 'Bg4', 'Ne5', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Be2', 'd6', 'O-O', 'Nf6', 'Nc3', 'Ne7'], ['a3', 'd5', 'd4', 'Nc6', 'c4', 'dxc4', 'd5', 'Ne5', 'e4', 'Nf6'], ['e4', 'c5', 'Nc3', 'd6', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Bd7'], ['e4', 'Nc6', 'b3', 'Nf6', 'd3', 'g6', 'Bb2', 'Bg7', 'Nd2', 'O-O'], ['e4', 'e5', 'a3', 'Bc5', 'Nf3', 'd6', 'h3', 'Nf6', 'Nc3', 'O-O'], ['e4', 'e5', 'Qh5', 'd6', 'Bc4', 'g6', 'Qe2', 'Bg7', 'Qf3', 'Qe7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd6', 'Nf3', 'e6', 'Bd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'c3', 'Nf6', 'd4', 'Nxe4', 'dxe5', 'Bg4'], ['d4', 'g6', 'c4', 'Bg7', 'Nf3', 'Nf6', 'Nc3', 'O-O', 'g3', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bc4', 'h6', 'd4', 'exd4'], ['e4', 'e5', 'Qh5', 'd6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'd3', 'Bg4'], ['e4', 'e5', 'Nc3', 'Bb4', 'Nf3', 'Bxc3', 'dxc3', 'Nc6', 'Bc4', 'h6'], ['e4', 'd6', 'Nc3', 'e6', 'b3', 'h6', 'Bb2', 'a6', 'f4', 'b5'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'a6', 'Nc3', 'Nf6', 'b3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'a6', 'Nxc6', 'bxc6'], ['e4', 'c5', 'd3', 'Nc6', 'Nc3', 'd6', 'f4', 'Nf6', 'Nf3', 'Bg4'], ['e3', 'e5', 'd4', 'e4', 'Bc4', 'd5', 'Bb3', 'Nf6', 'Ne2', 'Nc6'], ['d4', 'e6', 'c4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Nf6', 'Bg5', 'h6'], ['e4', 'd5', 'exd5', 'Nf6', 'c4', 'e5', 'Nc3', 'Bb4', 'Qa4+', 'Bd7'], ['d4', 'd5', 'Nc3', 'c6', 'h3', 'g6', 'e4', 'Bg7', 'e5', 'Qa5'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Be7', 'Nc3', 'b6', 'Bc4', 'Bb7'], ['e4', 'e5', 'Nf3', 'Bd6', 'Bc4', 'Qf6', 'b3', 'Nh6', 'Bb2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'g3', 'Nc6', 'Bg2', 'Bc5', 'Nf3', 'd5', 'Nc3', 'dxe4'], ['Nf3', 'd6', 'd4', 'g6', 'e3', 'Bg7', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'h6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'Nc3', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'Qf3', 'Qf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'd4', 'exd4', 'Qxd4', 'Bf6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nf6', 'e3', 'Be6', 'Qa4+', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7', 'dxe5', 'Nxe5'], ['e4', 'c5', 'Bc4', 'Nc6', 'c3', 'e6', 'd4', 'd5', 'exd5', 'exd5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'Nbd7', 'Nf3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'a6', 'd4', 'exd4', 'cxd4', 'Bb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'f5', 'exf5', 'Nf6', 'd3', 'd5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'Nc6', 'Nf3', 'Bd7'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'e6', 'd4', 'Bb4', 'Bd2', 'Bxc3'], ['e4', 'e5', 'Qf3', 'Nc6', 'Nc3', 'd6', 'Bb5', 'Bd7', 'Nge2', 'Nf6'], ['e4', 'e5', 'Nf3', 'c5', 'Bc4', 'Nc6', 'd3', 'Be7', 'Nc3', 'd6'], ['e4', 'a6', 'Nf3', 'Nc6', 'Be2', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e6', 'Nf3', 'f5', 'Bxc4', 'Ke7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e6'], ['c4', 'f5', 'd4', 'Nf6', 'Nc3', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nc3', 'd6'], ['d4', 'f5', 'Nf3', 'Nf6', 'e3', 'g6', 'Bd3', 'Bg7', 'Nc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'exd4', 'e5', 'Ne4', 'Qxd4', 'Nc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nd4'], ['d4', 'Nf6', 'Nc3', 'c5', 'd5', 'd6', 'Bg5', 'h6', 'Bxf6', 'gxf6'], ['b4', 'e5', 'a3', 'd6', 'd4', 'Nc6', 'd5', 'Nce7', 'e4', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'c3', 'Bg4', 'd4', 'Qf6', 'Be2', 'Bxf3'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'a3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd4', 'exd4', 'e5', 'Ng4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'Nc6', 'd4', 'Qg6'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Nxd5', 'c4', 'Nb6', 'Nc3', 'e6'], ['e4', 'e5', 'Nf3'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Qd6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Bb4', 'Bg5', 'Nbd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'Be2', 'exd4', 'Nxd4', 'Bxe2'], ['d4', 'Nf6', 'Nf3', 'e6', 'Bf4', 'b6', 'e3', 'Bb7', 'c3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'O-O', 'Nf6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'f4', 'cxb2', 'Bxb2', 'Nf6'], ['e4', 'Nc6', 'd4', 'e6', 'Bb5', 'Nb8', 'Nf3', 'c6', 'Bc4', 'd5'], ['c4', 'e5', 'Nc3', 'Bb4', 'Qc2', 'Bxc3', 'Qxc3', 'd6', 'g3', 'Nf6'], ['e4', 'c5', 'Nc3', 'a6', 'Nf3', 'd6', 'h3', 'e5', 'Nd5', 'Nf6'], ['e4', 'e5', 'Qh5', 'Qf6', 'Nf3', 'Bd6', 'Nc3', 'g6', 'Nd5', 'gxh5'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'Qe7', 'd4', 'Nd7', 'Nc3', 'Nxe5'], ['d4', 'd5', 'f4', 'Nc6', 'Nf3', 'Bf5', 'e3', 'e6', 'Bd3', 'Nf6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'exd5', 'Bg5', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Qe2', 'a6', 'Bc4', 'Nc6'], ['e4', 'c5', 'Nf3', 'e6', 'a3', 'a6', 'c3', 'd5', 'Be2', 'dxe4'], ['e3', 'e5', 'd4', 'exd4', 'exd4', 'd5', 'Nf3', 'Nf6', 'Bd3', 'Bd6'], ['d4', 'c6', 'e4', 'd6', 'c4', 'Nf6', 'Nc3', 'Qc7', 'Nf3', 'Bg4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Be3', 'Bg7'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'Qe7', 'Bf4', 'g6', 'Nc3', 'Bg7'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'h3', 'Nxe5', 'Nc3', 'Nxc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'd5', 'exd5', 'Nb4'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'b3', 'bxc4', 'bxc4', 'Ba6'], ['e4', 'e6', 'd4', 'a5', 'a4', 'c6', 'Nc3', 'h6', 'Nf3', 'g5'], ['d3', 'd5', 'a3', 'e5', 'b4', 'f5', 'Bb2', 'Bd6', 'g3', 'Ne7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'dxc5', 'Bxc3+'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Nbd7', 'e3', 'Be7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Bd2', 'Qc7'], ['e4', 'e5', 'Bc4', 'Nf6', 'Qe2', 'c6', 'Nf3', 'd6', 'Ng5', 'Be6'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'e4', 'Qe2', 'Nf6', 'd3', 'Qxd5'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'Nf6', 'Bg5', 'e6', 'Nc3', 'Be7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb3', 'Nf6', 'd3', 'd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nc3', 'd6', 'Qf3', 'O-O'], ['e4', 'c5', 'Bc4', 'e6', 'Nc3', 'Nc6', 'd3', 'a6', 'a4', 'Na5'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb3', 'Nf6', 'd3', 'Bg4'], ['e4', 'e6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Nc3', 'Nxc3'], ['e4', 'e5', 'Bc4', 'h6', 'Qh5', 'Qf6', 'Nf3', 'd6', 'd3', 'Be6'], ['e4', 'e6', 'Bc4', 'b6', 'd3', 'Bb7', 'Nf3', 'Bc5', 'O-O', 'Nf6'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb3', 'e5', 'd3', 'Nf6'], ['e4', 'e5', 'Bc4', 'd6', 'Nc3', 'g5', 'd3', 'Nc6', 'Qh5', 'Qe7'], ['e4', 'e5', 'Bc4', 'd6', 'Nc3', 'Nf6', 'Nd5', 'Nxe4', 'd3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'd3', 'd6', 'Bg5', 'h6'], ['e4', 'c5', 'Bc4', 'd6', 'd3', 'Nf6', 'Nc3', 'Nc6', 'Nh3', 'e6'], ['c4', 'e5', 'e3', 'Bc5', 'Nc3', 'd6', 'Nf3', 'Nc6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Qf6', 'Nxc6', 'Qxc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'h6', 'Nf3', 'g5'], ['e4', 'c5', 'Bc4', 'b6', 'Qh5', 'g6', 'Qd5', 'e6', 'Qxa8', 'Qc7'], ['e4', 'e5', 'Bc4', 'd6', 'Nc3', 'h6', 'd3', 'Nc6', 'Qf3', 'Nf6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'Bf5', 'Qd2', 'Nc6', 'Nf3', 'e6'], ['e4', 'e5', 'Bc4', 'd6', 'Nc3', 'Be7', 'Nd5', 'Be6', 'Qh5', 'Nf6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qh5', 'Qe7', 'Nf3', 'd6', 'Nc3', 'c6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'c6', 'd4', 'Qg6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Qf3', 'c6'], ['e4', 'e6', 'Bc4', 'c5', 'Nc3', 'Nc6', 'd3', 'Nf6', 'Nf3', 'd5'], ['e4', 'e5', 'Bc4', 'Qh4', 'Qf3', 'Nf6', 'd3', 'd5', 'exd5', 'Bg4'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'a6', 'Nc3', 'b5', 'Bb3', 'c5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'Nc6', 'Nf3', 'a6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nc3', 'd6', 'Nh3', 'Ng4'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb3', 'Bf5', 'Qh5', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'a6', 'Nc3', 'b5', 'Bb3', 'Bb4'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Qh5', 'Bb4+'], ['e4', 'h5', 'Bc4', 'e6', 'd3', 'h4', 'Nc3', 'Qf6', 'h3', 'Nc6'], ['e4', 'e5', 'b3', 'Bc5', 'Ba3', 'Bxa3', 'Nxa3', 'Nf6', 'Nf3', 'd6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Bg4'], ['e4', 'c5', 'Bc4', 'e6', 'd3', 'd5', 'exd5', 'exd5', 'Bb5+', 'Bd7'], ['h4', 'e5', 'c4', 'Bc5', 'e3', 'Nf6', 'Ne2', 'd5', 'd4', 'exd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'd3', 'O-O', 'Bd2', 'Nc6'], ['e4', 'e5', 'Bc4', 'd6', 'd3', 'Nf6', 'Nc3', 'h6', 'Nf3', 'Bg4'], ['e4', 'e5', 'Bc4', 'Nc6', 'd3', 'Nf6', 'Nc3', 'h6', 'Nd5', 'Nxd5'], ['e4', 'e5', 'Bc4', 'Bc5', 'Qh5', 'Qe7', 'Nf3', 'Nf6', 'Qxe5', 'Qxe5'], ['e4', 'e5', 'Bc4', 'Nc6', 'd3', 'Nf6', 'Nc3', 'Na5', 'Bxf7+', 'Kxf7'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb3', 'Nf6', 'Nf3', 'Bc5'], ['e4', 'e5', 'Bc4', 'Qf6', 'd3', 'Bb4+', 'Bd2', 'Bc5', 'Nf3', 'Ne7'], ['e4', 'e6', 'Bc4', 'Nc6', 'Nc3', 'Bb4', 'a3', 'Bxc3', 'bxc3', 'Ne5'], ['e4', 'd6', 'Bc4', 'f5', 'd3', 'Nf6', 'Bg5', 'fxe4', 'dxe4', 'Nxe4'], ['e4', 'e5', 'Bc4', 'c6', 'Qh5', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Nc6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Qf3', 'c6'], ['e4', 'e5', 'Bc4', 'Nc6', 'd3', 'Bc5', 'Nc3', 'Nd4', 'Nf3', 'd6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'd6', 'O-O', 'Nf6', 'Nc3', 'O-O'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Bb5', 'exf4'], ['e4', 'e5', 'f4', 'f6', 'Nf3', 'exf4', 'd4', 'g5', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Bc5', 'Nc3', 'd6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Be2', 'cxd4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'O-O', 'Bxf3', 'Qxf3', 'f6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'Ne7', 'd4', 'Nf5', 'c3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'O-O', 'd6', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Bg5', 'c5'], ['d4', 'Nf6', 'c4', 'd5', 'e3', 'e6', 'Nf3', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Qe2', 'c6', 'Qxe6', 'Bxe6'], ['d4', 'Nf6', 'g3', 'Nc6', 'Nf3', 'g6', 'Bf4', 'Bg7', 'Bg2', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Na5', 'Nxf7', 'Nxc4'], ['d4', 'Nf6', 'Bf4', 'd5', 'e3', 'a6', 'h3', 'Nc6', 'c3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nc6', 'Be3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'h3', 'h6'], ['e4', 'e6', 'Nf3', 'd5', 'Bb5+', 'c6', 'Ba4', 'b5', 'Bb3', 'a5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bc4', 'Bxc3', 'dxc3', 'Nxe4'], ['g3', 'e6', 'Bg2', 'Nc6', 'Nf3', 'd5', 'O-O', 'b6', 'd4', 'Nf6'], ['e4', 'g6', 'Nf3', 'Bg7', 'd4', 'Nf6', 'Nc3', 'O-O', 'Bf4', 'c6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e6', 'Nf3', 'd5', 'd4', 'dxe4', 'Ng5', 'Nf6', 'Qe2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'h3', 'Be6', 'Bxe6', 'fxe6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'Bg5', 'Bg4'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Nf6', 'Nc3', 'c5', 'Bc4', 'h6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'Qg5', 'Nxe4', 'Qxg7', 'Bf8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Bc5', 'd3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'e5', 'Ne4'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'Nc6', 'd4', 'Bb4+', 'c3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Nxe4', 'Nxf7', 'Qh4'], ['e4', 'c5', 'Nf3', 'e6', 'Bc4', 'a6', 'O-O', 'Nc6', 'Nc3', 'Qc7'], ['c4', 'Nf6', 'g3', 'Nc6', 'Bg2', 'e5', 'Nc3', 'Bb4', 'e3', 'Bxc3'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'O-O', 'Nf6', 'Re1', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qf3', 'f6', 'Nc3', 'Bb4', 'Qh5+', 'g6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'Qf6', 'O-O', 'Nh6', 'c3', 'Ng4'], ['e4', 'e5', 'Qf3', 'Nf6', 'Be2', 'Bc5', 'Bb5', 'O-O', 'Bc4', 'c6'], ['d4', 'e6', 'Nf3', 'b6', 'Bg5', 'f6', 'Bh4', 'g5', 'Bg3', 'Bb7'], ['e4', 'e5', 'Qf3', 'Nc6', 'Bc4', 'Nh6', 'd3', 'Nd4', 'Qg3', 'Nxc2+'], ['e4', 'e5', 'Bc4', 'Nf6', 'Qf3', 'Bc5', 'Qd3', 'Ng4', 'Qd5', 'Qe7'], ['d3', 'd5', 'Be3', 'Bf5', 'Nf3', 'e5', 'Nxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'h3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Nxe4', 'Bxf7+', 'Ke7'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'dxc4', 'e4', 'Nf6', 'e5', 'Ne4'], ['d4', 'Nf6', 'Nf3', 'd5', 'Nc3', 'Bg4', 'Bg5', 'e6', 'h3', 'Bh5'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nc6'], ['e4', 'e5', 'd3', 'Bb4+', 'Bd2', 'Bxd2+', 'Nxd2', 'Nc6', 'Nc4', 'f6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'e6', 'e3', 'f5', 'Ne5', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'Bb5', 'Bd7', 'Bxc6', 'Bxc6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Bf5', 'Bxc4', 'e6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'f5', 'Nh4', 'Qxh4', 'Bxg8', 'Rxg8'], ['c4', 'e5', 'Nc3', 'f5', 'e4', 'd6', 'Nge2', 'f4', 'd4', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nf6', 'Nf3', 'b6', 'b4', 'Bxb4+'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'Qxf3', 'dxe5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nc6', 'Bxc4', 'Nf6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f5', 'exf5', 'Bxf5', 'dxe5', 'Nc6'], ['d4', 'd5', 'g3', 'c5', 'c3', 'e6', 'Bg2', 'Nf6', 'Nf3', 'Bd6'], ['d4', 'd5', 'c4', 'Be6', 'c5', 'Nc6', 'e3', 'g6', 'Bb5', 'Qd7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'f5', 'd4', 'f4', 'dxe5', 'g5'], ['e4', 'e5', 'd4', 'd6', 'dxe5', 'Nc6', 'exd6', 'Bxd6', 'h4', 'h5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'f5', 'exf5', 'Bxf5', 'O-O', 'h5'], ['d4', 'Nf6', 'c4', 'e5', 'e3', 'Bb4+', 'Bd2', 'Bxd2+', 'Nxd2', 'exd4'], ['e3', 'e5', 'd4', 'e4', 'a3', 'd5', 'c4', 'f5', 'cxd5', 'Qxd5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'Bd7', 'axb5', 'Bxb5'], ['e4', 'e5', 'Nf3', 'f5', 'exf5', 'd6', 'd4', 'Bxf5', 'dxe5', 'Be7'], ['e4', 'e5', 'Nf3', 'f5', 'exf5', 'd6', 'd4', 'e4', 'Ng5', 'd5'], ['d4', 'e6', 'c4', 'c5', 'e3', 'b6', 'd5', 'd6', 'e4', 'e5'], ['d4', 'Nf6', 'c4', 'e6', 'e3', 'd5', 'c5', 'b6', 'b4', 'bxc5'], ['d4', 'd5', 'c4', 'c5', 'dxc5', 'e6', 'cxd5', 'Qxd5', 'Qxd5', 'exd5'], ['e4', 'e5', 'd4', 'd6', 'dxe5', 'Nc6', 'Bc4', 'Nxe5', 'Bb5+', 'c6'], ['d4', 'g6', 'e4', 'd5', 'exd5', 'Qxd5', 'c4', 'Qe4+', 'Be3', 'Bg7'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'O-O', 'a3', 'Ba5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'Qf3', 'c6', 'Nc3', 'Bd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Be7', 'dxe5', 'dxe5', 'Qxd8+', 'Bxd8'], ['d4', 'd5', 'c4', 'e6', 'e3', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Bc5'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nf3', 'Bf5', 'Bd3', 'Bg6'], ['e4', 'e5', 'f4', 'Bd6', 'Nf3', 'exf4', 'Bc4', 'Be5', 'd4', 'Bf6'], ['d4', 'e6', 'c4', 'Bb4+', 'Bd2', 'Be7', 'e3', 'a6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'Bg4', 'Be2', 'Bxf3'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Be7', 'Qxh8'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'c6', 'c5', 'b6', 'b4', 'a5'], ['g3', 'd5', 'b3', 'c5', 'Bb2', 'e6', 'Bg2', 'b5', 'd3', 'b4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd6', 'h3', 'Nc6', 'Bb5', 'Bd7'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'Bf5', 'Nc3', 'c6', 'c5', 'e6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'c3', 'Nc6', 'O-O', 'Bg4'], ['e4', 'e6', 'd4', 'Bb4+', 'c3', 'Ba5', 'a3', 'c6', 'h3', 'b5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd5', 'exd5', 'Qxd5', 'Qe2', 'Be7'], ['e4', 'e5', 'Nf3', 'f5', 'Nc3', 'd5', 'exd5', 'e4', 'Ne5', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd5', 'exd5', 'Qxd5', 'Qe2', 'Bd6'], ['e4', 'e5', 'Bc4', 'f5', 'Bxg8', 'Rxg8', 'Qh5+', 'g6', 'Qxh7'], ['e4', 'g6', 'Bc4', 'e5', 'Qf3', 'Nf6', 'Nh3', 'h6', 'Qb3', 'Rh7'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nc3', 'Bf5', 'Nf3', 'e6'], ['d4', 'd5', 'Bf4', 'c5', 'e3', 'e6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'a3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'd4', 'Nd7', 'dxe5', 'Nxe5'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'c3', 'Ne7', 'd4', 'Nf5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'c4', 'Nf6', 'cxd5', 'Qxd5'], ['e4', 'c5', 'Nf3', 'e6', 'Bc4', 'Ne7', 'c3', 'g6', 'd4', 'cxd4'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c5', 'Be3', 'Nc6', 'Nge2', 'Qb6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Bc5', 'd4', 'Bb6', 'Bc4', 'd6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'c4', 'Bf5'], ['e4', 'f5', 'e5', 'd6', 'exd6', 'cxd6', 'Nc3', 'Nf6', 'd4', 'e6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Nge7'], ['e4', 'e6', 'b3', 'd5', 'exd5', 'exd5', 'Bb2', 'Nf6', 'Qe2+', 'Qe7'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'e5', 'Ng4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Nc3', 'Nf6', 'a3', 'Bg4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Bd3', 'Bg4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bd6', 'Nc3', 'c6'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'Bg4', 'd4', 'e6', 'h3', 'Bxf3'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'g5'], ['e4', 'e6', 'Bc4', 'Qh4', 'Na3', 'Qxe4+', 'Ne2', 'Qxg2', 'Rg1', 'Qxh2'], ['e4', 'e6', 'e5', 'd5', 'exd6', 'Bxd6', 'Nh3', 'Qf6', 'f3', 'Nh6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'Nc3', 'Bc5', 'd4', 'Bb6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nxe4', 'Qe2', 'd5', 'Bb3', 'Bg4'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'Bg5', 'Bg7', 'Nf3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'Ng5', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'e3', 'Nc6', 'Nf3', 'Bb4'], ['Nf3', 'd5', 'g3', 'c5', 'Bg2', 'Nf6', 'O-O', 'Nc6', 'd3', 'e6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'h3', 'Bg7', 'Bf4', 'O-O'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Qf3', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'Nxe4', 'Nxe4', 'd5'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nf6', 'Nc3', 'c5', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bd6'], ['d4', 'Nf6', 'c4', 'd5', 'Nc3', 'e6', 'e3', 'Bb4', 'Nf3', 'Ne4'], ['Nf3', 'g6', 'c4', 'Bg7', 'd4', 'b6', 'd5', 'Bb7', 'Nc3', 'Nf6'], ['e4', 'c5', 'e5', 'Nc6', 'f4', 'f5', 'Bc4', 'e6', 'Nf3', 'd5'], ['c4', 'Nf6', 'Nc3', 'e5', 'e4', 'g6', 'c5', 'Bxc5', 'Nf3', 'Nc6'], ['e4', 'Nc6', 'Bb5', 'e5', 'Nc3', 'd6', 'Qf3', 'Nf6', 'Nd5', 'Nxd5'], ['d4', 'd5', 'Bf4', 'f6', 'e3', 'e5', 'dxe5', 'fxe5', 'Bxe5', 'Nc6'], ['Nf3', 'e6', 'g3', 'Nc6', 'Bg2', 'Nf6', 'O-O', 'Be7', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'f6', 'Be2', 'd5', 'd3', 'd4', 'Nfd2', 'Nc6'], ['e4', 'c5', 'Nf3', 'd5', 'Nc3', 'd4', 'Nd5', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'e5', 'd5', 'Nd4', 'Nxd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'd6', 'c4', 'Nf6', 'Nc3', 'e6', 'd3', 'Nc6'], ['c4', 'c5', 'Nc3', 'Nc6', 'e4', 'e5', 'd3', 'd6', 'Nf3', 'Nf6'], ['Nf3', 'c6', 'g3', 'd5', 'Bg2', 'Bg4', 'd4', 'e6', 'O-O', 'Nf6'], ['Nf3', 'd5', 'g3', 'e6', 'd3', 'Nc6', 'Bg2', 'Bc5', 'd4', 'Bb6'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'f6', 'Nf3', 'g5', 'Bg3', 'Bg4'], ['Nf3', 'f6', 'g3', 'e5', 'e4', 'Nh6', 'Bg2', 'Bc5', 'O-O', 'd6'], ['e4', 'c5', 'Bc4', 'Nc6', 'd3', 'e5', 'Nf3', 'd6', 'Ng5', 'Nh6'], ['e4', 'Nc6', 'Bc4', 'e5', 'd3', 'd6', 'Nc3', 'f5', 'Qe2', 'f4'], ['c4', 'Nc6', 'd4', 'e6', 'c5', 'g6', 'Nf3', 'Bg7', 'g3', 'Nge7'], ['f4', 'c5', 'e4', 'Nc6', 'Nf3', 'f6', 'c3', 'e5', 'Bc4', 'Nge7'], ['c4', 'e5', 'Nc3', 'Nf6', 'e4', 'c6', 'c5', 'Bxc5', 'Nf3', 'd5'], ['c4', 'e5'], ['d4', 'c5', 'd5', 'e5', 'c4', 'd6', 'e4', 'Nc6', 'Nf3', 'Bg4'], ['b3', 'c5', 'Bb2', 'Nc6', 'g3', 'e5', 'Bg2', 'Qf6', 'e3', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'a3', 'Bxc3', 'dxc3', 'h6'], ['e4', 'Nc6', 'd4', 'e6', 'Nf3', 'b6', 'h3', 'Bb7', 'Bd3', 'Nf6'], ['d4', 'd6', 'e4', 'e5', 'd5', 'Qh4', 'Nf3', 'Qxe4+', 'Be2', 'Qg6'], ['e4', 'e5', 'f3', 'Bc5', 'd4', 'exd4', 'c3', 'dxc3', 'Nxc3', 'c6'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb3', 'e5', 'd3', 'd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'dxc6'], ['e4', 'b6', 'f4', 'Bb7', 'b4', 'Bxe4', 'Ba6', 'Nxa6', 'Na3', 'Bxg2'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'O-O', 'Bb4', 'a3', 'Ba5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'Be3', 'd5'], ['e4', 'c5', 'Nf3', 'g6', 'Nc3', 'Bg7', 'Bc4', 'Nc6', 'Ng5', 'e6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'Re1', 'f5'], ['e4', 'e5', 'Nf3', 'Nc6', 'g3', 'Nf6', 'd3', 'd5', 'Bg5', 'Bc5'], ['a3', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bc4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nd4', 'Nxe5', 'Qg5', 'Nxf7', 'Qxg2'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'd5', 'Bb5', 'Bd7', 'd3', 'Qe7'], ['e4', 'e5', 'Bc4', 'Nf6', 'Bb5', 'Bc5', 'Qf3', 'Nc6', 'c3', 'd5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'd3', 'O-O'], ['Nf3', 'd5', 'd4', 'Nf6', 'Bf4', 'Nc6', 'e3', 'Bg4', 'Bd3', 'Ne4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'd3', 'Qf6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'a6', 'Bc4', 'h6', 'O-O', 'Nf6'], ['e4', 'Nf6', 'Nc3', 'd5', 'e5', 'Ng4', 'Nf3', 'Nxf2', 'Kxf2', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'Nf6', 'Nb5', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Nxe4', 'Nxe4', 'd5'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'Bb4', 'Nd5', 'Qd6', 'Ng5', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'a6', 'Bc4', 'Nd4', 'Nxe5', 'Qg5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'e5', 'Ne4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'dxc6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'a6', 'Bxc6', 'bxc6'], ['b3', 'e5', 'Bb2', 'Nc6', 'g3', 'd5', 'Bg2', 'Nf6', 'e3', 'Bc5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Ne7', 'Bc4', 'Bg4', 'O-O', 'Nbc6'], ['e4', 'c5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Qf6', 'Bc4', 'Bg4', 'O-O', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'e3', 'Bg4'], ['e4', 'e6', 'd4', 'Qh4', 'Nf3', 'Qxe4+', 'Be2', 'Qg6', 'O-O', 'b6'], ['e3', 'e5', 'c3', 'd5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'c5', 'Nf3', 'a6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'g6', 'Nf3', 'Bg7', 'd4', 'Nf6', 'e5', 'Nd5', 'Bc4', 'Nb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'Bxd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Qe2', 'Qxe2+', 'Bxe2', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'd6', 'Nxc6', 'bxc6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'c6', 'axb5', 'cxb5'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'e5', 'Nd5', 'd4', 'd6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'c6', 'axb5', 'cxb5'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7', 'Bc4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nxd4', 'Nxd4', 'exd4', 'Qxd4', 'c5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'b5', 'a4', 'bxa4', 'Qxa4+', 'Qd7'], ['d4', 'Nc6', 'Nf3', 'f6', 'e3', 'e5', 'dxe5', 'Nxe5', 'Nxe5', 'fxe5'], ['e4', 'e5', 'd4', 'exd4', 'Nf3', 'c5', 'Bc4', 'a6', 'Ng5', 'Nh6'], ['e4', 'e5', 'Nf3', 'f6', 'Nxe5', 'fxe5', 'Qh5+', 'Ke7', 'Qxe5+', 'Kf7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf5', 'Bxf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Bc4', 'b5'], ['d4', 'd5', 'Nc3', 'Nc6', 'g4', 'e5', 'dxe5', 'Nxe5', 'Bg2', 'Nxg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Qh4', 'Nxc6', 'Qxe4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'Bd3', 'Nc5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nxe4', 'Bxf7+', 'Kxf7', 'Nxe5+', 'Kg8'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Qf6', 'Nxc6', 'Qxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'e5', 'g4', 'd6', 'd3', 'g6', 'h4', 'f5', 'gxf5', 'gxf5'], ['e4', 'e5', 'Qf3', 'Nc6', 'c3', 'Qf6', 'Bc4', 'Na5', 'Bb3', 'Nxb3'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'h6', 'Qf3', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Ne5', 'Nf3', 'Nc6'], ['d4', 'd5', 'e3', 'Nc6', 'Bd3', 'e5', 'c3', 'exd4', 'exd4', 'Qe7+'], ['e4', 'Nc6', 'Nf3', 'e5', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'e6', 'Nf3', 'b6', 'd4', 'Bb7', 'Nc3', 'Bb4', 'Bd3', 'Nf6'], ['e4', 'e5', 'Qf3', 'Qf6', 'a3', 'a6', 'h3', 'h6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Ne5', 'Nf3', 'Nc6'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e5', 'd5', 'c6', 'Bxc4', 'cxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'd6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'e6', 'Nf3', 'h6', 'Bc4', 'a6', 'O-O', 'Nc6', 'c3', 'Na5'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'b5', 'Nxb5', 'a6', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bd6', 'dxe5', 'Bxe5', 'Nxe5', 'Nxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Ne5', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'f5', 'Nc3', 'Nc6', 'exf5', 'e4', 'Nxe4', 'd5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'c6', 'd3', 'd5', 'exd5', 'cxd5'], ['e4', 'e6', 'Nf3', 'd5', 'd3', 'Nc6', 'Bg5', 'Be7', 'Bxe7', 'Qxe7'], ['d4', 'g6', 'c4', 'd6', 'Nc3', 'e5', 'e4', 'exd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['g3', 'e5', 'e3', 'd5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qa4', 'Bd7'], ['e4', 'e6', 'f4', 'd5', 'Bb5+', 'c6', 'Bd3', 'dxe4', 'Bxe4', 'Nf6'], ['g3', 'e5', 'f4', 'e4', 'e3', 'Bc5', 'Nc3', 'd5', 'd4', 'Bb4'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'a6', 'd4', 'Bb4+', 'c3', 'Ba5'], ['g3', 'd5', 'Nc3', 'e5', 'e4', 'd4', 'Nd5', 'c6', 'Nb4', 'Bxb4'], ['g3', 'c5', 'Bg2', 'Nc6', 'Nf3', 'b6', 'Ne5', 'Bb7', 'O-O', 'Qc7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be6', 'Nd4', 'c5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'd4', 'c5'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'd4', 'g6', 'g3', 'Bg7'], ['e4', 'e6', 'Nc3', 'd5', 'Nf3', 'c5', 'd4', 'Nf6', 'e5', 'Ne4'], ['e4', 'c6', 'd4', 'Nf6', 'Bd3', 'd5', 'exd5', 'cxd5', 'c4', 'dxc4'], ['e4', 'd5', 'Nc3', 'e6', 'd3', 'Bb4', 'Bd2', 'Bxc3', 'Bxc3', 'Nc6'], ['e4', 'g6', 'Nf3', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Nxd5', 'Qxd5'], ['b3', 'e5', 'Nf3', 'Nc6', 'd4', 'Qf6', 'e3', 'Bb4+', 'c3', 'Ba5'], ['e4', 'g6', 'd4', 'Nf6', 'Nc3', 'd5', 'e5', 'Ne4', 'f3', 'Nxc3'], ['g3', 'e5', 'd4', 'e4', 'Nc3', 'Nf6', 'Bg5', 'd5', 'Bxf6', 'Qxf6'], ['e4', 'e5', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'Bd3', 'Nc5', 'Nf3', 'd6'], ['g3', 'd5', 'Bg2', 'e6', 'c3', 'Nf6', 'd3', 'Be7', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd3', 'Be6', 'Ng5', 'Bxc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'h6', 'O-O', 'd6'], ['d4', 'c6', 'c4', 'd5', 'Nc3', 'e6', 'e3', 'Nf6', 'Nf3', 'Bb4'], ['e4', 'c6', 'd4', 'b5', 'Nf3', 'f6', 'Bd3', 'Qc7', 'O-O', 'e5'], ['f3', 'e5', 'e4', 'Nf6', 'd3', 'Nc6', 'c4', 'Bc5', 'b3', 'Bxg1'], ['e4', 'e6', 'Nc3', 'c6', 'd3', 'b5', 'Nf3', 'Bb4', 'Bd2', 'Bxc3'], ['e4', 'e5', 'f3', 'Nc6', 'c3', 'Nf6', 'b4', 'd5', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nxe5', 'Qe7', 'Nd3', 'Qxe4+', 'Qe2', 'Qxe2+'], ['e4', 'e5', 'c4', 'Nf6', 'a4', 'Nxe4', 'd3', 'Bb4+', 'Nc3', 'Nxc3'], ['e4', 'd6', 'Nc3', 'e5', 'Bc4', 'Nh6', 'd4', 'Nc6', 'd5', 'Nd4'], ['g3', 'e5', 'Bg2', 'c6', 'd4', 'Bd6', 'dxe5', 'Bxe5', 'Nf3', 'Qe7'], ['e4', 'e5', 'c3', 'Nf6', 'd3', 'd6', 'Nd2', 'Nc6', 'b3', 'd5'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nxe5', 'Qf6', 'Nf3', 'd6', 'd4', 'Bxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'Nc3', 'd6', 'Nd5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'Bc4', 'f6', 'd5', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'dxc6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Bc5', 'O-O', 'Nf6'], ['e4', 'e5', 'd4', 'Nc6', 'Nf3', 'f6', 'd5', 'Nd4', 'Nxd4', 'exd4'], ['d4', 'd5', 'e3', 'Nc6', 'Bb5', 'Bd7', 'Nf3', 'Nf6', 'Ng5', 'h6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Be7', 'Nc3', 'Nf6', 'Bd3', 'O-O'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Qe7', 'Qxe7+', 'Bxe7', 'd3', 'd5'], ['e3', 'e5', 'Nf3', 'Nc6', 'Ng1', 'Nf6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'd3', 'g6', 'Bg5', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'Bc5', 'Bc4', 'Nh6', 'O-O', 'O-O'], ['Nf3', 'd5', 'c4', 'e6', 'e3', 'a6', 'b3', 'dxc4', 'bxc4', 'Nc6'], ['Nf3', 'd5', 'c4', 'd4', 'e3', 'dxe3', 'fxe3', 'Bg4', 'Qb3', 'Bxf3'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'c5', 'Bg5', 'h6', 'Bxf6', 'Qxf6'], ['Nf3', 'Nf6', 'c4', 'g6', 'e3', 'Bg7', 'Nc3', 'O-O', 'b4', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'b4', 'b6', 'bxc5', 'bxc5', 'Nc3', 'Nc6'], ['d4', 'd5', 'Bf4', 'c5', 'e3', 'Nc6', 'dxc5', 'e6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'Nf6', 'O-O', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'O-O', 'O-O'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'Nc3', 'd6', 'd4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bd6'], ['e4', 'e5', 'f4', 'd6', 'Nf3', 'Nc6', 'Bc4', 'Bg4', 'O-O', 'Nf6'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'f4', 'dxe5', 'dxe5', 'e6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Qb6', 'Nb3', 'Nf6'], ['e4', 'e5', 'f4', 'exf4', 'd4', 'Nf6', 'Nc3', 'g6', 'Bxf4', 'Nh5'], ['e4', 'd5', 'e5', 'f6', 'd4', 'fxe5', 'dxe5', 'Be6', 'Nf3', 'Nc6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'd6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'Nf6', 'Bc4', 'Be7', 'e5', 'Ng8'], ['e4', 'c5', 'd4', 'e6', 'c3', 'Nc6', 'e5', 'd5', 'Bb5', 'a6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Bb4+'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'c6', 'Bg5', 'Be7', 'Qf3', 'h6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'd3', 'Bxd3', 'Nc6', 'Bc4', 'Nf6'], ['e4', 'e6', 'e5', 'b6', 'Nf3', 'Bb7', 'Be2', 'h6', 'd4', 'Ne7'], ['b4', 'e6', 'b5', 'd5', 'Bb2', 'Nf6', 'Nf3', 'c6', 'a4', 'cxb5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nc6', 'd3', 'h6', 'O-O', 'Bc5'], ['d4', 'd5', 'Nf3', 'c5', 'e3', 'a6', 'c3', 'Bf5', 'Qb3', 'b5'], ['d4', 'd5', 'e3', 'c5', 'Ne2', 'b6', 'Nbc3', 'Bb7', 'Nf4', 'Nf6'], ['e4', 'e6', 'd4', 'Nc6', 'e5', 'd5', 'c4', 'Nge7', 'Nf3', 'h6'], ['e4', 'e5', 'd4', 'exd4', 'Bc4', 'Nc6', 'c3', 'dxc3', 'Nf3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'a6', 'd4', 'd6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Bb4+'], ['e4', 'e5', 'd4', 'Nc6', 'Nf3', 'd6', 'Bc4', 'Bg4', 'Nbd2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'f5', 'Bg5', 'Nf6', 'Nbd2', 'fxe4'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'd6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'b6', 'f4', 'Bb7'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Bb4+'], ['e4', 'e6', 'd4', 'c6', 'c4', 'd5', 'cxd5', 'cxd5', 'e5', 'Ne7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bd3', 'd6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'c2', 'Qxc2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'Bc4', 'Bxc3', 'dxc3', 'd6'], ['d4', 'd5', 'c4', 'e6', 'a3', 'dxc4', 'Nc3', 'g6', 'e4', 'Bg7'], ['e4', 'b6', 'd4', 'Bb7', 'd5', 'e6', 'Nc3', 'Bb4', 'Bd2', 'Bxc3'], ['d4', 'e6', 'c4', 'b6', 'Nf3', 'Bb7', 'e3', 'Nf6', 'Bd3', 'c5'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'd5', 'exd5', 'Qxd5', 'Be2', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'g3', 'e6', 'Nf3', 'c6', 'Bg2', 'Bb4+'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'c4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bg4', 'd5', 'Bxf3'], ['e4', 'e6', 'Bc4', 'Nf6', 'f3', 'Bc5', 'd4', 'Bb6', 'Be3', 'd5'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'd3', 'Qxd3', 'Bc5', 'Nf3', 'Nc6'], ['e4', 'e6', 'd4', 'a6', 'e5', 'd6', 'Nf3', 'Be7', 'Bc4', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'exd4', 'e5', 'Ng4', 'Qxd4', 'Nxe5'], ['e4', 'e6', 'd4', 'c5', 'c3', 'Qc7', 'e5', 'a6', 'Nf3', 'f6'], ['e4', 'c5', 'Bc4', 'g6', 'c3', 'Bg7', 'Nf3', 'e6', 'e5', 'Nc6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'Nc6', 'Qb3', 'Qf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Qg5', 'Bf3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'h3', 'd6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Be2', 'Nf6', 'Nc3', 'Bc5'], ['d4', 'f5', 'h3', 'Nf6', 'Nf3', 'Nc6', 'Bf4', 'd6', 'c3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Nd4', 'Nxd4', 'exd4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'f3', 'Bb4+'], ['b3', 'd5', 'Bb2', 'Nc6', 'g3', 'Nf6', 'Bg2', 'e5', 'd3', 'Bd6'], ['e4', 'e5', 'f3', 'Nc6', 'Nh3', 'd6', 'Nf2', 'Nf6', 'd4', 'exd4'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Be2', 'Nc6', 'O-O', 'e5'], ['e4', 'e5', 'd4', 'f6', 'f4', 'g5', 'Qh5+', 'Ke7', 'Bd3', 'gxf4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'd5', 'exd5', 'c6', 'dxc6', 'g6', 'cxb7', 'Bxb7', 'Bb5+', 'Nc6'], ['e4', 'd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qf3', 'd6', 'Qxf7#'], ['d4', 'd5', 'Nf3', 'c5', 'c3', 'Nf6', 'Bg5', 'Nbd7', 'Nbd2', 'h6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Nc3', 'e5'], ['e4', 'e5', 'a3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'h3', 'O-O'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'Bd6', 'd4', 'dxe4', 'Bc4', 'Bxe5'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'Nbd7', 'Bg5', 'h6'], ['d4', 'd5', 'e3', 'c5', 'Bb5+', 'Nc6', 'Bxc6+', 'bxc6', 'Nf3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nc6', 'Bb5', 'Bb4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bb4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Qc7'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'Nge2', 'O-O', 'O-O', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nd4'], ['e3', 'e5', 'b3', 'd5', 'Qh5', 'Nc6', 'Bb5', 'Bd6', 'Bb2', 'Nf6'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'd5', 'cxd5', 'Nxd5', 'Qb3', 'Be6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Nf3', 'Bb4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Nf3', 'Bf5'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nc6', 'c3', 'd5', 'exd5', 'Qxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'a6', 'Ba4', 'b5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nc3', 'O-O', 'h3', 'Nc6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd5', 'exd5', 'Qxd5', 'd4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Qxd5', 'Nc3', 'Qa5', 'Bc4', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'dxc6', 'O-O', 'Qe7'], ['e4', 'Nc6', 'd4', 'e5', 'Nf3', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['g3', 'e5', 'Bg2', 'd5', 'e3', 'Nc6', 'Ne2', 'Nf6', 'O-O', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'f5', 'Bxc6', 'dxc6', 'Nxe5', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'c3', 'Nxe4', 'Bd5', 'Nf6'], ['e4', 'e5', 'f4', 'exf4', 'Bc4', 'Qh4+', 'Kf1', 'Nf6', 'Nf3', 'Qh5'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Nxc3', 'Bb4', 'Nf3', 'Nf6'], ['e4', 'e6', 'd4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Bb4', 'Bd3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'd4', 'exd4', 'Nxd4', 'Be7'], ['e4', 'e5', 'Bc4', 'Nf6', 'f4', 'Nxe4', 'Bxf7+', 'Kxf7', 'Qh5+', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'd5', 'Nf3', 'Bg4', 'Be2', 'e4'], ['e4', 'c5', 'Nf3', 'b6', 'd4', 'cxd4', 'Nxd4', 'Bb7', 'Nc3', 'g6'], ['e4', 'Nf6', 'Nc3', 'd5', 'e5', 'Ne4', 'Nge2', 'Bf5', 'd4', 'e6'], ['d4', 'g6', 'c4', 'Bg7', 'Nc3', 'Nc6', 'e4', 'Nxd4', 'Be3', 'c5'], ['d4', 'Nf6', 'f4', 'd6', 'e3', 'Nc6', 'Nf3', 'Bg4', 'Nbd2', 'g6'], ['Nf3', 'c5', 'e3', 'Nc6', 'd4', 'e6', 'Bd3', 'Nf6', 'O-O', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'g6', 'c4', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'd6', 'Re1', 'Bg4'], ['e4', 'c5', 'Bc4', 'e6', 'd3', 'a6', 'a3', 'Nc6', 'Nf3', 'g6'], ['e4', 'c5', 'd3'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Qb6', 'Nc3', 'e6', 'd3', 'Nf6'], ['e4', 'e6', 'Nc3', 'd5', 'Nf3', 'c5', 'd3', 'd4', 'Ne2', 'Nc6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'g4', 'Bg6', 'h4', 'h6'], ['e4', 'c5', 'f4', 'd5', 'exd5', 'Nf6', 'c4', 'e6', 'dxe6', 'Bxe6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nc3', 'Nd4', 'd3', 'e5', 'Bd2', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nxc6', 'bxc6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'e5', 'Ng4', 'Bc4', 'Bc5'], ['e4', 'e6', 'Nc3', 'd5', 'exd5', 'exd5', 'd4', 'Bb4', 'Bd2', 'Nf6'], ['e3', 'c5', 'c3', 'd6', 'h3', 'Nc6', 'Nf3', 'Nf6', 'Na3', 'e5'], ['e4', 'c5', 'f4', 'Nc6', 'Nc3', 'e6', 'Nf3', 'd5', 'd3', 'd4'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qc3', 'e6', 'a3', 'a6'], ['Nc3', 'e6', 'Nf3', 'Nf6', 'e4', 'd5', 'e5', 'Nfd7', 'd4', 'f6'], ['e4', 'b6', 'f4', 'Bb7', 'd3', 'd6', 'g3', 'e5', 'Bg2', 'h6'], ['e4', 'c6', 'd4', 'd6', 'Bg5', 'Nd7', 'Nf3', 'f6', 'Bh4', 'g5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Bb4', 'Ne2', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Nf3', 'Bd7'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nc3', 'Nf6', 'Nf3', 'd6', 'a3', 'a6'], ['e4', 'e6', 'c4', 'b6', 'd4', 'Bb7', 'Nc3', 'Bb4', 'Ne2', 'c5'], ['d4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'Bf5', 'e3', 'Nc6', 'Bd3', 'Bg6'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Be7', 'g3', 'Nf6', 'Nc3', 'Ng4'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'c6', 'a4', 'Nf6', 'Nc3', 'e6'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'Bg4', 'Bb5', 'Qd7', 'O-O', 'h5'], ['e4', 'e5', 'Nf3', 'Bc5', 'd4', 'exd4', 'Nxd4', 'Ne7', 'Nc3', 'a6'], ['d4', 'g6', 'c4', 'Bg7', 'Nc3', 'e5', 'd5', 'd6', 'e4', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nxe4', 'Nxe5', 'd5', 'Nxf7', 'Qf6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'd4', 'cxd4', 'Nxd4', 'a6'], ['d4', 'g6', 'c4', 'Bg7', 'Nc3', 'e5', 'd5', 'd6', 'e4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nxc6', 'dxc6'], ['e4', 'c5', 'Nf3', 'd5', 'd4', 'dxe4', 'Ng5', 'cxd4', 'Bc4', 'e6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'Nc6', 'cxd4', 'e6', 'Nf3', 'Be7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e6', 'Nc3', 'a6'], ['Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'Nf6', 'O-O', 'O-O', 'd4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Nc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd4', 'exd4', 'O-O', 'Nf6'], ['Nc3', 'e5', 'Nf3', 'Nc6', 'e3', 'Nf6', 'd4', 'e4', 'Ne5', 'Nb4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'd6', 'Nd3', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd4', 'd5', 'dxe5', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bc5', 'c3', 'dxc3'], ['e4', 'c6', 'd4', 'd6', 'Nf3', 'h6', 'Bd3', 'Qa5+', 'Bd2', 'Qb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'd6', 'd3', 'h6'], ['Nf3', 'd5', 'd4', 'Nc6', 'Nc3', 'Nf6', 'Bf4', 'e6', 'Nb5', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'c6', 'Bc4', 'exd4'], ['d4', 'Nc6', 'c3', 'e5', 'e4', 'd5', 'Nd2', 'Nf6', 'b4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxe5', 'd5', 'exd5', 'Bd6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Nxe4'], ['e4', 'c5', 'Bc4', 'Nh6', 'd4', 'd6', 'd5', 'e5', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'Qe7', 'd3', 'Be6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Nf3', 'Nf6', 'Qg5', 'Nxe4', 'Qf5', 'd5'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nd4', 'Nxe5', 'Qg5', 'Bxf7+', 'Ke7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Bc4', 'c5', 'O-O', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'd5', 'Be3', 'dxe4', 'dxe4', 'Qxd1+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bb4+', 'c3', 'dxc3'], ['e4', 'd5', 'exd5', 'Nf6', 'Bc4', 'c6', 'dxc6', 'Nxc6', 'Nf3', 'e5'], ['e4', 'e5', 'd4', 'exd4', 'Nf3', 'd6', 'c3', 'dxc3', 'Nxc3', 'Nc6'], ['d4', 'd5', 'e3', 'Bf5', 'Bd3', 'Be4', 'Bxe4', 'dxe4', 'Nd2', 'f5'], ['e4', 'e5', 'Bc4', 'Bc5', 'Ne2', 'Nc6', 'O-O', 'd6', 'c3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Qf3', 'Be6'], ['c4', 'c5', 'Nf3', 'b6', 'Nc3', 'Bb7', 'd3', 'a6', 'e4', 'e6'], ['e4', 'e5', 'Bc4', 'Nf6', 'c3', 'Bc5', 'd3', 'd5', 'exd5', 'Nxd5'], ['d4', 'd5', 'Bf4', 'Bf5', 'Nf3', 'Bg6', 'h3', 'f6', 'e3', 'e6'], ['e4', 'e5', 'Bc4', 'Bc5', 'c3', 'Qf6', 'Nf3', 'h6', 'd3', 'd6'], ['e4', 'e6', 'd4', 'Be7', 'e5', 'c5', 'c3', 'a6', 'Be3', 'cxd4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Be7', 'Bd3', 'Bf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'Nc3', 'Bb7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'h6', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'Ng4'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Be3', 'Bb4+', 'c3', 'Ba5'], ['b3', 'e5', 'Bb2', 'e4', 'd3', 'Nf6', 'dxe4', 'Nxe4', 'Nd2', 'Nxd2'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['e4', 'e5', 'Bc4', 'Nc6', 'c3', 'Nf6', 'd3', 'Bc5', 'Be3', 'Bxe3'], ['e4', 'c5', 'Bc4', 'Nf6', 'c3', 'e6', 'd3', 'a6', 'a4', 'Be7'], ['e4', 'c5', 'Bc4', 'e5', 'c3', 'Nf6', 'd3', 'Nc6', 'Qb3', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'c5', 'Bc4', 'e6', 'c3', 'd5', 'exd5', 'exd5', 'Bb3', 'c4'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'c3', 'a6', 'a4', 'Na5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nc6', 'Nc3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxe5', 'Qg5', 'Nd3', 'Qxg2'], ['e4', 'e5', 'Bc4', 'Nc6', 'd3', 'Bc5', 'f4', 'exf4', 'Nf3', 'Nf6'], ['d4', 'd5', 'c4', 'c5', 'cxd5', 'Qxd5', 'Nc3', 'Qxd4', 'Nf3', 'Qxd1+'], ['e4', 'e5', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Bg5', 'h6', 'Bxf6', 'Qxf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'd3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'exd4', 'Nxd4', 'Bd7'], ['e4', 'd5', 'e5', 'Bf5', 'd4', 'Nc6', 'Nf3', 'g6', 'Bb5', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'd6', 'Bc4', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'c3', 'Nf6'], ['e4', 'd5', 'e5', 'd4', 'Nf3', 'a6', 'd3', 'Nc6', 'c3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Nxb4', 'c3', 'Nc6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'd5', 'exd5', 'Nxd5', 'Nxe5', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Bg5', 'h6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nc3', 'c6', 'd3', 'Qf6', 'Qf3', 'b5'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qf3', 'Nf6', 'c3', 'Bc5', 'd3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd6', 'Bg5', 'Bg4'], ['e4', 'e5', 'f4', 'exf4', 'd4', 'd5', 'Bxf4', 'dxe4', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'd3', 'h6', 'h3', 'Bxf3'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Bc5', 'c3', 'Nh6', 'Qb3', 'Ng4'], ['d4', 'd5', 'e3', 'c5', 'f4', 'Bf5', 'Nf3', 'Be4', 'Be2', 'f6'], ['e4', 'e5', 'f4', 'exf4', 'd4', 'Bb4+', 'c3', 'Ba5', 'Bxf4', 'a6'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bb5', 'Qd7'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd6', 'Bc4', 'Nc6', 'c3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'Nge7', 'c3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Be7', 'Bg5', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e5', 'f4', 'exf4', 'Bc4', 'Qh4+', 'Kf1', 'Nf6', 'Nf3', 'Qh6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'h3', 'h6'], ['e4', 'e6', 'd4', 'a6', 'Nf3', 'Bb4+', 'c3', 'Ba5', 'Bd3', 'b5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'e5', 'Nc3', 'Qa5', 'Bc4', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Be3', 'Nge7'], ['d4', 'Nc6', 'd5', 'Nb4', 'e4', 'e6', 'a3', 'Na6', 'dxe6', 'dxe6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'Nd4', 'Ba4', 'Nxf3+'], ['d4', 'Nf6', 'Nf3', 'e6', 'g3', 'c5', 'dxc5', 'Bxc5', 'Bg2', 'Nc6'], ['e4', 'f5', 'exf5', 'Nf6', 'd4', 'd5', 'Bd3', 'Nc6', 'Nf3', 'Nb4'], ['e4', 'Nc6', 'd4', 'd5', 'e5', 'Qd7', 'Be2', 'Qe6', 'c4', 'dxc4'], ['e4', 'e6', 'e5', 'd6', 'f4', 'dxe5', 'fxe5', 'Qh4+', 'g3', 'Qe4+'], ['e4', 'Nc6', 'd4', 'd5', 'e5', 'Bf5', 'Bb5', 'Qd7', 'Nf3', 'f6'], ['d4', 'Nf6', 'Nc3', 'd5', 'h3', 'c5', 'b3', 'cxd4', 'Qxd4', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Nf6', 'e5', 'Ne4'], ['d4', 'd5', 'Nf3', 'c5', 'c3', 'e6', 'Bf4', 'Nd7', 'e3', 'Qb6'], ['d4', 'Nf6', 'c4', 'e6', 'Bg5', 'h6', 'Bh4', 'Bb4+', 'Nc3', 'b6'], ['Nf3', 'b6', 'c4', 'Bb7', 'Nc3', 'g6', 'e4', 'd6', 'd4', 'Bg7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'dxc4', 'a4', 'Bf5'], ['e4', 'a6', 'd4', 'b5', 'c4', 'Bb7', 'Nc3', 'b4', 'Nd5', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Bb3', 'O-O'], ['e4', 'd6', 'd4', 'Nf6', 'Bd3', 'e5', 'c3', 'Nc6', 'd5', 'Nb8'], ['e4', 'Nc6', 'Nf3', 'e5', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['f4', 'Nf6', 'Nf3', 'e6', 'e3', 'Be7', 'Be2', 'd5', 'd4', 'a6'], ['e4', 'c6', 'Nf3', 'Nf6', 'd3', 'g6', 'c3', 'd5', 'exd5', 'cxd5'], ['e4', 'b6', 'd4', 'e6', 'c4', 'Nc6', 'Nf3', 'Ba6', 'Bd3', 'Na5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['h4', 'Nc6', 'g4', 'e5', 'e4', 'd5', 'Bg2', 'd4', 'd3', 'h5'], ['c4', 'g6', 'Nf3', 'Bg7', 'd4', 'd6', 'e4', 'Nf6', 'Bd3', 'O-O'], ['c4', 'f5', 'g3', 'g6', 'Nc3', 'Bg7', 'd4', 'c6', 'h4', 'Nh6'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['c4', 'c6', 'Nf3', 'd5', 'e3', 'Nf6', 'b3', 'Bf5', 'cxd5', 'cxd5'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb3', 'g6', 'd4', 'Nc6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'dxc5', 'Bxc5'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'e6'], ['e4', 'c5', 'Nc3', 'Nc6', 'd3', 'Nf6', 'Bf4', 'a6', 'e5', 'Ng8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'g6', 'd4', 'Bg7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Bc5', 'O-O', 'Bb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Bc5', 'Re1', 'Ng4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'd3', 'Nc6', 'O-O', 'a6'], ['e4', 'd6', 'd4', 'g6', 'Nf3', 'Nd7', 'Bc4', 'c5', 'c3', 'Bg7'], ['d4', 'e6', 'Nf3', 'Nf6', 'e3', 'd5', 'Bd3', 'Nbd7', 'O-O', 'c5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f4', 'Bg4'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Bd3', 'Nf6'], ['e4', 'e6', 'f4', 'Nc6', 'Nf3', 'Nge7', 'Nc3', 'd5', 'e5', 'Nf5'], ['e4', 'Nc6', 'Nf3', 'f5', 'e5', 'd5', 'd4', 'Be6', 'Ng5', 'Qd7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Nc6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'd6', 'Bf4', 'Nbd7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'O-O', 'e5', 'Ne8'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nf6', 'Bd3', 'Bg4'], ['d4', 'Nf6', 'Nf3', 'd5', 'c4', 'e6', 'Bf4', 'b6', 'cxd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Be2', 'Nf6', 'd3', 'h6'], ['d4', 'Nf6', 'c4', 'e6', 'e3', 'd5', 'Nc3', 'c5', 'cxd5', 'exd5'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'c6', 'Nf3', 'Bg4', 'h3', 'Bh5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bd6'], ['d4', 'Nf6', 'e3', 'b5', 'Bxb5', 'Bb7', 'Nf3', 'e5', 'dxe5', 'Ke7'], ['f4', 'd5', 'g4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'd3', 'Bg4', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'd6'], ['e3', 'd5', 'd4', 'g6', 'c4', 'Bg7', 'Nc3', 'Nf6', 'h3', 'O-O'], ['e4', 'd6', 'Nf3', 'e5', 'Bc4', 'Nc6', 'O-O', 'f5', 'exf5', 'Bxf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxd4', 'exd4', 'O-O', 'Qg5'], ['d4', 'f5', 'Bf4', 'Nf6', 'e3', 'e6', 'Bg5', 'Be7', 'Bxf6', 'Bxf6'], ['e4', 'c5', 'd4', 'cxd4', 'Nf3', 'Nf6', 'e5', 'Nd5', 'Bc4', 'Nb6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nf6', 'e3', 'b6', 'Nf3', 'e6'], ['c4', 'e6', 'Nc3', 'Nf6', 'd4', 'Bb4', 'Nf3', 'h6', 'a3', 'Bxc3+'], ['e4', 'e6', 'Nf3', 'b6', 'd4', 'Bb7', 'Nc3', 'Bb4', 'Bd3', 'Nf6'], ['d4', 'f5', 'f4', 'Nf6', 'Nf3', 'e6', 'e3', 'a6', 'Be2', 'Be7'], ['d4', 'f5', 'e4', 'fxe4', 'Qh5+', 'g6', 'Qe5', 'Nf6', 'Bg5', 'Nc6'], ['d4', 'f5', 'Bg5', 'Nf6', 'Bxf6', 'gxf6', 'e4', 'fxe4', 'Qh5#'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Bc5', 'O-O', 'd6', 'h3', 'h6'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'e5', 'd5', 'c6', 'e4', 'cxd5'], ['e4', 'e6', 'Nf3', 'b6', 'd4', 'Nf6', 'e5', 'Nd5', 'Bc4', 'Bb7'], ['e4', 'e5', 'Qf3', 'Nf6', 'h3', 'Bb4', 'c3', 'Bc5', 'Ne2', 'b6'], ['e4', 'c6', 'Qf3', 'd5', 'd3', 'Nf6', 'h3', 'dxe4', 'dxe4', 'e6'], ['d4', 'd6', 'c4', 'Nf6', 'Nc3', 'g6', 'e4', 'Bg7', 'Bd3', 'O-O'], ['e4', 'c6', 'Nc3', 'd5', 'd3', 'd4', 'Nce2', 'Bg4', 'h3', 'Bh5'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Bf5', 'Bg5', 'Ne4', 'Nf3', 'Nxc3'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'e3', 'Bg7', 'Nf3', 'O-O'], ['f4', 'c6', 'Nf3', 'd5', 'd4', 'Bg4', 'e3', 'Nd7', 'Bd3', 'e6'], ['e4', 'c6', 'Nf3', 'd5', 'e5', 'Bg4', 'd4', 'Nd7', 'Be3', 'e6'], ['d4', 'Nf6', 'c4', 'e6', 'a3', 'b6', 'Nc3', 'Bb7', 'Nf3', 'Be7'], ['d4', 'c6', 'e4', 'd5', 'exd5', 'cxd5', 'Bf4', 'Nf6', 'Nf3', 'Bg4'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'e6', 'a3', 'Nf6', 'Bg5', 'h6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'e6', 'a3', 'Be7'], ['d4', 'c6', 'e4', 'd5', 'e5', 'Bf5', 'h3', 'e6', 'Nf3', 'c5'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'Nbd7', 'e4', 'c6', 'Nf3', 'e6'], ['d4', 'd5', 'c4', 'e6', 'a3', 'a5', 'Nc3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Bg4', 'Be2', 'e6'], ['d4', 'd5', 'c4', 'e6', 'a3', 'Nf6', 'Nc3', 'c5', 'Bg5', 'cxd4'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'e6', 'a3', 'dxc4'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Bg4', 'Bb5+', 'Nd7'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'd5', 'Bg5', 'O-O'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Bc4', 'Nf6', 'Nge2', 'Bg4'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nf6', 'Nf3', 'Bg4'], ['d4', 'g6', 'c3', 'Bg7', 'e4', 'd6', 'Be3', 'Nf6', 'Bd3', 'O-O'], ['e4', 'e6', 'd3', 'd5', 'Nf3', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'Nc6'], ['e4', 'c5', 'd4', 'cxd4', 'Nf3', 'Nf6', 'e5', 'Ng4', 'h3', 'Nxe5'], ['f4', 'Nf6', 'Nf3', 'g6', 'e3', 'Bg7', 'Nc3', 'd5', 'b3', 'c5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bd3', 'e5'], ['e4', 'c5', 'Nf3', 'a6', 'c3', 'e6', 'd4', 'Qc7', 'Be3', 'Nf6'], ['e4', 'e6', 'd4', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Bc5', 'c4', 'Qb6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'd4', 'cxd4', 'Nxd4', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'f4', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bb4+', 'c3', 'Bd6', 'Bc4', 'h6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'O-O', 'a6', 'a4', 'Nf6'], ['d4', 'Nf6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'Be3', 'O-O', 'Qd3', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'c3', 'a6', 'O-O', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Ne7', 'Nc3', 'c5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Qg5', 'd4', 'Qxg2'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'a6', 'd4', 'cxd4', 'Nxd4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nxd4', 'Nxe5', 'Ne6', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'Nc3', 'Nc6', 'h3', 'Bxf3'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Be3', 'Bg7'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'd4', 'cxd4', 'Qxd4', 'Nc6'], ['d4', 'Nf6', 'Nc3', 'g6', 'Bg5', 'Bg7', 'Nf3', 'h5'], ['e4', 'd6', 'd4', 'f5', 'Bd3', 'fxe4', 'Bxe4', 'Nf6', 'Bd3', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'a6'], ['d4', 'Nf6', 'c4', 'g6', 'e3', 'Bg7', 'Nc3', 'O-O', 'Nf3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'h3', 'a6', 'Nc3', 'Nc6', 'a4', 'g6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'c6', 'd4', 'exd4', 'Nxd4', 'Bc5'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'd5', 'e5', 'e6', 'd4', 'f5'], ['e4', 'c5', 'c4', 'd6', 'Nc3', 'Nc6', 'Qa4', 'e6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'f5', 'exf5', 'exd4', 'Nxd4', 'd6'], ['e4', 'Nc6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'Nb4', 'Na3', 'Qd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Nc3', 'Bd7', 'b3', 'Nf6'], ['e4', 'g6', 'f4', 'Bg7', 'Nf3', 'Nh6', 'Nc3', 'O-O', 'Be2', 'c6'], ['d4', 'e6', 'Nf3', 'c5', 'Bg5', 'Qb6', 'dxc5', 'Bxc5', 'e3', 'Qxb2'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bf4', 'd6', 'h3', 'Bg7', 'e3', 'Nc6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Qe7', 'Nf3', 'Nf6', 'Qg5', 'Nxe4'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'b5', 'a4', 'c6', 'axb5', 'cxb5'], ['c4', 'c6', 'd3', 'Nf6', 'Nf3', 'd5', 'a3', 'dxc4', 'd4', 'Bf5'], ['e4', 'g6', 'f4', 'Bg7', 'c3', 'd5', 'd4', 'dxe4', 'Qe2', 'Nf6'], ['e4', 'e5', 'd4', 'exd4', 'Nf3', 'Bb4+', 'c3', 'dxc3', 'bxc3', 'Bc5'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'cxd5', 'exd5', 'Bg5', 'c6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Bb4', 'Qa4+', 'Nc6'], ['d4', 'd5', 'c4', 'c5', 'Nf3', 'Nf6', 'Nc3', 'cxd4', 'Nb5', 'a6'], ['d4', 'Nf6', 'f3', 'd5', 'Nc3', 'e6', 'e4', 'c5', 'Bb5+', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bb3', 'Nf6', 'Nc3', 'c6'], ['d3', 'e5', 'e4', 'Nf6', 'Nd2', 'd5', 'exd5', 'Nxd5', 'd4', 'exd4'], ['e4', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'e6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'Bb4+', 'c3', 'Bc5', 'Bg5', 'Nc6'], ['e4', 'e6', 'd4', 'Qh4', 'Nf3', 'Qxe4+', 'Kd2', 'Nc6', 'Nc3', 'Qf4+'], ['d4', 'd5', 'f3', 'Nf6', 'e4', 'dxe4', 'fxe4', 'Bg4', 'Be2', 'Bxe2'], ['d4', 'd5', 'Bf4', 'e6', 'e3', 'c5', 'c3', 'Nf6', 'Nf3', 'Bd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'd6'], ['e4', 'c5', 'c4', 'a5', 'a4', 'Nc6', 'd3', 'Nf6', 'Be2', 'd6'], ['e4', 'f5', 'e5', 'e6', 'Nc3', 'Nc6', 'd4', 'd6', 'Nf3', 'dxe5'], ['e4', 'Nc6', 'Nc3', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Bg4'], ['e4', 'Nh6', 'Nf3', 'd6', 'Bc4', 'Bg4', 'd3', 'c6', 'Bxh6', 'gxh6'], ['Nf3', 'd5', 'e4', 'c5', 'Bb5+', 'Bd7', 'Nc3', 'dxe4', 'Ne5', 'a6'], ['e4', 'c5', 'Bb5', 'g6', 'Nc3', 'a6', 'Ba4', 'b5', 'Bb3', 'c4'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nh6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'Nf6', 'Nd2', 'cxd2+'], ['d4', 'Nf6', 'Nf3', 'e6', 'Bf4', 'd5', 'Na3', 'Bxa3', 'bxa3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'd6', 'Ng5', 'd5'], ['e4', 'f5', 'e5', 'd6', 'd4', 'h5', 'Nf3', 'Nc6', 'Bb5', 'e6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Be2', 'Be7'], ['d4', 'Nf6', 'Nf3', 'd5', 'c4', 'c6', 'Nc3', 'Bg4', 'e3', 'e6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'e6', 'Bc4', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'c3', 'bxc3', 'e6', 'Nf3', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd6', 'Nf3', 'Nf6', 'h3', 'Bf5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Be2', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd4', 'exd4', 'Bxc6', 'dxc6'], ['d4', 'Nf6', 'Nf3', 'g6', 'e3', 'Bg7', 'Bd3', 'O-O', 'Nbd2', 'd5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Nf6', 'Bc4', 'e6'], ['c4', 'Nf6', 'd4', 'g6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nxc3'], ['e4', 'c5', 'Nf3', 'g6', 'Bc4', 'Bg7', 'a3', 'Nf6', 'd3', 'O-O'], ['e4', 'c5', 'd3', 'Nc6', 'Bf4', 'g6', 'Nc3', 'Bg7', 'Nd5', 'd6'], ['e4', 'c5', 'c3', 'd6', 'd4', 'cxd4', 'cxd4', 'Nc6', 'd5', 'Ne5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nc6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bd6', 'O-O', 'Nd4', 'Nxd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Bd6', 'd4', 'exd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'f4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'exf4', 'd4', 'Bg4'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'd4', 'Nge7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd4', 'exd4'], ['g4', 'e5', 'd3', 'd5', 'g5', 'f6', 'h4', 'Nc6', 'Nf3', 'Bc5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Bc4', 'g6'], ['e4', 'c5', 'f4', 'Nc6', 'Nf3', 'e6', 'c3', 'd5', 'e5', 'Nge7'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'Nc3', 'Nc6', 'Bb5', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'h6', 'O-O', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bd7', 'd4', 'exd4'], ['e4', 'Nf6', 'Nc3', 'e6', 'd4', 'Bb4', 'e5', 'Nd5', 'Bd2', 'Nxc3'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'e6', 'e4', 'c6'], ['Nf3', 'd5', 'd4', 'Nf6', 'Nc3', 'g6', 'Bg5', 'Bg7', 'Qd2', 'c6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'Bb5+', 'Nc6', 'd4', 'a6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'cxd4', 'cxd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Bc5', 'Bxc6', 'bxc6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'f3', 'Nc6'], ['e4', 'e6', 'd4', 'b6', 'Nc3', 'Bb7', 'Bf4', 'Bb4', 'Ne2', 'Bxe4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'c5', 'Nf3', 'Nc6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nc3', 'Nd7', 'g4', 'Bg6'], ['d4', 'Nf6', 'd5', 'c6', 'c4', 'cxd5', 'cxd5', 'g6', 'b4', 'd6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Qe7', 'Qxc7', 'Nc6', 'd3', 'Nd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb3', 'Nf6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Nc6', 'e3', 'e5', 'dxe5', 'Nxe5'], ['e4', 'e6', 'e5', 'd6', 'Nf3', 'dxe5', 'Nxe5', 'Bd6', 'Nc4', 'Nf6'], ['e4', 'd6', 'Nf3', 'Nf6', 'Bd3', 'g6', 'h3', 'Bg7', 'Qe2', 'O-O'], ['e4', 'e5', 'Nc3', 'Bc5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'g6', 'd3', 'Bg7'], ['d4', 'Nf6', 'Nf3', 'c5', 'c3', 'd5', 'Bf4', 'Nc6', 'e3', 'Qb6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c4', 'Nf6', 'Nc3', 'Nc6'], ['d4', 'Nf6', 'Nf3', 'c5', 'c3', 'd5', 'Bf4', 'Nc6', 'e3', 'a6'], ['e4', 'c6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Nf6', 'Nxf6+', 'exf6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'c6', 'd4', 'exd4', 'e5', 'Qe6'], ['e4', 'e5', 'Qh5', 'd5', 'Qxe5+', 'Be7', 'Qxg7', 'dxe4', 'Qxh8', 'Kd7'], ['d4', 'd5', 'e4', 'dxe4', 'Bb5+', 'c6', 'Be2', 'Nf6', 'Bg5', 'Bg4'], ['e4', 'e6', 'd3', 'Qh4', 'g3', 'Qf6', 'e5', 'Qxe5+', 'Be2', 'Bb4+'], ['d4', 'e5', 'e3', 'Bb4+', 'Bd2', 'Be7', 'dxe5', 'd6', 'Bc3', 'f6'], ['e4', 'd5', 'exd5', 'e6', 'Qf3', 'exd5', 'd4', 'Qe7+', 'Be2', 'Nh6'], ['d4', 'e5', 'Nf3', 'Bb4+', 'c3', 'exd4', 'cxb4', 'Nc6', 'b5', 'Nb4'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'Nc6', 'Bb5', 'Nd4', 'd3', 'Nxb5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Bf5', 'c4', 'c6', 'Nc3', 'e6'], ['e4', 'c5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Bb5+', 'Nc6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Bf4', 'Bg7', 'Nf3', 'O-O'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nxe4', 'Qe2', 'd5', 'Nxe5', 'Bc5'], ['Nf3', 'Nf6', 'g3', 'd5', 'Bg2', 'Bf5', 'O-O', 'e6', 'd3', 'h6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Bb4'], ['d3', 'd5', 'g3', 'e5', 'Bg2', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Ba5'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'Bf5', 'b3', 'Ne4', 'c4', 'e6'], ['b4', 'b5', 'e3', 'e6', 'a3', 'a6', 'c4', 'c6', 'c5', 'd6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nf6', 'e5', 'Ng8'], ['d4', 'd5', 'e3', 'Nf6', 'Bd3', 'c6', 'g3', 'g6', 'Qf3', 'Bg7'], ['c4', 'b6', 'Nc3', 'Bb7', 'e4', 'e6', 'g3', 'Nf6', 'Bg2', 'd6'], ['b3', 'd5', 'Bb2', 'Nc6', 'Nf3', 'Bf5', 'd3', 'a6', 'Nbd2', 'e6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'c6', 'e3', 'Bf5', 'a3', 'g6'], ['e4', 'c5', 'Nc3', 'd6', 'Bc4', 'Nf6', 'Nf3', 'e5', 'h3', 'a6'], ['b3', 'd5', 'b4', 'e6', 'b5', 'e5', 'e3', 'c6', 'c4', 'd4'], ['e4', 'd5', 'e5', 'Bf5', 'd4', 'e6', 'Bd3', 'g6', 'Bxf5', 'exf5'], ['Nf3', 'c5', 'b3', 'Nc6', 'Bb2', 'd5', 'd3', 'd4', 'c3', 'e5'], ['Nf3', 'c5', 'b3', 'Nf6', 'Bb2', 'g6', 'Bxf6', 'exf6', 'd3', 'Bg7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'a6', 'Ng5', 'e6'], ['b4', 'e5', 'b5', 'b6', 'c4', 'f5', 'Bb2', 'd6', 'e3', 'Nf6'], ['d4', 'c5', 'dxc5', 'Nc6', 'e4', 'e5', 'c4', 'Bxc5', 'Nc3', 'Bd4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['Nf3', 'e6', 'b3', 'd5', 'Bb2', 'Nf6', 'd3', 'Nc6', 'Nbd2', 'Bd6'], ['Nf3', 'Nf6', 'b3', 'd6', 'Bb2', 'e5', 'd3', 'Nc6', 'Nbd2', 'Bg4'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'c6', 'd4', 'exd4', 'Qxd4', 'd5'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'e3', 'O-O'], ['c4', 'Nf6', 'g3', 'd6', 'Bg2', 'e5', 'b4', 'a6', 'b5', 'axb5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nc6', 'd3', 'd5', 'exd5', 'Nxd5'], ['d4', 'c6', 'Bf4', 'd5', 'e3', 'Nf6', 'Nd2', 'Bf5', 'c3', 'Qb6'], ['d4', 'c5', 'Nf3', 'e6', 'dxc5', 'Bxc5', 'Nc3', 'd5', 'e3', 'a6'], ['Nf3', 'c5', 'c4', 'Nc6', 'Nc3', 'Na5', 'd3', 'h6', 'g3', 'Qc7'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'c6', 'Bd3', 'g6', 'Nf3', 'Bg7'], ['e4', 'c5', 'Bc4', 'd6', 'Nc3', 'Nf6', 'd3', 'a6', 'a3', 'b5'], ['Nf3', 'd5', 'd4', 'h6', 'c4', 'Nf6', 'Nc3', 'e6', 'cxd5', 'exd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Bc4', 'd6', 'c3', 'Nf6', 'd3', 'a6', 'Bd2', 'b5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'c5', 'cxd5', 'Nxd5'], ['b3', 'd5', 'Bb2', 'Bf5', 'd3', 'Nf6', 'Bxf6', 'gxf6', 'Nd2', 'Bh6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bf5', 'e3', 'g6'], ['d4', 'c6', 'e3', 'd5', 'Be2', 'Nf6', 'Nf3', 'g6', 'b3', 'Bf5'], ['Nf3', 'd5', 'b3', 'e6', 'Bb2', 'Nf6', 'd3', 'Be7', 'Nbd2', 'O-O'], ['e4', 'c6', 'Nc3', 'd5', 'exd5', 'cxd5', 'Qf3', 'Nf6', 'Bd3', 'Bg4'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'e6', 'e3', 'Be7'], ['e4', 'e6', 'Nc3', 'd6', 'd4', 'c6', 'Nf3', 'h6', 'Bd3', 'g5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'h3', 'd6'], ['e4', 'c5', 'Nf3', 'Nf6', 'e5', 'Nd5', 'Bc4', 'e6', 'Bxd5', 'exd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'Bc5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'd3', 'Bxc4', 'dxc4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'f6', 'd5', 'Nb4', 'c3', 'Nd3+'], ['e4', 'e5', 'Nf3', 'f6', 'Nc3', 'c6', 'Bc4', 'Nh6', 'O-O', 'Bc5'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Bg5', 'Nc6', 'Nc3', 'O-O'], ['e4', 'e5', 'd4', 'Nc6', 'Nf3', 'd6', 'Be3', 'Bg4', 'Bd3', 'Nf6'], ['e4', 'e5', 'd4', 'Nc6', 'd5', 'Nb4', 'a3', 'Na6', 'Nf3', 'Bc5'], ['e4', 'Nc6', 'Nf3', 'd5', 'Nc3', 'd4', 'Nb5', 'e5', 'Bc4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'bxc6', 'Nxe5', 'Qe7'], ['e4', 'Nc6', 'Nc3', 'a5', 'Nf3', 'e6', 'Bb5', 'Nb8', 'd4', 'Bb4'], ['e4', 'e5', 'd3', 'Nf6', 'f3', 'Nc6', 'c3', 'Bc5', 'b4', 'Bb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'dxc6', 'Nxe5', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'Bxd5', 'Nxd5'], ['c4', 'e5', 'Qb3', 'Nc6', 'Qd3', 'Nf6', 'Nc3', 'd6', 'a4', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'd3', 'Nc6', 'c3', 'Nf6', 'g3', 'Bc5', 'Bg2', 'O-O'], ['e4', 'g6', 'Nf3', 'Bg7', 'Bc4', 'b6', 'Ng5', 'Nh6', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'c6', 'Bc4', 'Bg4', 'd3', 'g6'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'Nc6', 'Nb5', 'Bf5', 'Nxc7+'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'd6', 'Bc4', 'Nc6', 'd3', 'Nf6'], ['e4', 'e6', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bb4', 'a3', 'Bxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Ng5', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Nc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'c5', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'Bg5', 'Bc5', 'Bxf6', 'Qxf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Bc5', 'Nxe5', 'O-O', 'd4', 'Bb4+'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be6', 'Nc3', 'Nf6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'Bd2', 'Bb4'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Qe7', 'Qxc7', 'Qxe4+', 'Ne2', 'Nc6'], ['e4', 'e5', 'Nf3', 'f6', 'Nc3', 'Bb4', 'Bc4', 'Bxc3', 'bxc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'a6', 'a3', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bb4', 'a3', 'Bxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bb6', 'c3', 'a6'], ['d4', 'd5', 'Nc3', 'Nf6', 'f3', 'Bf5', 'g4', 'Bg6', 'Nh3', 'h5'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'Nc6', 'Nc3', 'Be7', 'd3', 'd6'], ['e4', 'e5', 'f4', 'd6', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Nc3', 'h6', 'd3', 'f5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'f5', 'd3', 'Nf6', 'g3', 'Ng4'], ['d4', 'd5', 'Nf3', 'Nc6', 'a3', 'Nf6', 'h3', 'e6', 'Bg5', 'h6'], ['e4', 'c5', 'Bc4', 'd6', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'd3', 'g6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Qe7', 'Bc4', 'Nc6', 'd3', 'Nd4'], ['e4', 'e5', 'f4', 'd6', 'Nf3', 'Nc6', 'c3', 'Bg4', 'h3', 'Bh5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Nxe5', 'Nxe5', 'd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'O-O', 'O-O'], ['d4', 'Nf6', 'Bf4', 'g6', 'Nf3', 'Bg7', 'e3', 'O-O', 'Nbd2', 'd6'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'c4', 'd4', 'd3', 'c5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f4', 'Bg4'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'g6', 'd4', 'cxd4', 'cxd4', 'Bg7'], ['e4', 'e6', 'f4', 'd5', 'exd5', 'exd5', 'Nf3', 'c5', 'Bb5+', 'Nc6'], ['d4', 'c5', 'c3', 'c4', 'e4', 'Nc6', 'Bxc4', 'e5', 'Nf3', 'exd4'], ['g3', 'd5', 'Bg2', 'f5', 'd3', 'e6', 'c3', 'Nf6', 'b4', 'c6'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'Bf4', 'Bd6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nc6', 'Nf3', 'b6', 'cxd5', 'exd5'], ['g4', 'd5', 'Bg2', 'Bxg4', 'c4', 'c6', 'cxd5', 'cxd5', 'Qb3', 'Qc7'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'e6', 'e3', 'Be7', 'Nf3', 'O-O'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nf6', 'Nc3', 'c6'], ['d4', 'f5', 'c4', 'Nf6', 'Bg5', 'e6', 'Nc3', 'Be7', 'Nf3', 'O-O'], ['d4', 'e6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'Nf6', 'e5', 'Nh5'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'dxc5', 'Bxc5', 'exd5', 'Qb6'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'Nf6', 'c3', 'Bg4', 'Nbd2', 'h6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Bb5+', 'Nc6', 'Bxc6+', 'bxc6'], ['d4', 'c5', 'e3', 'Nf6', 'Nf3', 'e6', 'Bd3', 'd5', 'b3', 'cxd4'], ['d4', 'd5', 'Nf3', 'e6', 'e3', 'Nf6', 'Nbd2', 'Be7', 'Bd3', 'O-O'], ['d4', 'd5', 'Nf3', 'f6', 'Bf4', 'Nc6', 'c3', 'e5', 'dxe5', 'fxe5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'Nf3', 'c5'], ['d4', 'e6', 'Nf3', 'h6', 'e3', 'a6', 'c4', 'g5', 'Bd3', 'Bg7'], ['e4', 'e6', 'e5', 'd5', 'd4', 'c5', 'Bb5+', 'Nc6', 'Nf3', 'Qb6'], ['g3', 'd5', 'Bg2', 'c6', 'Nf3', 'Nf6', 'h3', 'Bf5', 'g4', 'Bg6'], ['e4', 'e6', 'a3', 'd5', 'f3', 'Bd6', 'exd5', 'Qh4+', 'g3', 'Bxg3+'], ['d4', 'd5', 'Nf3', 'h6', 'e3', 'Nf6', 'c4', 'e6', 'b3', 'a6'], ['d4', 'Nf6', 'c4', 'd5', 'Nc3', 'Be6', 'Bf4', 'a6', 'Nf3', 'Nc6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'g6', 'Bf4', 'a6', 'Nf3', 'Bg7'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'h4', 'h5', 'Bg5', 'Qb6'], ['c3', 'Nf6', 'Qc2', 'g6', 'e4', 'd6', 'd4', 'Bg7', 'f4', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bc5', 'Bxc6', 'dxc6'], ['e4', 'd6', 'Bc4', 'Nf6', 'Nc3', 'g6', 'd3', 'Bg7', 'Bd2', 'O-O'], ['d4', 'Nf6', 'c4', 'g6', 'Nf3', 'Bg7', 'e3', 'O-O', 'Be2', 'd6'], ['e4', 'e5', 'Nf3', 'Qf6', 'b3', 'Bc5', 'Bb2', 'd6', 'd4', 'exd4'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'b6', 'Qxf7#'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'c3', 'Nc6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Qf6', 'c3', 'g6', 'Qf3', 'Bc5'], ['e4', 'Nc6', 'Nf3', 'e5', 'c3', 'Bc5', 'Qa4', 'd6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bb4', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nxf7', 'Kxf7', 'Bc4+', 'Ke8'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'd6', 'Bg5', 'f6', 'Bd2', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'Be6', 'd3', 'Bxc4'], ['e4', 'Nf6', 'Nc3', 'd6', 'd4', 'Nc6', 'Nf3', 'g6', 'Ng5', 'Bg7'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Be7', 'Qxh8'], ['e4', 'e5', 'Nf3', 'd6', 'd3', 'Be7', 'Bg5', 'Bxg5', 'Nxg5', 'Qxg5'], ['e4', 'c5', 'Nf3', 'd5', 'Qe2', 'Nf6', 'e5', 'Ne4', 'd3', 'Qa5+'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'Nc6', 'g3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'd6', 'Bc4', 'Ne7', 'Nc3', 'Nbc6'], ['e4', 'c5', 'Nf3', 'e5', 'Bc4', 'Nf6', 'Nc3', 'd6', 'b3', 'Be6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Qf6', 'dxe5', 'dxe5', 'Bb5+', 'c6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nc6', 'd3', 'Bb4+', 'c3', 'Ba5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'Bg4', 'b3', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'Nc3', 'Nc6', 'd5'], ['e4', 'e6', 'Nf3', 'd5', 'Nc3', 'f5', 'exf5', 'd4', 'Ne4', 'exf5'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'Nf6', 'Qf3', 'g6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Bxc6', 'bxc6', 'd3', 'Ba6'], ['e4', 'e5', 'Nf3', 'Bd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'O-O'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Bh6', 'Qxf7#'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Qh4', 'Qe2', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bb4', 'a3', 'Bxc3'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'c3', 'b6'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Be7', 'Qxh8'], ['e4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Qd7', 'Nf3', 'Qe6', 'Bd3', 'Nf6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Be2', 'g6', 'Qf3', 'Nf6', 'Bc4', 'Bc5'], ['e4', 'e5', 'Nc3', 'Qh4', 'g3', 'Qf6', 'Bg2', 'd6', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nc6', 'Nxc6', 'bxc6', 'e5', 'Nd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'Nc3', 'd6', 'd3', 'Nf6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'e3', 'O-O', 'Bd3', 'd5'], ['Nf3', 'Nf6', 'e3', 'e6', 'd4', 'b6', 'Nbd2', 'Bb7', 'Be2', 'Be7'], ['d4', 'Nf6', 'Nc3', 'd5', 'Bg5', 'Nbd7', 'e3', 'g6', 'Bb5', 'c6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'Bd2', 'Ne7'], ['d4', 'e6', 'c4', 'f5', 'g3', 'Nf6', 'Bg2', 'Be7', 'Nf3', 'd5'], ['Nf3', 'e6', 'g3', 'd5', 'Bg2', 'Nf6', 'O-O', 'c5', 'c4', 'Nc6'], ['d4', 'd6', 'e4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'dxe5', 'Qxd8+', 'Nxd8'], ['e4', 'c5', 'a3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'e6', 'Nf3', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'd3', 'e5', 'Bg5', 'Be7'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'Nf3', 'Bxc3+', 'bxc3', 'h6'], ['e4', 'c6', 'g3', 'd5', 'exd5', 'cxd5', 'Bg2', 'e5', 'b3', 'Nc6'], ['d4', 'd5', 'Nf3', 'Bg4', 'Ne5', 'Bf5', 'Nc3', 'e6', 'e3', 'Nd7'], ['e4', 'c5', 'f4', 'd5', 'exd5', 'Nf6', 'd4', 'cxd4', 'Nf3', 'Qxd5'], ['e4', 'c5', 'Bc4', 'e6', 'd4', 'Nf6', 'Bg5', 'Qa5+', 'c3', 'Nxe4'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Nc6', 'e3', 'Nh5', 'Bb5', 'Nxf4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'a6', 'Ba4', 'b5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Bd7'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'e6', 'e3', 'a6', 'Bxc4', 'c6'], ['d3', 'Nf6', 'f3', 'e5', 'Nc3', 'Nc6', 'Bg5', 'Bb4', 'Qd2', 'h6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'f3', 'd5', 'Bg5', 'dxc4'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'd6'], ['d4', 'Nf6', 'c4', 'Nc6', 'Nf3', 'Ne4', 'e3', 'b6', 'Bd3', 'f5'], ['d4', 'Nf6', 'Nf3', 'd5', 'c4', 'e6', 'Bg5', 'Be7', 'Nc3', 'h6'], ['d4', 'Nf6', 'e3', 'd5', 'f4', 'Bf5', 'Nf3', 'e6', 'c4', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'dxc4', 'e4', 'c6', 'Bxc4', 'Bb4'], ['e4', 'c5', 'Bc4', 'e6', 'c3', 'd5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['Nf3', 'd5', 'd3', 'Nf6', 'g3', 'c6', 'Bg2', 'Bf5', 'O-O', 'e6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Bg4', 'd4', 'Qe6'], ['e4', 'e6', 'd4', 'Nf6', 'e5', 'Nd5', 'Nf3', 'Ne7', 'Bc4', 'd5'], ['d4', 'd5', 'c4', 'Nc6', 'Nc3', 'e6', 'Nf3', 'h6', 'cxd5', 'exd5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nxe4', 'Qe2', 'd5', 'Nxe5', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['c4', 'b6', 'd4', 'Bb7', 'Nf3', 'Nf6', 'e3', 'e6', 'Nc3', 'c5'], ['e4', 'c5', 'Bc4', 'Nc6', 'Qf3', 'Ne5', 'Qc3', 'd6', 'f4', 'Ng6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'Nf6', 'e5', 'Ne4', 'f3', 'Nc5'], ['d4', 'd5', 'Bf4', 'c5', 'e3', 'Nc6', 'Nf3', 'Nf6', 'dxc5', 'e6'], ['e4', 'g6', 'f4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'c3', 'Bg4'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bg5', 'Bg7', 'e3', 'O-O', 'Nbd2', 'd5'], ['d4', 'f5', 'Nc3', 'Nf6', 'Bg5', 'd5', 'e3', 'e6', 'Nf3', 'c5'], ['d4', 'e6', 'Nf3', 'Nf6', 'Bf4', 'd6', 'Nbd2', 'Be7', 'e3', 'b6'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'e6', 'e3', 'c5', 'Nbd2', 'Nc6'], ['e4', 'c6', 'd4', 'g6', 'Nc3', 'Bg7', 'Be3', 'd5', 'Qd2', 'Nf6'], ['g3', 'g6', 'Bg2', 'Bg7', 'd4', 'f5', 'c4', 'Nf6', 'Nc3', 'O-O'], ['d4', 'e6', 'Nf3', 'd5', 'Bf4', 'Nf6', 'e3', 'Bd6', 'Bg3', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bd3', 'c5', 'Nf3', 'Nc6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'a6', 'a4', 'Nf6', 'e4', 'e5'], ['d4', 'd5', 'Nf3', 'c6', 'Bf4', 'Nf6', 'Nbd2', 'e6', 'e3', 'Bd6'], ['d4', 'd5', 'c4', 'dxc4', 'a4', 'Nf6', 'e3', 'e5', 'Bxc4', 'exd4'], ['d4', 'g6', 'e4', 'Bg7', 'Nf3', 'd6', 'c3', 'Bg4', 'Bd3', 'Nc6'], ['d4', 'd5', 'Nf3', 'c6', 'Bf4', 'e6', 'e3', 'f5', 'Bd3', 'Nf6'], ['e4', 'g6', 'f4', 'd5', 'exd5', 'Nf6', 'c4', 'c6', 'dxc6', 'Nxc6'], ['d4', 'Nf6', 'Bf4', 'd5', 'e3', 'c6', 'Nf3', 'g6', 'Nbd2', 'Bg7'], ['d4', 'Nf6', 'Bf4', 'b6', 'Nf3', 'Bb7', 'Nbd2', 'e6', 'e3', 'd5'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'h6', 'c3', 'c5', 'dxc5', 'dxe4'], ['d4', 'd5', 'Nf3', 'e6', 'Bf4', 'Nf6', 'e3', 'Nbd7', 'Bd3', 'c5'], ['d4', 'Nf6', 'Nf3', 'c5', 'e3', 'cxd4', 'exd4', 'g6', 'c3', 'Bg7'], ['d4', 'Nf6', 'Bf4', 'e6', 'e3', 'd5', 'Nf3', 'c5', 'c3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['b3', 'Nf6', 'Bb2', 'g6', 'e4', 'd6', 'd3', 'c5', 'Nd2', 'b5'], ['d4', 'g6', 'e4', 'Bg7', 'Nf3', 'd6', 'c3', 'Nf6', 'Bd3', 'Nc6'], ['d4', 'c5', 'd5', 'Nf6', 'Nc3', 'e6', 'e4', 'd6', 'Nf3', 'exd5'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'h4', 'd6', 'Be2', 'c5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e5', 'Bxc4', 'exd4', 'exd4', 'Nf6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'c5', 'c3', 'Nc6', 'Nd2', 'Qb6'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'Qe7', 'Nc3', 'Nxe5', 'Nd5', 'Nxf3+'], ['d4', 'd5', 'c4', 'dxc4', 'Bf4', 'Nf6', 'e3', 'c5', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Nf6', 'c3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bc5', 'O-O', 'O-O'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e5', 'Bxc4', 'exd4', 'exd4', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'Nf6', 'e3', 'Bf5', 'Bxc4', 'Nc6'], ['e4', 'g6', 'd4', 'Bg7', 'f4', 'c5', 'c3', 'cxd4', 'cxd4', 'Qb6'], ['d4', 'd5', 'Nc3', 'e6', 'Bf4', 'c5', 'e4', 'c4', 'Nf3', 'Nc6'], ['d4', 'd5', 'Bf4', 'Nf6', 'Nc3', 'Bf5', 'f3', 'e6', 'g4', 'Bg6'], ['h3', 'd5', 'g3', 'Bf5', 'Nf3', 'e6', 'Bg2', 'c5', 'O-O', 'Be7'], ['d4', 'd5', 'Bf4', 'e6', 'e3', 'c5', 'Nf3', 'Ne7', 'c4', 'Nbc6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c4', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bd6', 'Bxc6', 'dxc6', 'h3', 'Qf6'], ['e4', 'e5', 'Bc4', 'd6', 'Qf3', 'f6', 'd3', 'h6', 'Ne2', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'c6', 'Nc3', 'Nd7', 'b4', 'b5'], ['e4', 'e6', 'Nf3', 'c5', 'Bc4', 'Nf6', 'e5', 'Ne4', 'd3', 'Ng5'], ['e4', 'e5', 'Nf3', 'd6', 'c3', 'Bg4', 'Bc4', 'a6', 'h3', 'Bh5'], ['e3', 'e5', 'Qf3', 'd6', 'Bc4', 'Nh6', 'd4', 'c6', 'dxe5', 'd5'], ['e4', 'Nc6', 'Qe2', 'e5', 'Qb5', 'Nd4', 'Qxe5+', 'Ne6', 'Nf3', 'Bd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'c3', 'Bg4', 'Bb3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'c3', 'Nxe4', 'O-O', 'd5'], ['d4', 'd6', 'Bf4', 'f6', 'e3', 'g5', 'Bg3', 'h5', 'h3', 'c6'], ['e4', 'e5', 'Nf3', 'd6', 'c3', 'Bg4', 'Bc4', 'h6', 'Qb3', 'Be6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'c3', 'b6', 'Bb3', 'Qf6'], ['d4', 'd5', 'Bf4', 'Nc6', 'Nc3', 'Bf5', 'Nb5', 'Rc8', 'a3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd3', 'Be7'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'd3', 'Qb6', 'Ng5', 'd4'], ['e4', 'e6', 'd4', 'c5', 'c3', 'cxd4', 'cxd4', 'Nc6', 'Nf3', 'a6'], ['e4', 'c5', 'Na3', 'd6', 'c4', 'Nf6', 'f3', 'g6', 'Qa4+', 'Bd7'], ['d4', 'd6', 'e4', 'e5', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8', 'Nf3', 'Nc6'], ['d4', 'd5', 'Nf3', 'Nc6', 'c3', 'Bg4', 'Na3', 'Bxf3', 'gxf3', 'e6'], ['g3', 'c6', 'Bg2', 'Nf6', 'b3', 'd5', 'Bb2', 'Be6', 'Bxf6', 'gxf6'], ['e4', 'e5', 'Nc3', 'c5', 'f3', 'Nc6', 'd3', 'd6', 'Nh3', 'f6'], ['e4', 'Nc6', 'Nf3', 'a6', 'd4', 'Nf6', 'd5', 'Nb4', 'a3', 'Nbxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'a5', 'd5', 'Nb4', 'a3', 'Na6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Nh4', 'Be7', 'Qf3', 'O-O'], ['d4', 'e5', 'Nf3', 'exd4', 'Nxd4', 'Qh4', 'g3', 'Qe4', 'f3', 'Qe7'], ['d4', 'd5', 'Bf4', 'c5', 'dxc5', 'e5', 'Bxe5', 'Bxc5', 'Bxb8', 'Rxb8'], ['e4', 'e5', 'd4', 'f5', 'Nc3', 'Bb4', 'Bd2', 'Nf6', 'Nd5', 'fxe4'], ['d4', 'Nf6', 'c4', 'd5', 'Nc3', 'e6', 'e4', 'Bb4', 'e5', 'Ne4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'g6', 'O-O', 'Nf6', 'c3', 'a6'], ['e3', 'e5', 'Qh5', 'Nc6', 'f4', 'g6', 'Qh3', 'e4', 'f5', 'Be7'], ['d4', 'e6', 'e4', 'Nf6', 'e5', 'Bb4+', 'c3', 'Ba5', 'b4', 'Bb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'c6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Bb4', 'a3', 'Bxc3+'], ['c4', 'c5', 'Nc3', 'Nc6', 'g3', 'g6', 'Bg2', 'Bg7', 'e3', 'Nh6'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'b4', 'cxb4', 'd4', 'Nc6'], ['d4', 'c5', 'd5', 'Nf6', 'Nc3', 'd6', 'e4', 'e6', 'Nf3', 'exd5'], ['d4', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Nc3', 'h6', 'Bf4', 'a6'], ['e4', 'e6', 'd3', 'd5', 'Nd2', 'Nf6', 'Ngf3', 'Be7', 'g3', 'b6'], ['e4', 'c5', 'Nf3', 'd6', 'b4', 'cxb4', 'd4', 'Nf6', 'Bd3', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'g6', 'g3', 'Bg7', 'Bg2', 'd6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'Bd3', 'c5'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'd5', 'b3', 'c6'], ['d4', 'c5', 'e3', 'e6', 'Nf3', 'Nf6', 'Bd3', 'Nc6', 'c3', 'd6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c4', 'Nf6', 'Nf3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nf6', 'c4', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7', 'O-O', 'Nge7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'c3', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'dxc5', 'Nc6', 'Nf3', 'Qc7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'a6'], ['e4', 'c6', 'd4', 'd5', 'f3', 'e6', 'Nc3', 'Bb4', 'Ne2', 'dxe4'], ['d4', 'Nf6', 'c4', 'e6', 'Bg5', 'd5', 'Nc3', 'Bb4', 'e3', 'O-O'], ['d4', 'd5', 'Nf3', 'e6', 'Bf4', 'c5', 'e3', 'Nc6', 'c3', 'Bd6'], ['e4', 'e6', 'Nf3', 'c5', 'd4', 'd5', 'exd5', 'exd5', 'dxc5', 'Bxc5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'exd5', 'Qc2', 'c6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'e6', 'd5', 'exd5', 'exd5', 'Nb4'], ['e4', 'c5', 'Bc4', 'Nc6', 'Qf3', 'e6', 'c3', 'Ne5', 'Qe2', 'Nxc4'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'g6', 'Bf4', 'Bg7', 'e3', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'e6', 'Bc4', 'd5', 'Bb5', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'Nc6', 'Nxc6', 'dxc6'], ['d4', 'd5', 'e3', 'Nc6', 'Bb5', 'Bd7', 'Nc3', 'e6', 'Nf3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd3', 'Nf6', 'Bg5', 'h6'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'd6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['Nc3', 'e5', 'e4', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'e5', 'f4', 'exf4', 'Bc4', 'Qh4+', 'Kf1', 'Bc5', 'd4', 'Bb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Be2', 'Nf6', 'd3', 'd6', 'O-O', 'Bg4'], ['e3', 'd5', 'Bb5+', 'c6', 'Bd3', 'Bd7', 'Bf1', 'Qb6', 'd3', 'Qc7'], ['e4', 'e5', 'd3', 'Qe7', 'Qh5', 'Qe6', 'Qf3', 'Qa6', 'Qe3', 'Qg6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7', 'dxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'c4', 'dxe4', 'Nc3', 'e5', 'Be3', 'Bb4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bc4', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'O-O', 'Bf6', 'Nc3', 'Nge7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Qf6', 'O-O', 'Bc5', 'd4', 'Nxd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Bc5', 'O-O', 'Nc6', 'd4', 'exd4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Bg4', 'd4', 'Bxe2'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd4', 'exd4', 'Ng5', 'Ne5'], ['e4', 'e5', 'Bc4', 'f5', 'Bxg8', 'Rxg8', 'exf5', 'Qh4', 'Qe2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'Nc6', 'Nc3', 'Bc5', 'b4', 'Bxb4'], ['e4', 'e5', 'd3', 'Nf6', 'f3', 'Bc5', 'Nh3', 'd5', 'exd5', 'Bxh3'], ['e4', 'e5', 'd3', 'Nf6', 'Be2', 'Bc5', 'Qd2', 'O-O', 'Nf3', 'Nc6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'h6', 'd4', 'Na5', 'Nxe5', 'Nxc4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'd3', 'g6'], ['e4', 'g6', 'd4', 'Bg7', 'f4', 'c5', 'e5', 'cxd4', 'Nf3', 'd6'], ['c4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'e4', 'Bb4', 'a3', 'Bxc3'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e6', 'Bb5', 'd5', 'Bxc6+', 'bxc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'e6', 'Qe2', 'Nf6', 'd3', 'h6'], ['e4', 'c5', 'g3', 'e5', 'Bg2', 'Nc6', 'd3', 'h6', 'Nf3', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'a6', 'b3', 'e6'], ['e4', 'c5', 'Nc3', 'Nc6', 'f4', 'g6', 'Nf3', 'Bg7', 'd3', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'e6'], ['e4', 'c5', 'Nc3', 'e6', 'f4', 'd5', 'e5', 'd4', 'Ne4', 'b6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'Qa5+'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'd6', 'd4', 'Nc6', 'Nc3', 'Be7'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'h6', 'd4', 'exd4', 'Nxd4', 'Qf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd4', 'cxd4'], ['e4', 'e5', 'Bc4', 'd6', 'Nf3', 'Bg4', 'h3', 'Bh5', 'g4', 'Bg6'], ['e4', 'e5', 'Bc4', 'Be7', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Bf6'], ['e4', 'e6', 'd4', 'c6', 'Nf3', 'Bb4+', 'c3', 'Ba5', 'b4', 'Bc7'], ['f4', 'Nc6', 'Nf3', 'd6', 'e4', 'e5', 'Bc4', 'exf4', 'O-O', 'Be6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e6', 'Nb5', 'a6'], ['d4', 'e6', 'c4', 'd5', 'Nf3', 'c5', 'Bg5', 'Qb6', 'dxc5', 'Bxc5'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e6', 'd4', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Nc6', 'Nb5', 'd5'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'e6', 'c4', 'c5', 'Nc3', 'cxd4'], ['e4', 'c5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Ne4', 'e6'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nf3', 'Nc6', 'c3', 'd6', 'h3', 'Nge7'], ['e4', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Nxd5', 'Qxd5', 'Qf3', 'Qc5'], ['e4', 'c5', 'Bc4', 'e6', 'c3', 'd5', 'exd5', 'exd5', 'Qa4+', 'Nc6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['d4', 'e6', 'e4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'Bd3', 'c5'], ['e4', 'd6', 'd4', 'e5', 'dxe5', 'Qh4', 'Nc3', 'dxe5', 'Nf3', 'Qf6'], ['e3', 'e5', 'd3', 'd5', 'Nf3', 'f6', 'Nc3', 'a6', 'Ne2', 'Nc6'], ['e3', 'e5', 'd3', 'Nc6', 'c3', 'Nf6', 'f3', 'Bd6', 'Ne2', 'O-O'], ['e3', 'c5', 'd3', 'd6', 'c3', 'g6', 'Nf3', 'Bg7', 'Bd2', 'Nc6'], ['e3', 'e5', 'd3', 'd5', 'c3', 'Bc5', 'Nf3', 'Nc6', 'b4', 'Bb6'], ['e3', 'e5', 'd3', 'd5', 'c3', 'Nc6', 'Nf3', 'e4', 'Nd4', 'Ne5'], ['e3', 'e5', 'd3', 'd5', 'c3', 'd4', 'e4', 'dxc3', 'bxc3', 'Bc5'], ['e3', 'b6', 'c3', 'Bb7', 'f3', 'Nc6', 'Bb5', 'e6', 'Bxc6', 'Bxc6'], ['e3', 'e5', 'd3', 'Nc6', 'c3', 'd5', 'b4', 'd4', 'Bb2', 'dxe3'], ['e3', 'e5', 'd3', 'd5', 'c3', 'Nc6', 'Nf3', 'Nf6', 'h3', 'd4'], ['e3', 'd5', 'd3', 'e5', 'c3', 'c5', 'b3', 'Nc6', 'f3', 'Nf6'], ['e3', 'd5', 'd3', 'e5', 'c3', 'c5', 'Nf3', 'Nc6', 'Be2', 'e4'], ['f3', 'e6', 'e3', 'd5', 'd3', 'Nf6', 'c3', 'Nh5', 'Ne2', 'a6'], ['e3', 'e5', 'd3', 'Bc5', 'Nf3', 'Nc6', 'Bd2', 'd6', 'c3', 'Bg4'], ['d3', 'g6', 'e3', 'd5', 'c3', 'c5', 'Nf3', 'Nc6', 'b3', 'Bg7'], ['e3', 'e5', 'd3', 'd5', 'c3', 'Nf6', 'f3', 'Nc6', 'b3', 'Bd6'], ['f3', 'e5', 'e3', 'd5', 'd3', 'f5', 'c3', 'f4', 'exf4', 'exf4'], ['e3', 'e5', 'd3', 'd5', 'c3', 'c5', 'Nf3', 'Nc6', 'Nfd2', 'Nf6'], ['e3', 'e5', 'd3', 'Bc5', 'c3', 'd5', 'Nf3', 'Bg4', 'Qa4+', 'Bd7'], ['e4', 'e5', 'd3', 'Nc6', 'c3', 'Qf6', 'Nf3', 'h6', 'Be3', 'Nge7'], ['e4', 'd5', 'exd5', 'Qxd5', 'd3', 'Nf6', 'f3', 'e6', 'Be2', 'Bb4+'], ['e3', 'Nf6', 'f3', 'd5', 'Bb5+', 'c6', 'Bd3', 'b6', 'Ne2', 'Bb7'], ['e3', 'b6', 'd3', 'c5', 'Be2', 'Nf6', 'c3', 'e5', 'Bf3', 'd5'], ['e3', 'd6', 'd3', 'e6', 'Be2', 'a6', 'Bd2', 'Nd7', 'Nf3', 'Ne7'], ['e3', 'c5', 'c3', 'Nc6', 'Bb5', 'g6', 'Bxc6', 'bxc6', 'Nf3', 'Bg7'], ['e3', 'e6', 'd3', 'd5', 'Be2', 'Nf6', 'Nf3', 'c5', 'Ne5', 'Bd6'], ['e3', 'e5', 'd3', 'd5', 'Be2', 'f5', 'Nf3', 'Nc6', 'c3', 'e4'], ['e3', 'e5', 'd3', 'd5', 'Be2', 'Nf6', 'Bf3', 'Nc6', 'c3', 'e4'], ['f3', 'd5', 'd3', 'e5', 'e3', 'Nc6', 'c3', 'Bc5', 'Be2', 'Bf5'], ['e3', 'e6', 'd3', 'd6', 'c3', 'h6', 'Be2', 'g6', 'Bf3', 'Bg7'], ['e3', 'e5', 'd3', 'd6', 'c3', 'Nc6', 'b4', 'Nf6', 'f3', 'Be7'], ['e3', 'Nf6', 'f3', 'g6', 'Be2', 'Bg7', 'c3', 'O-O', 'Na3', 'd6'], ['e3', 'e5', 'd3', 'd5', 'Be2', 'Nf6', 'f3', 'Nc6', 'c3', 'Be7'], ['e3', 'e5', 'd3', 'd5', 'Be2', 'Nf6', 'f3', 'Bc5', 'Bd2', 'O-O'], ['e3', 'd5', 'd3', 'e5', 'Be2', 'h5', 'Nf3', 'e4', 'Nd4', 'exd3'], ['e4', 'e6', 'd3', 'f6', 'Be2', 'Nh6', 'f3', 'Nc6', 'c3', 'b6'], ['e4', 'e5', 'd3', 'Nf6', 'Bg5', 'd5', 'Bxf6', 'gxf6', 'exd5', 'Qxd5'], ['e3', 'd5', 'd3', 'e5', 'Be2', 'Nf6', 'Bf3', 'Be7', 'Ne2', 'O-O'], ['e3', 'd5', 'd3', 'e5', 'Be2', 'Nf6', 'h3', 'c6', 'Nf3', 'Bf5'], ['e3', 'c5', 'd3', 'd6', 'c3', 'Nc6', 'Be2', 'g6', 'Nf3', 'Bg7'], ['e3', 'g6', 'Be2', 'Bg7', 'd3', 'd5', 'c3', 'Nc6', 'b4', 'a6'], ['e3', 'e6', 'd3', 'b6', 'c3', 'Bb7', 'Be2', 'd5', 'f3', 'Nd7'], ['e4', 'e5', 'd3', 'd6', 'c3', 'c6', 'Ne2', 'b5', 'f3', 'a6'], ['e3', 'e5', 'd3', 'Qf6', 'Nf3', 'd5', 'Ng1', 'd4', 'e4', 'Nh6'], ['e3', 'd5', 'd3', 'Nf6', 'Be2', 'e5', 'Bf3', 'Nc6', 'c3', 'Bd6'], ['e3', 'e5', 'd3', 'd5', 'Be2', 'Nf6', 'f3', 'Nbd7', 'Nh3', 'h6'], ['e3', 'e5', 'd3', 'Nf6', 'Be2', 'Nc6', 'c3', 'e4', 'd4', 'd5'], ['e3', 'e5', 'd3', 'Nc6', 'c3', 'Nf6', 'f3', 'd5', 'Be2', 'a6'], ['e3', 'e5', 'd3', 'f5', 'Be2', 'Nf6', 'f3', 'Bd6', 'Nh3', 'O-O'], ['e3', 'e6', 'Nc3', 'Nf6', 'b3', 'd5', 'Bb2', 'e5', 'Qe2', 'Nc6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'f4', 'Bg7', 'Nf3', 'O-O'], ['e4', 'c5', 'Bc4', 'Nf6', 'd3', 'a6', 'Nf3', 'b5', 'Bb3', 'Nc6'], ['e4', 'c5', 'c4', 'Nc6', 'Nc3', 'e5', 'Nf3', 'Nf6', 'd3', 'd6'], ['c4', 'e5', 'Nc3', 'Bb4', 'Nd5', 'Bd6', 'd4', 'e4', 'Bf4', 'c6'], ['c4', 'g6', 'Nf3', 'Bg7', 'd4', 'c6', 'e4', 'd5', 'Nc3', 'dxe4'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c6', 'e5', 'c5', 'Be3', 'cxd4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'c6', 'Bc4', 'Bf5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['Nf3', 'Nf6', 'c4', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O', 'O-O', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nc3', 'Bg7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Bg5', 'e6', 'e3', 'Nbd7'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'cxd5', 'cxd5', 'Bg5', 'Nc6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'Qc7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'Nf6', 'Bf4', 'd6', 'Nc3', 'Nc6', 'Nf3', 'Bf5', 'e3', 'g6'], ['f4', 'd5', 'Nf3', 'Nf6', 'g3', 'Nc6', 'Bg2', 'Bg4', 'O-O', 'e6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e5', 'Nfd7'], ['e4', 'Nc6', 'Nf3', 'b6', 'd4', 'Ba6', 'Bxa6', 'Nf6', 'Nbd2', 'e5'], ['e3', 'c5', 'c4', 'Nc6', 'Nc3', 'Nf6', 'Nh3', 'g6', 'b3', 'd5'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'g6', 'Ng5', 'Bg7', 'Nxf7'], ['c4', 'e5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'e3', 'd5', 'd4', 'exd4'], ['c4', 'e5', 'Nc3', 'Bb4', 'Ne4', 'd6', 'Qb3', 'Nc6', 'e3', 'Bf5'], ['e4', 'e6', 'e5', 'd5', 'd4', 'f6', 'a3', 'Nc6', 'Bb5', 'Bd7'], ['c4', 'e5', 'e4', 'd6', 'Nc3', 'Be6', 'b4', 'Be7', 'Bb2', 'Nf6'], ['d4', 'e6', 'e4', 'd5', 'e5', 'Nc6', 'f4', 'Nge7', 'Bb5', 'a6'], ['c4', 'c6', 'd4', 'd5', 'b3', 'g6', 'Nc3', 'Bg7', 'e3', 'e6'], ['c4', 'e5', 'e4', 'Nf6', 'Nc3', 'Nc6', 'Bd3', 'Bb4', 'a3', 'Ba5'], ['e4', 'e5', 'd4', 'd6', 'Bd3', 'Nc6', 'c3', 'Nf6', 'Bb5', 'Be7'], ['e4', 'd5', 'Nc3', 'd4', 'Nd5', 'e6', 'Nf4', 'e5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Nc3', 'Qe7+', 'Be2', 'c6'], ['e4', 'c5', 'Nc3', 'a6', 'Nf3', 'Nc6', 'Be2', 'e6', 'b3', 'd5'], ['d4', 'e6', 'a3', 'd5', 'Nc3', 'Nf6', 'Bf4', 'Be7', 'Nb5', 'O-O'], ['e4', 'g6', 'Bb5', 'Bg7', 'Nf3', 'e6', 'O-O', 'a6', 'Ba4', 'Ne7'], ['e4', 'e6', 'e5', 'd5', 'd4', 'Nc6', 'Bb5', 'Bd7', 'Nf3', 'Nb4'], ['e4', 'c6', 'd3', 'd5', 'Nd2', 'h6', 'Ngf3', 'e6', 'g3', 'dxe4'], ['e4', 'e6', 'Bc4', 'd5', 'Bb5+', 'Bd7', 'Bd3', 'Nc6', 'exd5', 'exd5'], ['e4', 'e5', 'd3', 'Bd6', 'Nd2', 'Nf6', 'Ngf3', 'O-O', 'g3', 'Qe8'], ['e4', 'e6', 'Bd3', 'd5', 'e5', 'Nc6', 'Nf3', 'Bc5', 'O-O', 'Nge7'], ['e4', 'e6', 'e5', 'd5', 'd4', 'Ne7', 'Qf3', 'Nbc6', 'c3', 'g6'], ['e4', 'c6', 'd3', 'd5', 'g3', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'g3', 'Nf6', 'd3', 'd5', 'Bg2', 'dxe4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'c6', 'Bd3', 'Bd6'], ['e4', 'c6', 'Nf3', 'd5', 'd3', 'dxe4', 'dxe4', 'Qxd1+', 'Kxd1', 'Bg4'], ['c4', 'e6', 'd4', 'Nf6', 'd5', 'Be7', 'a3', 'O-O', 'h3', 'd6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Be7', 'Be2', 'Nxe4', 'Qxg7', 'd5'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qf3', 'd6', 'Nh3', 'Nc6', 'Bc4', 'd5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'Nf3', 'Bxc3+', 'bxc3', 'Ne7'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qa4', 'd6', 'Nf3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nxe4', 'Nxe5', 'd5', 'Bb3', 'Qg5'], ['e4', 'g6', 'Nf3', 'd6', 'd4', 'Bg7', 'Nc3', 'Nf6', 'Bg5', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Bg5', 'Nbd7', 'Nbd2', 'h6'], ['e4', 'c5', 'f4', 'e6', 'c4', 'Nc6', 'Nc3', 'Nge7', 'Nf3', 'd5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nc6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'Bd7', 'O-O', 'exd4'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'O-O', 'e3', 'b6'], ['e4', 'c5', 'Bc4', 'e6', 'b3', 'Nc6', 'Nf3', 'Nf6', 'd3', 'd5'], ['c4', 'b6', 'Nc3', 'c5', 'g3', 'Bb7', 'e4', 'Nf6', 'Bg2', 'd6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'cxd5', 'exd5', 'Bg5', 'c6'], ['c4', 'c5', 'Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Nc6'], ['Nf3', 'c6', 'c4', 'd5', 'g3', 'Nf6', 'Bg2', 'Bg4', 'O-O', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Nc6'], ['Nf3', 'g6', 'd4', 'Bg7', 'c4', 'Nf6', 'g3', 'O-O', 'Bg2', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'e6', 'O-O', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'c6', 'f4', 'd5', 'exd5', 'cxd5', 'd4', 'Nc6', 'Nf3', 'g6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'Nf6', 'Bc4', 'e6'], ['d4', 'd5', 'c3', 'Nf6', 'Bf4', 'Bf5', 'Nd2', 'e6', 'e3', 'Be7'], ['Nf3', 'e5', 'e4', 'd5', 'exd5', 'e4', 'Qe2', 'Nf6', 'd3', 'Bf5'], ['d3', 'Nf6', 'c3', 'd5', 'Nd2', 'c5', 'Ndf3', 'e6', 'Qc2', 'Bd6'], ['d4', 'Nf6', 'Nf3', 'd5', 'c4', 'dxc4', 'e3', 'Qd5', 'Nc3', 'Qc6'], ['Nf3', 'Nf6', 'd4', 'c5', 'dxc5', 'e6', 'e4', 'Bxc5', 'Bd3', 'Nc6'], ['Nf3', 'Nc6', 'c4', 'Nf6', 'Nc3', 'g6', 'd4', 'Bg7', 'e4', 'd6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'dxc4', 'g3', 'g6'], ['e4', 'c5', 'f4', 'g6', 'Nf3', 'Bg7', 'c4', 'a6', 'Nc3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'b6'], ['e4', 'Nf6', 'Nc3', 'd5', 'e5', 'd4', 'exf6', 'dxc3', 'fxe7', 'cxd2+'], ['e4', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Nxd5', 'Qxd5', 'Nf3', 'Nc6'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'd4', 'Nf3', 'Nc6', 'a3', 'Nge7'], ['e3', 'd5', 'd4', 'Bf5', 'g3', 'a6', 'Bg2', 'Nf6', 'Nf3', 'Nc6'], ['Nf3', 'd5', 'g3', 'Nf6', 'Bg2', 'Nc6', 'd4', 'e5', 'dxe5', 'Ng4'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'a4', 'a5', 'd4', 'e6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Nf3', 'Bg4'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'Nf3', 'Bb4', 'Bd3', 'Nf6'], ['Nf3', 'c6', 'c4', 'e6', 'Nc3', 'Nf6', 'e4', 'Bb4', 'e5', 'Bxc3'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'd5', 'Bg5', 'dxc4'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'cxb5', 'e6', 'Nc3', 'a6'], ['d4', 'd5', 'c4', 'Nf6', 'Bf4', 'e6', 'e3', 'Bb4+', 'Nc3', 'Ne4'], ['e4', 'e6', 'f4', 'd5', 'e5', 'c5', 'Bb5+', 'Bd7', 'Nc3', 'a6'], ['e3', 'e5', 'b3', 'd5', 'Bb2', 'Bd6', 'Ne2', 'Nf6', 'Ng3', 'Nc6'], ['e4', 'c5', 'Bc4', 'd6', 'Qf3', 'e6', 'Qb3', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'c5', 'Nf3', 'e6', 'd3', 'b6', 'g3', 'Bb7', 'Bg2', 'Nc6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e6'], ['e3', 'e6', 'd4', 'd5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7', 'Nf3', 'f6'], ['e4', 'e6', 'Nf3', 'Nc6', 'd4', 'Bb4+', 'c3', 'Be7', 'd5', 'exd5'], ['d4', 'e6', 'c4', 'Nc6', 'e3', 'Bb4+', 'Bd2', 'Bd6', 'Nf3', 'Nf6'], ['e3', 'e6', 'd4', 'b6', 'Nc3', 'Bb7', 'f3', 'Qh4+', 'g3', 'Qf6'], ['e4', 'e6', 'Bc4', 'Nf6', 'd3', 'a6', 'a3', 'Nc6', 'Bg5', 'Be7'], ['e4', 'd6', 'd4', 'e6', 'Bc4', 'Nd7', 'Bf4', 'Ne7', 'Ne2', 'b6'], ['e4', 'e6', 'e5', 'Nc6', 'Nf3', 'd5', 'd4', 'Bd7', 'c4', 'a6'], ['e3', 'e5', 'Nf3', 'e4', 'Ne5', 'f6', 'Nc4', 'd5', 'Na5', 'c5'], ['e3', 'e6', 'd4', 'd6', 'Nc3', 'Be7', 'e4', 'f5', 'Bd3', 'h6'], ['e3', 'e5', 'Nf3', 'e4', 'Ne5', 'd6', 'Nc4', 'd5', 'Ne5', 'Bd6'], ['e4', 'e6', 'f4', 'Nf6', 'e5', 'Ne4', 'Bd3', 'Nc5', 'Nc3', 'Nc6'], ['e4', 'e6', 'd4', 'Nf6', 'Qf3', 'a6', 'Bc4', 'Nc6', 'd5', 'Nd4'], ['e3', 'e5', 'Nf3', 'd6', 'h3', 'Nf6', 'Nc3', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'd5', 'e5', 'Nc6', 'd4', 'e6', 'Nf3', 'Bb4+', 'c3', 'Be7'], ['e3', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'dxc6', 'Nxe5', 'Be6'], ['e4', 'Nf6', 'Nc3', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nxe5', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'f6', 'd3', 'Nd4'], ['e3', 'e5', 'Nc3', 'd5', 'h3', 'Nf6', 'Nf3', 'Nc6', 'd4', 'e4'], ['e3', 'e6', 'Qf3', 'd5', 'Bb5+', 'c6', 'Bf1', 'Nf6', 'd3', 'Bb4+'], ['e4', 'e6', 'e5', 'Nc6', 'd4', 'Bb4+', 'c3', 'Be7', 'Bb5', 'a6'], ['e3', 'e5', 'Nf3', 'e4', 'Nd4', 'd5', 'Bb5+', 'c6', 'Be2', 'a6'], ['e4', 'e6', 'd4', 'Bb4+', 'c3', 'Ba5', 'Nf3', 'Nc6', 'a3', 'f6'], ['e3', 'd6', 'b3', 'e5', 'Bb2', 'Nc6', 'Ne2', 'Bd7', 'Ng3', 'Nf6'], ['d4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'Nc6', 'a3', 'Bxc3', 'Bxc3', 'Nf6'], ['Nc3', 'e6', 'e4', 'Nf6', 'a3', 'Nc6', 'd4', 'e5', 'd5', 'Nd4'], ['e4', 'e6', 'Nf3', 'Nf6', 'Bb5', 'Nxe4', 'd3', 'Nd6', 'Ba4', 'Nf5'], ['e4', 'e6', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'Nbd7', 'd4', 'h5'], ['e4', 'e6', 'd4', 'Nf6', 'e5', 'Nd5', 'f4', 'c6', 'Nf3', 'Qa5+'], ['e3', 'c5', 'h3', 'e6', 'Nc3', 'd5', 'Bb5+', 'Bd7', 'Bd3', 'Nf6'], ['e3', 'd5', 'Qf3', 'Nf6', 'd4', 'Bg4', 'Qg3', 'h5', 'h3', 'Ne4'], ['d4', 'd5', 'e3', 'Nc6', 'Nc3', 'e5', 'dxe5', 'Nxe5', 'Bb5+', 'c6'], ['d4', 'd5', 'e3', 'Nf6', 'Nc3', 'e6', 'Nf3', 'Bb4', 'Bd2', 'O-O'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'e4', 'Nf6', 'd4', 'Bg4'], ['e4', 'e6', 'Bc4', 'Nf6', 'd3', 'd5', 'Bb3', 'c6', 'Nf3', 'dxe4'], ['d4', 'd5', 'e3', 'Nf6', 'h3', 'e6', 'Nf3', 'Bd6', 'Bb5+', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Nge2', 'Qd7', 'd4', 'e6'], ['d4', 'd5', 'e3', 'Nf6', 'Bd3', 'Nc6', 'h3', 'Be6', 'Nf3', 'h5'], ['e4', 'Nf6', 'Nf3', 'Nxe4', 'Bc4', 'd5', 'Bb3', 'e6', 'd3', 'Ng5'], ['g4', 'd5', 'e3', 'Nf6', 'g5', 'Bg4', 'f3', 'Bxf3', 'Qxf3', 'Ne4'], ['Nf3', 'd6', 'Nc3', 'e6', 'e4', 'd5', 'e5', 'Nc6', 'Bb5', 'Bd7'], ['d4', 'd5', 'e3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'Bf5', 'b3', 'e6'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'Ne7', 'd4', 'd5', 'Bb5+', 'Bd7'], ['a3', 'd5', 'Nf3', 'e6', 'd4', 'Bd6', 'Nbd2', 'Nf6', 'e3', 'O-O'], ['a3', 'd5', 'Nf3', 'Nc6', 'e3', 'Bg4', 'Be2', 'Nf6', 'O-O', 'e6'], ['a3', 'b6', 'd4', 'c5', 'Nf3', 'Bb7', 'e3', 'cxd4', 'exd4', 'd6'], ['e4', 'Nc6', 'd4', 'Nb8', 'c4', 'Nc6', 'd5', 'Nb8', 'b3', 'Na6'], ['Nf3', 'c6', 'e3', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'd4', 'Bb4'], ['a3', 'c6', 'Nf3', 'd5', 'e3', 'Bf5', 'd4', 'e6', 'Nbd2', 'Nf6'], ['d4', 'Nf6', 'Bf4', 'g6', 'g3', 'Bg7', 'Bg2', 'O-O', 'Nf3', 'd6'], ['d4', 'Nf6', 'Nf3', 'g6', 'e3', 'Bg7', 'Bd3', 'O-O', 'O-O', 'd6'], ['d4', 'Nf6', 'Nc3', 'g6', 'e4', 'Bg7', 'Nf3', 'd6', 'Be3', 'O-O'], ['e4', 'c5', 'Nc3', 'd6', 'f4', 'g6', 'Bc4', 'Bg7', 'd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Bb4', 'c3', 'Bc5', 'd4', 'exd4', 'cxd4', 'Bb4+'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'e5', 'Nd5', 'Bc4', 'Nb6'], ['e4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'g6', 'd3', 'Bg7', 'g3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'd5', 'd3', 'Nc6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'c4', 'Be6', 'Nf3', 'h6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qa4', 'Nf6', 'Nc3', 'Rb8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'a6', 'O-O', 'b5'], ['e4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'g6', 'Bc4', 'Bg7', 'Ng5', 'e6'], ['e4', 'd6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Bc4', 'Nc6', 'Ng5', 'Ne5'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Be2', 'O-O'], ['e4', 'd6', 'd4', 'Nf6', 'd5', 'g6', 'Nc3', 'Bg7', 'f4', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'f5', 'exf5', 'Nce7', 'Nxe5', 'a6'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bg5', 'Bg7', 'Nc3', 'O-O', 'e4', 'd6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Be2', 'O-O'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'Nc6', 'cxd4', 'd6', 'Bb5', 'Qa5+'], ['e4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'g6', 'd4', 'Bg7', 'Bf4', 'Nc6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f3', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'h3', 'O-O', 'Nc3', 'd6'], ['d4', 'd6', 'Nf3', 'e6', 'e3', 'Bd7', 'Bd3', 'f5', 'c4', 'Nc6'], ['d4', 'd5', 'b3', 'Nf6', 'Nc3', 'Nc6', 'Rb1', 'Bf5', 'Nf3', 'e6'], ['e4', 'e6', 'd4', 'd6', 'g3', 'g6', 'Bg2', 'Nf6', 'Nd2', 'Nfd7'], ['d3', 'd5', 'd4', 'c5', 'c3', 'cxd4', 'Qxd4', 'Nc6', 'Qc5', 'e5'], ['d4', 'e6', 'b3', 'Qf6', 'Be3', 'Bc5', 'c3', 'Bb6', 'Nd2', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bd6', 'd5', 'Nd4', 'Nxd4', 'exd4'], ['d3', 'e5', 'e3', 'd5', 'b3', 'a6', 'Nd2', 'h6', 'Rb1', 'Nf6'], ['d4', 'd5', 'b3', 'Nf6', 'Nc3', 'Bf5', 'e3', 'e6', 'Bd3', 'Bb4'], ['e4', 'e5', 'f3', 'f6', 'd3', 'd6', 'c4', 'Be7', 'g4', 'g6'], ['e4', 'e6', 'd4', 'd6', 'Nf3', 'g6', 'Bc4', 'Bg7', 'd5', 'g5'], ['e4', 'e6', 'd4', 'd6', 'c4', 'c6', 'Nc3', 'Be7', 'h3', 'Nf6'], ['d3', 'e6', 'e3', 'd5', 'd4', 'Nf6', 'b3', 'Nc6', 'Nc3', 'Bb4'], ['d4', 'c5', 'c3', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Qb6', 'Bd2', 'Nf6'], ['d3', 'g6', 'e3', 'Nf6', 'Be2', 'Bg7', 'c3', 'O-O', 'Bd2', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nd7', 'dxe5', 'Nc5', 'exd6', 'Bxd6'], ['g3', 'e6', 'Bg2', 'f6', 'Nc3', 'g6', 'd4', 'h6', 'Be3', 'd6'], ['d4', 'd5', 'e3', 'e6', 'c3', 'Nc6', 'Bb5', 'Bd7', 'Na3', 'Nf6'], ['d3', 'e5', 'c4', 'Bc5', 'Qd2', 'Qh4', 'g3', 'Qf6', 'Nf3', 'Nh6'], ['e4', 'e5', 'Qh5', 'd6', 'Bc4', 'g6', 'Qf3', 'Qe7', 'd3', 'h5'], ['d4', 'Nf6', 'e3', 'd5', 'f4', 'e6', 'Bd3', 'Be7', 'Nf3', 'h6'], ['c4', 'Nf6', 'd4', 'Rg8', 'Nc3', 'g6', 'e4', 'Nh5', 'Be2', 'Ng7'], ['d4', 'd5', 'b3', 'c5', 'Nf3', 'Bg4', 'h3', 'Bxf3', 'gxf3', 'Nf6'], ['e4', 'd6', 'Bc4', 'e6', 'Nf3', 'Nd7', 'd4', 'e5', 'dxe5', 'Rb8'], ['d3', 'd5', 'e3', 'e5', 'Nd2', 'f5', 'Rb1', 'c5', 'b3', 'Nf6'], ['d4', 'e5', 'c3', 'exd4', 'Qxd4', 'Nc6', 'Qc4', 'Nf6', 'Bg5', 'h6'], ['e4', 'e6', 'Bc4', 'd6', 'Bb5+', 'Nd7', 'Nh3', 'a6', 'Ba4', 'b6'], ['d3', 'Nf6', 'e3', 'd5', 'g3', 'e5', 'Ne2', 'Nc6', 'Bg2', 'e4'], ['e4', 'e5', 'Nf3', 'Nf6', 'g3', 'Nxe4', 'Qe2', 'd5', 'Bg2', 'Nc6'], ['e4', 'e5', 'Nf3', 'h6', 'Nxe5', 'Qe7', 'd4', 'Nf6', 'Bd3', 'g5'], ['d4', 'Nf6', 'c3', 'g6', 'a3', 'Bg7', 'Nd2', 'O-O', 'Rb1', 'd5'], ['d3', 'e5', 'e3', 'd5', 'Nd2', 'Bb4', 'Rb1', 'Nf6', 'b3', 'Bc3'], ['d4', 'e6', 'c4', 'd6', 'e4', 'Ne7', 'Nc3', 'Rg8', 'd5', 'h6'], ['e4', 'e6', 'Nf3', 'f6', 'Nc3', 'd6', 'd4', 'Bd7', 'Bd3', 'Nc6'], ['d3', 'd5', 'Nc3', 'e5', 'Rb1', 'Nc6', 'a3', 'Nf6', 'Na2', 'Bc5'], ['d4', 'd6', 'Bf4', 'Be6', 'e4', 'f6', 'd5', 'Bc8', 'Nc3', 'Nd7'], ['d3', 'e5', 'c3', 'd5', 'Bd2', 'Bd6', 'b3', 'Be6', 'a3', 'f6'], ['e4', 'e5', 'Bd3', 'Bd6', 'Nf3', 'Nf6', 'O-O', 'Ng4', 'Be2', 'Nxh2'], ['e4', 'e5', 'Nf3', 'Bd6', 'Bc4', 'Nh6', 'd4', 'Nc6', 'Bxh6', 'gxh6'], ['d4', 'd5', 'c3', 'e6', 'Be3', 'Bd6', 'Na3', 'Nf6', 'Nb5', 'O-O'], ['b3', 'e6', 'Bb2', 'f6', 'd3', 'Ne7', 'Nd2', 'Rg8', 'g3', 'g5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'd4', 'd5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Nc3', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'd4', 'd5'], ['Nf3', 'd5', 'g3', 'Nf6', 'Bg2', 'Bg4', 'O-O', 'e6', 'Ne5', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Nc3', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'd3', 'd5', 'exd5', 'Nxd5'], ['e3', 'h5', 'd3', 'Rh6', 'Bd2', 'Rd6', 'Be2', 'e5', 'Nc3', 'Rc6'], ['e3', 'd5', 'g3', 'Nf6', 'b3', 'Nc6', 'Bg2', 'Bf5', 'Bb2', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Be2', 'Be6', 'd3', 'Be7'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nc6', 'Be3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Be2', 'h6', 'd3', 'Nf6', 'Bd2', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Be2', 'd6', 'd3', 'Nf6'], ['Nf3', 'd5', 'g3', 'Nc6', 'Bg2', 'Bf5', 'd4', 'e6', 'O-O', 'Nf6'], ['e4', 'd6', 'Nf3', 'e5', 'a3', 'Bg4', 'Be2', 'Be7', 'h3', 'Bh5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bf5', 'g3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'Bc5', 'Be2', 'd6'], ['d4', 'e6', 'c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Bb4', 'a3', 'Bxc3+'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nc6', 'f3', 'Qxd4', 'fxe4', 'Qxd1+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'h6', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'Nc3', 'Nf6', 'd3', 'g6'], ['e4', 'Nf6', 'd3', 'c5', 'Bg5', 'Nc6', 'Nc3', 'h6', 'Bh4', 'd5'], ['e4', 'c6', 'd3', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nc6', 'Nc3', 'd4'], ['Nc3', 'd5', 'd4', 'Nf6', 'Nf3', 'Bf5', 'Bf4', 'a6', 'e3', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'e6', 'd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Be2', 'Bg4', 'd3', 'Bxf3', 'Bxf3', 'Nf6'], ['e4', 'd6', 'Nf3', 'e5', 'Bb5+', 'c6', 'Ba4', 'b5', 'Bb3', 'Bg4'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bb5', 'e6', 'Nf3', 'Nf6', 'd3', 'a6'], ['e4', 'c6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Nf6', 'Nxf6+', 'exf6'], ['e4', 'd6', 'Nf3', 'e5', 'Nc3', 'Bg4', 'h3', 'Bh5', 'd3', 'Nc6'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nce7', 'Nf3', 'Ng6', 'Nc3', 'Bb4'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Nd7', 'Qe2', 'e6'], ['e4', 'e5', 'Nf3', 'd6', 'd3', 'c5', 'c4', 'Nc6', 'Nc3', 'Qf6'], ['e4', 'd6', 'Nf3', 'c5', 'Bc4', 'Nc6', 'Ng5', 'e6', 'd3', 'Be7'], ['e4', 'd6', 'Nf3', 'e5', 'h3', 'Nf6', 'Nc3', 'Be7', 'Bc4', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'e3', 'Bb4', 'Nf3', 'Bxc3+'], ['d4', 'e6', 'c4', 'd5', 'Nc3', 'Bb4', 'Bf4', 'Bxc3+', 'bxc3', 'dxc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'g6', 'Bc4', 'Nf6', 'Ng5', 'd5'], ['e4', 'c6'], ['g3', 'd5', 'c4', 'dxc4', 'Nc3', 'Be6', 'Bg2', 'Nc6', 'Nf3', 'Nf6'], ['d4', 'd5', 'Nf3', 'Nc6', 'g3', 'Bg4', 'Bg2', 'e6', 'O-O', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'd3', 'd6'], ['e3', 'e5', 'b3', 'Nc6', 'Bb2', 'Nf6', 'Bb5', 'd5', 'Bxc6+', 'bxc6'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nc6', 'f3', 'Nf6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'f5', 'exf5', 'Bxf5', 'Bb5+', 'c6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'Bb5', 'Bd7', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'd4', 'exd4', 'Qxd4', 'Bxf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'd6', 'Re1', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd4', 'd5', 'Bb5', 'dxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd3', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'Nd4', 'Bc4', 'Bc5'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nc6', 'd4', 'd5', 'e5', 'f6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'c6', 'd4', 'Qc7', 'dxe5', 'dxe5'], ['e4', 'e5', 'd3', 'Bc5', 'c4', 'Qf6', 'Ne2', 'Qxf2+', 'Kd2', 'Bb4+'], ['e4', 'e5', 'Bc4', 'Be7', 'Qf3', 'Nh6', 'd3', 'O-O', 'Bxh6', 'Bb4+'], ['e4', 'e5', 'c3', 'Qf6', 'Qg4', 'Bc5', 'f3', 'h5', 'Qg3', 'h4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nce7', 'Nxe5', 'Nf6', 'Nc3', 'b6'], ['e4', 'g6', 'Nf3', 'Bg7', 'd4', 'c5', 'd5', 'd6', 'Nc3', 'Bg4'], ['d4', 'd5', 'e3', 'e6', 'Bb5+', 'c6', 'Bd3', 'Qa5+', 'c3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nce7', 'd4', 'b6', 'Nxe5', 'f6'], ['d4', 'Nf6', 'e3', 'e6', 'Nc3', 'Bb4', 'Bd2', 'c5', 'Nb5', 'Bxd2+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Ne7'], ['e4', 'e5', 'Nf3', 'f6', 'Nc3', 'd6', 'd4', 'Nc6', 'd5', 'Bg4'], ['Nf3', 'Nf6', 'd4', 'd5', 'c3', 'Nc6', 'e3', 'Bg4', 'Bb5', 'a6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qf3', 'Be7', 'Qxf7#'], ['e4', 'e5', 'a3', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'd6', 'd3', 'Be6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nxe4', 'Nxe5', 'd5', 'Nxf7', 'Kxf7'], ['e4', 'e5', 'Qh5', 'Bc5', 'Qxe5+', 'Kf8', 'Qxc5+', 'Qe7'], ['e4', 'e5', 'Bc4', 'h6', 'Qf3', 'Nf6', 'Nh3', 'd6', 'd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'Nc3', 'Bc5', 'g3', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Be6', 'Bb5+', 'c6', 'Ba4', 'b5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'Bd6', 'Qxe4', 'Bxe5'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'c6', 'Bc4', 'Be7', 'O-O', 'h6'], ['e4', 'e5', 'Bc4', 'd5', 'exd5', 'Nf6', 'Bb5+', 'c6', 'dxc6', 'bxc6'], ['e4', 'e6', 'Bc4', 'Bc5', 'd3', 'Qf6', 'Nf3', 'Ne7', 'd4', 'Bb4+'], ['d4', 'Nf6', 'c4', 'e6', 'g3', 'd5', 'Bg2', 'Nc6', 'Nc3', 'Be7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Nge7'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nc6', 'Ngf3', 'Nf6', 'e5', 'Nd7'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nc6', 'Ngf3', 'Nf6', 'e5', 'Nd7'], ['d4', 'd5', 'e3', 'Nf6', 'f4', 'c5', 'Nf3', 'Nc6', 'c3', 'Bf5'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'f5', 'Nc3', 'c6', 'Ne5', 'Nf6'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'Bg5', 'Bf5', 'Bxf6', 'exf6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'a3', 'Bf5', 'Nc3', 'Nc6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'e5', 'Bb5', 'a6'], ['d4', 'd5', 'c4', 'Bf5', 'cxd5', 'Qxd5', 'Nc3', 'Qd7', 'e4', 'Bg4'], ['e4', 'b6', 'd4', 'Bb7', 'f3', 'e6', 'Be3', 'g6', 'Nc3', 'Bg7'], ['b3', 'Nf6', 'Bb2', 'g6', 'e3', 'Bg7', 'Nf3', 'd6', 'd4', 'O-O'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Bg5', 'h6', 'Bh4', 'g5'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'e6', 'dxe6', 'Bxe6', 'Nf3', 'Bd6'], ['d4', 'Nf6', 'c4', 'd6', 'Nc3', 'Nc6', 'Nf3', 'g6', 'Bg5', 'Bg7'], ['d4', 'Nf6', 'c3', 'g6', 'a3', 'd5', 'h3', 'Bg7', 'a4', 'Nc6'], ['e3', 'e5', 'd4', 'exd4', 'exd4', 'd5', 'Bb5+', 'c6', 'Be2', 'Nf6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nf6', 'Nf3', 'h6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'h3', 'd6', 'Nf3', 'O-O'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'f4', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'c3', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'e5', 'f4', 'd5', 'exd5', 'e4', 'Nc3', 'Nf6', 'd3', 'Bb4'], ['e4', 'e5', 'f4', 'd5', 'd4', 'exd4', 'e5', 'c5', 'Nf3', 'Be7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'c6', 'dxe5', 'Qc7', 'exd6', 'Bxd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'c3', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'O-O', 'Na5'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nf6', 'Nf3', 'Bf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Nf6', 'e5', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd6', 'd3', 'a6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'd6', 'c3', 'Bg4', 'h3', 'Bxf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'd4', 'exd4'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f4', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'c3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'd5', 'Bg5', 'Be7', 'exd5', 'Bxg5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['d4', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'e4', 'd6', 'Ne2', 'O-O'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'Qd5', 'Nh3', 'Bxh3', 'Nc3', 'Qc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxd4', 'exd4', 'c3', 'dxc3'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nc3', 'Bg7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Nc3', 'a6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'd6', 'h3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Qc7', 'O-O', 'e6', 'Re1', 'Nf6'], ['e4', 'd5', 'e5', 'e6', 'd4', 'f5', 'c3', 'b6', 'h4', 'c5'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bc4', 'Nf6', 'Nxe5', 'Nxe5', 'Bxf7+', 'Kxf7'], ['e4', 'd5', 'Nc3', 'd4', 'Nce2', 'e5', 'd3', 'Bb4+', 'Bd2', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'Bxf7+', 'Kxf7', 'h3', 'Nf6'], ['c4', 'e5', 'Nc3', 'Nc6', 'e4', 'Nf6', 'g4', 'g5', 'Nf3', 'd6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'h6', 'h3', 'd6', 'Nge2', 'Bd7'], ['e4', 'e5', 'Bc4', 'Bc5', 'd3', 'Qf6', 'Nf3', 'Nc6', 'Bb5', 'Nd4'], ['c4', 'e5', 'g3', 'c6', 'Bg2', 'd5', 'e3', 'e4', 'cxd5', 'cxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Bc5', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'd6', 'dxe5', 'Bg4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Nc6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'Bd6', 'Bg5', 'Qe6', 'd5', 'Qg6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nh3', 'h6', 'f4', 'exf4', 'Nxf4', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Qf6'], ['e4', 'c5', 'f4', 'Nc6', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Bb4', 'a3', 'Bxc3', 'bxc3', 'Nxe4'], ['d4', 'f5', 'Bf4', 'Nf6', 'e3', 'Nc6', 'Bd3', 'e6', 'c3', 'b6'], ['c4', 'c5', 'Nc3', 'Nc6', 'g3', 'b6', 'Bg2', 'Bb7', 'e3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bd6', 'd5', 'Nce7', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'Nxd4'], ['g3', 'd5', 'Bg2', 'Nf6', 'd3', 'Nc6', 'e4', 'd4', 'Nf3', 'Bg4'], ['e4', 'e5', 'Bc4', 'Nf6', 'f3', 'Nc6', 'Ne2', 'Bc5', 'c3', 'O-O'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'd4', 'c6', 'Bd2', 'Qc7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['d4', 'f5', 'Nc3', 'Nf6', 'f3', 'g6', 'e4', 'e6', 'Bd3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Qe2', 'Qe7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Nxe5', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'd4', 'f5'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Qf6'], ['e4', 'g6', 'd4', 'd6', 'Nf3', 'Bg7', 'Be3', 'Nc6', 'Nc3', 'a6'], ['d4', 'f5', 'Qd3', 'd5', 'Nc3', 'Nf6', 'Bg5', 'e6', 'Bxf6', 'Qxf6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nc6', 'Nc3', 'Nxd4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'c6', 'a3', 'd5', 'exd5', 'cxd5'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Qe7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Nc6', 'Bc4', 'e6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Nxe5', 'Qe7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'd4', 'Bg4'], ['e4', 'c5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'Bb5+', 'Nc6', 'e5', 'Ne4'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'Nc6', 'cxd4', 'Bb4+', 'Nc3', 'Bxc3+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nc4', 'Nxe4', 'Qe2', 'Qe7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['e3', 'e5', 'c4', 'Nc6', 'Nc3', 'Nf6', 'Nf3', 'Bb4', 'Qb3', 'Bxc3'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'e5', 'd5', 'c6', 'Bg5', 'cxd5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bf5', 'Bd3', 'Bg4'], ['d4', 'a6', 'e4', 'b5', 'Nf3', 'Bb7', 'Nc3', 'e6', 'Bd3', 'c5'], ['d4', 'c6', 'e4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Bd3', 'Qxd4'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'O-O', 'Bg5', 'd6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'dxc5', 'Bxc5', 'Ngf3', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'a3', 'Nf6', 'Bg5', 'c5', 'dxc5', 'Bxc5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bb5+', 'Bd7', 'Qe2+', 'Be7'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Bf5', 'c4', 'e6', 'Nc3', 'c5'], ['d4', 'Nf6', 'c4', 'e5', 'dxe5', 'Ng4', 'Nf3', 'Nc6', 'Nc3', 'Bc5'], ['d4', 'Nf6', 'c4', 'e5', 'd5', 'Bc5', 'Bg5', 'Bxf2+', 'Kxf2', 'Ne4+'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'e6', 'Nc3', 'Bb4', 'Ne2', 'O-O'], ['d4', 'e6', 'c4', 'd6', 'e4', 'Be7', 'Nf3', 'h6', 'Nc3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'dxc5', 'Bxc5', 'Nf3', 'Nc6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'e6', 'a3', 'Nbd7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'dxc4', 'e4', 'e6'], ['d4', 'Nf6', 'c4', 'd5', 'Nc3', 'dxc4', 'e3', 'a6', 'Bxc4', 'e6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Be3', 'Qb6'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nf6', 'Nc3', 'c6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Qe2+', 'Be7'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'd4', 'cxd4', 'Nxd4', 'Bc5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'e3', 'Bd6', 'Nf3', 'Nd7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'd4', 'Bb4'], ['d4', 'd5', 'c4', 'Bf5', 'Nc3', 'e6', 'Nf3', 'Bb4', 'e3', 'a6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Bg5', 'e6', 'e3', 'h6'], ['d4', 'Nf6', 'c4', 'g6', 'Nf3', 'd5', 'g3', 'Bg7', 'Bg2', 'O-O'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'Nf3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nc6', 'Bf4', 'Bg4'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'Ne2', 'Nc6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'O-O'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'e6', 'e4', 'Nf6', 'Bxc4', 'Bb4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'f4', 'cxd4', 'Qxd4', 'Nc6'], ['d4', 'e6', 'c4', 'Qe7', 'e4', 'd6', 'Nc3', 'h6', 'Nf3', 'Nf6'], ['e4', 'e6', 'Qh5', 'Nf6', 'Qf3', 'd5', 'exd5', 'exd5', 'Nc3', 'Be7'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'Nf3', 'h6'], ['d4', 'g6', 'c4', 'Bg7', 'Nf3', 'Nc6', 'Bf4', 'd6', 'e3', 'Bg4'], ['g3', 'e5', 'Bg2', 'd5', 'c3', 'Nf6', 'Qb3', 'Nc6', 'd3', 'Na5'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'd6', 'Bc4', 'Be7', 'd3', 'O-O'], ['d4', 'Nf6', 'c4', 'd5', 'e3', 'Nc6', 'cxd5', 'Nxd5', 'Nf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'c4', 'Nf6', 'd3', 'Bb4+', 'Bd2', 'd6'], ['e4', 'c5', 'Bc4', 'a6', 'Nc3', 'Nc6', 'Nf3', 'd6', 'd4', 'h6'], ['d4', 'Nf6', 'Nc3', 'd5', 'Nf3', 'Bf5', 'g3', 'e6', 'Bg2', 'Nc6'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxd4', 'exd4', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nce7', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bg4'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'e6', 'd3', 'Nf6', 'Bg5', 'h6'], ['e3', 'e5', 'a3', 'd5', 'b4', 'c6', 'Bb2', 'Bd6', 'Qc1', 'Nf6'], ['d4', 'd5', 'e3', 'Nc6', 'c4', 'Nf6', 'Nc3', 'e6', 'Nf3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'dxe5', 'Qxd8+', 'Nxd8'], ['Nc3', 'e5', 'e4', 'Nc6', 'Nf3', 'Bc5', 'Be2', 'd6', 'O-O', 'Nf6'], ['e4', 'e5', 'Qf3', 'Nc6', 'Bc4', 'f6', 'c3', 'Bc5', 'Qg3', 'g6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Qg6', 'g3', 'Qxe4+', 'Be2', 'd6'], ['e4', 'e5', 'h3', 'Nc6', 'a3', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5'], ['d4', 'd5', 'c4', 'Nf6', 'e3', 'e6', 'Nc3', 'Bb4', 'Ne2', 'b6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxd4', 'exd4', 'Qh5', 'Nh6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Bc5', 'h3', 'Nge7', 'Bc4', 'O-O'], ['d4', 'd5', 'e4', 'Nf6', 'e5', 'Ng8', 'Nf3', 'e6', 'c4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'd3', 'Nxf3+', 'Qxf3', 'f6'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Bf5', 'Nf3', 'e6', 'Bb5', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'a6', 'd3', 'b5', 'Bb3', 'a5'], ['d4', 'd5', 'a3', 'Nf6', 'e3', 'e6', 'Nf3', 'Nc6', 'c4', 'b6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'Nc6', 'Nf3', 'f6'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'e6', 'Bg5', 'h6', 'Bh4', 'g5'], ['d4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'Bg5', 'e6', 'e3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'd6', 'Ng5', 'Nh6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'd3', 'Nf6', 'Ng5', 'O-O'], ['e4', 'Nf6', 'Nc3', 'e6', 'e5', 'Nd5', 'Nxd5', 'exd5', 'd4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxd4', 'exd4', 'Qf3', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'h3', 'O-O'], ['d4', 'f5', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'Nf6', 'a3', 'Bxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'Ng5', 'O-O'], ['d4', 'd5', 'c4', 'Nf6', 'Nf3', 'e6', 'Bf4', 'Nc6', 'e3', 'Ne4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Bg5', 'O-O'], ['e4', 'd6', 'Nf3', 'Bg4', 'h3', 'Bh5', 'Bc4', 'e5', 'd3', 'Nc6'], ['e4', 'e5', 'Bc4', 'Nc6', 'Qf3', 'f6', 'c3', 'Nge7', 'd4', 'exd4'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'exf4', 'Bc4', 'd6', 'O-O', 'a6'], ['c4', 'e5', 'Nc3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'b6', 'e3', 'Bb7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'd3', 'Nf6', 'Ng5', 'O-O'], ['e4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'g6', 'Bc4', 'Bg7', 'Ng5', 'O-O'], ['a3', 'd5', 'g3', 'Nc6', 'Bg2', 'Nf6', 'Nf3', 'g6', 'O-O', 'b6'], ['e4', 'c5', 'Bc4', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'h3', 'Be7'], ['e4', 'c5', 'Bc4', 'e6', 'd3', 'd5', 'exd5', 'exd5', 'Bb5+', 'Nc6'], ['e4', 'g6', 'Bc4', 'e6', 'Nc3', 'c6', 'd3', 'h6', 'Nf3', 'Bg7'], ['e4', 'e5', 'd3', 'Nc6', 'Nf3', 'Bc5', 'Be3', 'Bxe3', 'fxe3', 'd6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'g3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bd3', 'Bb4', 'b3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'f6', 'd4', 'd6', 'Nc3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'c3', 'dxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd4', 'Bg4', 'Bb5', 'a6'], ['e4', 'c5', 'Nf3', 'Nf6', 'Nc3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6'], ['e4', 'd5', 'e5', 'Bf5', 'd4', 'e6', 'g4', 'Bg6', 'Nf3', 'Be4'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bb4', 'd3', 'c6', 'a3', 'Bxc3+'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Nf6', 'Nf3', 'h6', 'h3', 'g5'], ['e4', 'c5', 'Nf3', 'd5', 'Nc3', 'd4', 'Nd5', 'e6', 'Nf4', 'e5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Be7', 'd3', 'O-O', 'Be3', 'c6'], ['e4', 'e5', 'Nf3', 'Bd6', 'd4', 'f6', 'd5', 'b6', 'Bb5', 'Bb7'], ['e3', 'e5', 'c4', 'Nf6', 'Nc3', 'c6', 'Nf3', 'Bd6', 'Qc2', 'Na6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'd6', 'f4', 'Nf6'], ['Nf3', 'Nf6', 'b3', 'd5', 'Bb2', 'c5', 'e3', 'Nc6', 'c4', 'e6'], ['Nf3', 'd5', 'b3', 'Nf6', 'Bb2', 'Bf5', 'g3', 'c5', 'Bg2', 'Nc6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Bg4'], ['d4', 'f5', 'c4', 'Nf6', 'Nf3', 'g6', 'h3', 'Bg7', 'Bf4', 'd6'], ['d4', 'f5', 'c4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Bf4', 'd6'], ['e4', 'e5', 'c4', 'Nf6', 'd3', 'Nc6', 'a3', 'd6', 'h3', 'Be6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Nf3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'd6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'd3', 'Nc6', 'f4', 'd6', 'fxe5', 'dxe5', 'Nf3', 'Bc5'], ['e4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'd3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bc5', 'Nc3', 'd6'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'Nf3', 'd6', 'Bc4', 'd5'], ['e4', 'e5', 'Bc4', 'Bc5', 'a4', 'Nf6', 'Qf3', 'Nc6', 'c3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'd3', 'Nd4'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'd3', 'Nf6', 'h3', 'Bxf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bc4', 'Nf6', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'h6', 'd3', 'd6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Qf3', 'Bc5', 'Nh3', 'h6', 'O-O', 'd6'], ['e4', 'e6', 'd4', 'c6', 'Nc3', 'b5', 'Nf3', 'h6', 'Bf4', 'Na6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd3', 'a6', 'Be3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Be2', 'd6', 'O-O', 'Bg4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'e6', 'Nf3', 'f6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'Be7', 'O-O', 'Ng4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'bxc6', 'Nxe5', 'Ba6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Bf4', 'dxc4', 'e3', 'Bb4+'], ['d4', 'Nf6', 'c4', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Nc3', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'c5', 'Nc3', 'd6', 'Nf3', 'Nc6', 'Bc4', 'e6', 'O-O', 'Be7'], ['c4', 'e5', 'Nc3', 'Nc6', 'g3', 'Nf6', 'Bg2', 'Bc5', 'e3', 'd6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nf6', 'e4', 'Nc6', 'd5', 'Na5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'Nf6', 'Nc3', 'Nxd5', 'Nxd5', 'Qxd5'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'h6', 'Nc3', 'c6', 'O-O', 'b5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Nc3', 'Bd7', 'd4', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'a6', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'c6', 'Nc3', 'Bc5', 'Bc4', 'Nf6', 'h3', 'Qa5'], ['e4', 'e5', 'Nf3', 'Qh4', 'Nxe5', 'Qxe4+', 'Qe2', 'Qxc2', 'Ng6+', 'Be7'], ['e4', 'c5', 'Nc3', 'g6', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'Bg5', 'Be7', 'Nf3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Be2', 'Nf6', 'd3', 'Bc5', 'a3', 'O-O'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'e6', 'Bc4', 'g6', 'd4', 'cxd4'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'Bf5', 'e3', 'Bg4'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'd6', 'Bc4', 'e6', 'O-O', 'Nd7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Be2', 'e6', 'Nf3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'Re1', 'Be7'], ['d4', 'd5', 'c3', 'Nf6', 'Bf4', 'Bf5', 'e3', 'Nbd7', 'Qb3', 'Rb8'], ['e4', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Nxd5', 'Qxd5', 'Nf3', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Ne7', 'd4', 'Bd7'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'd5', 'e5', 'f6', 'd4', 'fxe5'], ['e4', 'c5', 'Nc3', 'e6', 'Bc4', 'Nc6', 'Nf3', 'd6', 'O-O', 'Nf6'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'Nf6', 'Bf4', 'b5', 'Nxb5', 'Qd5'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'a6', 'Qd3', 'Nc6', 'Nf3', 'Nb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Nf6', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'Bd6', 'Nc3', 'Nf6', 'Bc4', 'O-O', 'd4', 'exd4'], ['e4', 'd6', 'Nc3', 'Nf6', 'Nf3', 'c6', 'd4', 'g6', 'Bg5', 'Bg7'], ['Nf3', 'd5', 'd4', 'Nf6', 'Nc3', 'Nc6', 'h3', 'h6', 'Bf4', 'Bf5'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Nc6', 'Bb5', 'Bd7', 'Bxc6', 'bxc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'Bg4', 'Be2', 'Bxf3'], ['Nf3', 'd5', 'd4', 'Nf6', 'Bf4', 'Nc6', 'Nc3', 'Bf5', 'a3', 'e6'], ['e4', 'e6', 'Nf3', 'c5', 'Nc3', 'd6', 'Bc4', 'Nc6', 'O-O', 'Nge7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'Nxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6'], ['e4', 'c6', 'Nf3', 'd5', 'Ne5', 'Nh6', 'd4', 'dxe4', 'Bxh6', 'gxh6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'Bc5', 'Nxe5', 'd6', 'Nc4', 'Bxf2+'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'e6', 'Bg5', 'Bb4+'], ['e4', 'g5', 'Nf3', 'b5', 'Nxg5', 'f6', 'f3', 'fxg5'], ['e4', 'Nc6', 'Nf3', 'd6', 'Bc4', 'e6', 'Nc3', 'Bd7', 'Bb5', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'c6', 'b3', 'Be7', 'Bb2', 'Qc7'], ['e4', 'e5', 'Nf3', 'd5', 'Nxe5', 'dxe4', 'Nc4', 'Bc5', 'd3', 'exd3'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'Bc5', 'Nd5', 'Qd8', 'Ne3', 'Bxe3'], ['e4', 'd5', 'Nc3', 'Nf6', 'e5', 'd4', 'exf6', 'dxc3', 'bxc3', 'exf6'], ['e4', 'c6', 'Nc3', 'd5', 'Nf3', 'd4', 'Ne2', 'c5', 'd3', 'Nf6'], ['e4', 'c6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bxd5', 'Qxd5', 'Nc3', 'Qe5+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'f6'], ['e4', 'c6', 'Bc4', 'd5', 'Bb3', 'dxe4', 'Nc3', 'Nf6', 'f3', 'exf3'], ['e4', 'd5', 'Nf3', 'dxe4', 'Nd4', 'Qxd4', 'c3', 'Qb6', 'd4', 'c5'], ['e4', 'c5', 'Nf3', 'Nf6', 'e5', 'Ng8', 'Nc3', 'd6', 'Bc4', 'dxe5'], ['c4', 'g6', 'g3', 'Bg7', 'Bg2', 'Nc6', 'Nc3', 'e6', 'd3', 'Nge7'], ['d4', 'Nf6', 'Nf3', 'g6', 'e3', 'Bg7', 'Nbd2', 'Nc6', 'Bd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Nf6', 'h3', 'a6'], ['e4', 'c5', 'f4', 'd6', 'h3', 'Nf6', 'e5', 'dxe5', 'fxe5', 'Nfd7'], ['e4', 'c5', 'Bc4', 'd6', 'd3', 'Nf6', 'h3', 'a6', 'a4', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bg4', 'h3', 'Bh5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nd4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'd3', 'g6', 'h3', 'Bg7'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'O-O', 'Nc6'], ['d4', 'Nf6', 'c4', 'g6', 'f3', 'Bg7', 'e4', 'd6', 'Nc3', 'e6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'h3', 'O-O'], ['e4', 'Nc6', 'Nf3', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd6', 'Be2', 'h5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'e5', 'Nd5', 'Nc3', 'Nxc3'], ['c4', 'c5', 'Nf3', 'd6', 'Nc3', 'e6', 'g3', 'Nf6', 'd3', 'h6'], ['d4', 'Nf6', 'Nf3', 'e6', 'Bg5', 'd5', 'e3', 'Be7', 'Bxf6', 'Bxf6'], ['d4', 'Nf6', 'Nc3', 'e6', 'e4', 'Bb4', 'Bd2', 'Bxc3', 'bxc3', 'Nxe4'], ['e4', 'c5', 'Nf3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'a5'], ['e4', 'c5', 'Nf3', 'd6', 'd3', 'g6', 'c3', 'Bg7', 'Be3', 'Nf6'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bb5', 'd6', 'O-O', 'Nf6', 'Re1', 'Be7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'Nxd4', 'Nxd4', 'e5', 'Nf5', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nbxd7'], ['d4', 'Nf6', 'h3', 'e6', 'Nf3', 'd5', 'Bf4', 'c5', 'c3', 'Nc6'], ['c4', 'Nf6', 'Nc3', 'e6', 'a3', 'b6', 'Nf3', 'd5', 'cxd5', 'exd5'], ['d4', 'Nf6', 'e3', 'd5', 'g3', 'Bf5', 'Bd3', 'Bg4', 'Be2', 'Bf5'], ['d4', 'd5', 'c4', 'Nf6', 'Nc3', 'Be6', 'Bg5', 'dxc4', 'Bxf6', 'gxf6'], ['Nf3', 'Nf6', 'Nd4', 'b6', 'e4', 'e5', 'Nf3', 'Nxe4', 'Nxe5', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'O-O', 'Bg4'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'cxd3', 'e6'], ['e4', 'e5', 'Qf3', 'Nf6', 'Be2', 'Nc6', 'c3', 'd6', 'd3', 'Bg4'], ['e4', 'c5', 'Bc4', 'd6', 'Nc3', 'Nf6', 'd4', 'cxd4', 'Qxd4', 'Nc6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'e6', 'Bg5', 'Qa5'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'Bxc4', 'Bxc4', 'Qa4+', 'c6'], ['d4', 'Nf6', 'f3', 'e6', 'e4', 'Nxe4', 'fxe4', 'Qh4+', 'Kd2', 'Qxe4'], ['c4', 'g6', 'Nc3', 'Bg7', 'd4', 'e6', 'e4', 'c5', 'Nf3', 'cxd4'], ['d4', 'Nf6', 'c4', 'e6', 'a3', 'Be7', 'Nc3', 'O-O', 'Bg5', 'd5'], ['e3', 'Nf6', 'Qf3', 'd5', 'd4', 'Bg4', 'Qg3', 'Nc6', 'h3', 'Nb4'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Nf6', 'Bd3', 'Nc6'], ['e3', 'e5', 'd4', 'exd4', 'exd4', 'Nf6', 'Be3', 'd5', 'Nc3', 'Bb4'], ['d4', 'e6', 'e3', 'd5', 'Nf3', 'Nf6', 'h3', 'c6', 'c4', 'Nbd7'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'd4', 'f5', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Nc3', 'd6'], ['e3', 'Nf6', 'h3', 'd5', 'Nf3', 'Bf5', 'Nc3', 'Nc6', 'd4', 'Nb4'], ['e4', 'h5', 'd4', 'd6', 'Nc3', 'Rh6', 'Bxh6', 'Nxh6', 'Qxh5', 'Bg4'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nc6', 'Bb5'], ['e4', 'd5', 'exd5', 'Nf6', 'Nc3', 'Bg4', 'f3', 'Bh5', 'g4', 'Bg6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'd3', 'd6', 'Nd5', 'Nc6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'Qxf3', 'dxe5'], ['e4', 'e5', 'Qf3', 'Nc6', 'Qb3', 'Nd4', 'Qc4', 'b5', 'Qc3', 'Bb4'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'c4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'e6', 'd3', 'Nf6', 'h3', 'Nc6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'e3', 'a6', 'Bd3', 'b5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Qf3', 'Nc6', 'c3', 'Na5', 'Bb5', 'c6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Bc4', 'Bc5', 'Nc3', 'c6', 'O-O', 'g5'], ['e4', 'Nf6', 'e5', 'Nd5', 'c4', 'Nb6', 'd4', 'd5', 'c5', 'Nc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'a6', 'c3', 'Bc5'], ['e4', 'e5', 'Nf3', 'f6', 'Nxe5', 'fxe5', 'Qh5+', 'g6', 'Qxe5+', 'Qe7'], ['e4', 'e5', 'Ne2', 'Nf6', 'd3', 'Bc5', 'f3', 'd6', 'h4', 'h5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Nge2', 'Bg4', 'f3', 'Bf5'], ['e4', 'e5', 'Bc4', 'd5', 'Bxd5', 'f5', 'Qh5+', 'g6', 'Nc3', 'gxh5'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'f3', 'd5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'h3', 'e5', 'Nf3', 'f5'], ['d4', 'f5', 'c4', 'Nf6', 'Nf3', 'g6', 'Nc3', 'Bg7', 'Bf4', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nf6', 'Bb5+', 'Nbd7', 'e5', 'Qa5+'], ['d4', 'd5', 'Bg5', 'h6', 'Bh4', 'Nc6', 'Nf3', 'Nf6', 'e3', 'Bg4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'Nf6', 'Nc3', 'cxd4', 'Nxd4', 'a6'], ['e4', 'c5', 'c3', 'Nf6', 'e5', 'Nd5', 'Bc4', 'e6', 'Nf3', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'e3', 'Ne4', 'Qc2', 'd5'], ['d4', 'g6', 'e4', 'Bg7', 'Nf3', 'd6', 'Be2', 'Nf6', 'Nc3', 'c6'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'd4', 'Nf3', 'Bb4+', 'Bd2', 'Nc6'], ['e4', 'c5', 'f4', 'Nc6', 'Nf3', 'g6', 'Bb5', 'Bg7', 'Bxc6', 'dxc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nf6'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'cxb5', 'a6', 'bxa6', 'g6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd3', 'Bg4', 'h3', 'Bh5'], ['d4', 'e6', 'e4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Bc5', 'Nxf7', 'Qe7'], ['d4', 'd6', 'e4', 'c6', 'Nf3', 'Qc7', 'Nc3', 'Nd7', 'Bc4', 'e5'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Nxd5', 'e4', 'Nb6', 'Nc3', 'e6'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'Nf3', 'Bb4', 'e5', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'O-O', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'Nxe5', 'Qe7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'g6', 'd4', 'cxd4'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'e5', 'Bxc4', 'exd4', 'Qh5', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'Nc3', 'Be7', 'h3', 'a6'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Nf6', 'Nf3', 'a6', 'c3', 'Bg4'], ['e3', 'e5', 'Nc3', 'd5', 'Nf3', 'e4', 'Nd4', 'Nf6', 'h3', 'c5'], ['e4', 'c5', 'Nf3', 'd6', 'h3', 'a6', 'd4', 'cxd4', 'Nxd4', 'Nc6'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'Nc6', 'Nc3', 'Bg4', 'Ng5', 'Bxd1'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'd3', 'Bd6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Ne7', 'Bg5', 'f6'], ['e4', 'd6', 'd4', 'e6', 'Bc4', 'Ne7', 'Bg5', 'h6', 'Bh4', 'g5'], ['e4', 'c5', 'b4', 'cxb4', 'a3', 'bxa3', 'Nxa3', 'e5', 'Nf3', 'Nc6'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nce7', 'Bg5', 'h6', 'Bh4', 'd6'], ['d4', 'd5', 'Bf4', 'Nf6', 'Nf3', 'Nc6', 'e3', 'a6', 'c3', 'Bg4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'h3', 'Nf6', 'Nc3', 'Be7'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Nxd5', 'Bc4', 'Nc6', 'Qf3', 'Ncb4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'g6'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'Nf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e5', 'Bc4', 'd6', 'h3', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxe5', 'Qg5', 'Nxf7', 'Qxg2'], ['d4', 'd5', 'e3', 'Nf6', 'Nd2', 'Bg4', 'Be2', 'Bxe2', 'Qxe2', 'Nc6'], ['e4', 'e5', 'd4', 'd6', 'dxe5', 'Nc6', 'exd6', 'Bxd6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Be2', 'Bxf3', 'Bxf3', 'Nc6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'Qe7', 'Nxc3', 'Nf6'], ['e4', 'c5', 'f4', 'e6', 'Nc3', 'Nc6', 'Bb5', 'Qc7', 'Bxc6', 'Qxc6'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'Bc5', 'Bxf7+', 'Kf8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'f6', 'dxe5', 'Nxe5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bc4', 'Na5', 'Na3', 'g6', 'c3', 'Bg7'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Nf6', 'Nc3', 'a6', 'Qf3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bb6', 'Bb2', 'd6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Nc6', 'c3', 'Bc5', 'Be3', 'Bxe3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bxb4', 'c3', 'Ba5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'O-O', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'exd4', 'O-O', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'Bc5', 'Nxf7', 'Bxf2+'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'c4', 'dxc4'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nc6', 'Bc4', 'e6', 'O-O', 'a6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'Qe7', 'Qxe4', 'd6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'Bd3', 'c5', 'a3', 'Bxc3+'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'f3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'g6', 'Bc4', 'Bg7'], ['c4', 'e5', 'Nc3', 'c6', 'Nf3', 'd6', 'e4', 'Be6', 'd3', 'h6'], ['e4', 'c5', 'b3', 'Nc6', 'Bb2', 'Nf6', 'e5', 'Nd5', 'Nf3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'Re1', 'Nd6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'h6', 'c4', 'e6'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'd5', 'exd5', 'exd5', 'd4', 'c4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'Nc3', 'a6', 'Ba4', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'a6', 'Ba4', 'Bc5'], ['e4', 'b6', 'Nf3', 'Bb7', 'Nc3', 'Nf6', 'd3', 'e6', 'Bg5', 'Be7'], ['d4', 'd5', 'e3', 'Nc6', 'c3', 'Nf6', 'Ne2', 'Bf5', 'Nd2', 'e6'], ['c4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'd4', 'exd4', 'Na4', 'd6'], ['e4', 'e5', 'Qh5', 'g6', 'Qxe5+', 'Be7', 'Qxh8', 'Bf6', 'Qxg8+', 'Ke7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Bg4'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'Nc3', 'g6', 'd4', 'e5'], ['e4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'e6', 'Bb5', 'c6', 'Bc4', 'b5'], ['e4', 'c6', 'Nf3', 'f6', 'Bc4', 'd5', 'exd5', 'cxd5', 'Bb3', 'Nc6'], ['e4', 'c5', 'Bc4', 'Nf6', 'Qf3', 'd6', 'h3', 'e6', 'b3', 'd5'], ['e4', 'c6', 'Nf3', 'd5', 'Nc3', 'f6', 'd3', 'e5', 'exd5', 'cxd5'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bc4', 'h6', 'd3', 'Nf6', 'Nc3', 'a6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'b6', 'Nf3', 'f6'], ['e3', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Nd5', 'Bg4', 'h3', 'Bxf3'], ['d4', 'd5', 'e3', 'Nf6', 'c4', 'e6', 'b3', 'Bb4+', 'Bd2', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qc4', 'Bxc4', 'Be6', 'Bxe6', 'fxe6'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'Bd3', 'd6', 'c4', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Bg5', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bc4', 'Nh6', 'd3', 'Nd4'], ['e4', 'e5', 'Nf3', 'Qe7', 'Nc3', 'd6', 'Bc4', 'Qf6', 'd3', 'b6'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Nc6', 'Nc3', 'Nb4', 'Nd5', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Qe7', 'a3', 'Nf6', 'd3', 'h6'], ['e4', 'e5', 'Nf3', 'a5', 'Bd3', 'c6', 'Nc3', 'd6', 'h3', 'b5'], ['e4', 'e5', 'd3', 'Nc6', 'Nf3', 'f6', 'c4', 'a6', 'a3', 'Nd4'], ['e4', 'c5', 'e5', 'e6', 'Nf3', 'd6', 'd3', 'dxe5', 'Nxe5', 'c4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'd3', 'a6', 'Ng5', 'Be6'], ['a4', 'Nc6', 'e3', 'e5', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'a5', 'Bd6'], ['e4', 'a5', 'd4', 'a4', 'a3', 'h5', 'e5', 'h4', 'Nf3', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Nf6', 'd3', 'h6', 'Nc3', 'c6'], ['e4', 'e5', 'Nf3', 'd6', 'h3', 'Nf6', 'd3', 'Nc6', 'Nc3', 'Nd4'], ['g3', 'e5', 'Bg2', 'Nc6', 'h4', 'd5', 'e4', 'd4', 'd3', 'Nf6'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nc6', 'Bc4', 'Qe7', 'd3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'h3', 'Nf6', 'd3', 'h6', 'Nc3', 'Ng8'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Nc6', 'e3', 'Ne4', 'Na3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'h3', 'Nf6', 'd3', 'd6', 'Nc3', 'Be6'], ['e4', 'e5', 'Nc3', 'd6', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'e5', 'Qf3', 'Nf6', 'Bc4', 'Nc6', 'c3', 'd6', 'Nh3', 'Bg4'], ['e4', 'd5', 'd3', 'd4', 'Nf3', 'Bg4', 'Be2', 'c5', 'Ne5', 'Bxe2'], ['e4', 'b6', 'e5', 'e6', 'd4', 'Nc6', 'Nf3', 'Bb7', 'Nc3', 'Nge7'], ['f4', 'e6', 'd4', 'd5', 'Nf3', 'Nf6', 'e3', 'h6', 'Bd3', 'Nc6'], ['Nf3', 'e6', 'Nc3', 'd5', 'a3', 'Nc6', 'd4', 'a6', 'e4', 'dxe4'], ['f4', 'e6', 'Nf3', 'Nf6', 'd4', 'Ne4', 'Be3', 'd5', 'Nc3', 'Nc6'], ['f4', 'e6', 'Nf3', 'Qf6', 'e3', 'Nc6', 'd4', 'd5', 'Bd3', 'Nb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'Nc3', 'Bb4', 'Bd2', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nc6', 'dxe5', 'Nxe5', 'Nxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'Nc3', 'Bc5', 'Be3', 'Bb4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'f5', 'exf5', 'Bxf5', 'dxe5', 'dxe5'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'e6', 'Bb5', 'Qd7', 'Ne5', 'Qd6'], ['e4', 'e5', 'Nf3', 'd6', 'd3', 'Bg4', 'h3', 'Bh5', 'g4', 'Bg6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Qf6', 'd5', 'Bd7', 'h3', 'h6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Qe7', 'Nc3', 'Nf6', 'd4', 'Be6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'Nc6', 'h3', 'Bc5', 'Nc3', 'a6'], ['d4', 'd5', 'Qd3', 'Nc6', 'c3', 'Nf6', 'f3', 'e6', 'b3', 'a6'], ['e4', 'd5', 'd3', 'Nf6', 'e5', 'Nfd7', 'Nf3', 'Nc6', 'd4', 'f6'], ['b3', 'e5', 'Bb2', 'e4', 'd3', 'd5', 'Nd2', 'Nf6', 'd4', 'Ng4'], ['e4', 'c5', 'd3', 'Nc6', 'Nc3', 'e6', 'Nf3', 'a6', 'a3', 'd6'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'cxb5', 'a6', 'Nc3', 'd6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'g4', 'Be4', 'f3', 'Bg6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'Bb4+', 'Bd2', 'Qe7', 'a3', 'Bxd2+'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'e6', 'Bg5', 'Nbd7'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'd5'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['d4', 'e6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'Nc6', 'Nf3', 'Nge7'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Nf6', 'Nf3', 'e6', 'cxd5', 'exd5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Bg5', 'd6', 'e3', 'O-O'], ['d4', 'g6', 'c4', 'f5', 'Nc3', 'Nf6', 'Qc2', 'Bg7', 'Nf3', 'd6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['d4', 'd5', 'c4', 'Nc6', 'cxd5', 'Qxd5', 'e3', 'e5', 'Nc3', 'Bb4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'f5', 'Nf3', 'c6', 'g3', 'Bd6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Nc5', 'b6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'Nc3', 'Bb4', 'a3', 'Bxc3+'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qa4', 'Bd7'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nc6', 'Bxc4', 'e5', 'Qb3', 'Be6'], ['c4', 'Nf6', 'Nc3', 'c5', 'Nf3', 'Nc6', 'e3', 'g6', 'd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'c4', 'Bg7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'dxc4', 'a4', 'Bf5'], ['c4', 'd5', 'cxd5', 'Nf6', 'Nf3', 'Nxd5', 'd4', 'Nc6', 'e4', 'Nf6'], ['e4', 'c5', 'Nc3', 'Nc6', 'f4', 'g6', 'Nf3', 'Bg7', 'Bb5', 'Nd4'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Nxd5', 'Nf3', 'g6', 'c4', 'Nb6'], ['c4', 'e5', 'Nc3', 'Nf6', 'a3', 'd5', 'e3', 'd4', 'Nce2', 'c5'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Bf5', 'cxd5', 'cxd5', 'Qb3', 'Qb6'], ['c4', 'e5', 'Nc3', 'Bb4', 'Nd5', 'a5', 'a3', 'Bc5', 'Nf3', 'c6'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'c4', 'Bg7'], ['e4', 'c5', 'Nf3', 'g6', 'c3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'Bg7'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'e3', 'Bf5', 'Nc3', 'e6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'e3', 'e6', 'Nc3', 'Bd6'], ['c4', 'Nf6', 'Nc3', 'e6', 'a3', 'b6', 'Nf3', 'Bb7', 'd4', 'Be7'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'cxd5', 'cxd5', 'Bf4', 'Nc6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'h4', 'h6', 'g4', 'Bd7'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'exd5', 'exd5', 'Nf3', 'Bg4'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'e3', 'Bb4', 'Be2', 'e4'], ['e4', 'c5', 'Nf3', 'g6', 'Bc4', 'e6', 'Nc3', 'Bg7', 'O-O', 'Nc6'], ['e4', 'c5', 'Nf3', 'g6', 'c3', 'Bg7', 'd4', 'cxd4', 'cxd4', 'Nf6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'dxc4', 'e3', 'b5', 'a4', 'e6'], ['c4', 'g6', 'Nc3', 'c5', 'Nf3', 'Bg7', 'e3', 'Nf6', 'd4', 'cxd4'], ['c4', 'Nf6', 'd4', 'c5', 'd5', 'e6', 'Nc3', 'exd5', 'cxd5', 'd6'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'dxc4', 'a4', 'Nf6', 'Nc3', 'Bf5'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'Nc6', 'Nf3', 'e6'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['c4', 'e5', 'e4', 'Nf6', 'Nc3', 'Bb4', 'd3', 'O-O', 'Nf3', 'd6'], ['c4', 'c5', 'Nc3', 'g6', 'Nf3', 'Bg7', 'e3', 'Nc6', 'd4', 'cxd4'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nxc6', 'bxc6'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Nc3', 'g6'], ['c4', 'Nc6', 'Nc3', 'e6', 'e4', 'a6', 'd4', 'h6', 'Nf3', 'Nge7'], ['c4', 'e6', 'Nc3', 'Ne7', 'e4', 'Ng6', 'd4', 'Nh4', 'Nf3', 'b6'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nb5', 'Qa5+'], ['f4', 'c5', 'Nf3', 'd6', 'Nc3'], ['e3', 'e5', 'Qf3', 'd5', 'd3', 'Nf6', 'c4', 'Bg4', 'Qg3', 'dxc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'Nge7', 'Nc3', 'd6'], ['e4', 'd6', 'c3', 'Nf6', 'e5', 'dxe5', 'Nf3', 'Nc6', 'Bc4', 'e4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4', 'Qxd4', 'f6'], ['e4', 'd5', 'e5', 'Bf5', 'd4', 'Nd7', 'Bd3', 'Bxd3', 'Qxd3', 'c5'], ['e4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'g6', 'd4', 'Bg7', 'h3', 'O-O'], ['d4', 'd5', 'e3', 'e6', 'c4', 'c5', 'cxd5', 'exd5', 'dxc5', 'Bxc5'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c6', 'e3', 'Nf6', 'Nf3', 'b6'], ['d4', 'e6', 'e4', 'd5', 'Nc3', 'g6', 'Nf3', 'Bg7', 'exd5', 'exd5'], ['e4', 'c5', 'Bc4', 'Nc6', 'a4', 'g6', 'd3', 'Bg7', 'c3', 'd6'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'Nf6'], ['e4', 'c5', 'c3', 'Nc6', 'Nf3', 'd6', 'd4', 'cxd4', 'cxd4', 'Bg4'], ['e4', 'd5', 'exd5', 'c6', 'dxc6', 'Nxc6', 'Nf3', 'Bg4', 'Bb5', 'Nf6'], ['e4', 'e6', 'Bc4', 'Nc6', 'd3', 'Ne5', 'Bb3', 'd5', 'exd5', 'exd5'], ['d4', 'Nf6', 'c4', 'e6', 'e3', 'd5', 'Nf3', 'c6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'O-O', 'Bxf3', 'Qxf3', 'Qf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'Bc4', 'Bg7'], ['e4', 'c5', 'c3', 'g6', 'Nf3', 'Bg7', 'd4', 'cxd4', 'cxd4', 'd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'e6', 'd4', 'd5', 'exd5', 'exd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'c4', 'Bxc4', 'g6', 'd5', 'Na5'], ['e3', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'c5', 'Nc3', 'd6', 'Nf3', 'Nf6', 'e5', 'dxe5', 'Nxe5', 'Qc7'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'Nf3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['d4', 'Nf6', 'e3', 'e6', 'g3', 'd5', 'Bg2', 'Bd6', 'c3', 'O-O'], ['e4', 'c5', 'f4', 'Nc6', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f4', 'O-O'], ['d4', 'd5', 'e4', 'dxe4', 'Nc3', 'Nf6', 'f3', 'Bf5', 'fxe4', 'Nxe4'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nxc3'], ['d4', 'Nf6', 'Nc3', 'e6', 'e4', 'd6', 'Bg5', 'h6', 'Bh4', 'g5'], ['d4', 'f5', 'e3', 'Nf6', 'Nf3', 'e6', 'Bd3', 'Be7', 'O-O', 'b6'], ['d4', 'Nf6', 'Nf3', 'e6', 'Bg5', 'h6', 'Bh4', 'g5', 'Bg3', 'Nd5'], ['d4', 'Nf6', 'Bg5', 'c5', 'Bxf6', 'gxf6', 'e3', 'cxd4', 'exd4', 'Qb6'], ['d4', 'f5', 'Nf3', 'e6', 'e3', 'Be7', 'Be2', 'Nf6', 'Ne5', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'e3', 'c6', 'Qc2', 'Bb4'], ['d4', 'c5', 'c3', 'cxd4', 'cxd4', 'e6', 'e4', 'Nf6', 'e5', 'Nd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Bg4', 'Be2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'e6', 'd4', 'a6', 'Nf3', 'h6', 'Bc4', 'Nf6', 'Nc3', 'b5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bb6', 'O-O', 'Nf6'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'c5', 'd5', 'exd5', 'cxd5', 'd6'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'Nc3', 'b4', 'Nb1', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'a6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'Qc7'], ['Nf3', 'Nf6', 'd4', 'e6', 'c4', 'c5', 'd5', 'exd5', 'cxd5', 'd6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'a3', 'Nf6', 'Nc3', 'd6'], ['e4', 'c5', 'c3', 'Nc6', 'd4', 'cxd4', 'cxd4', 'd5', 'exd5', 'Qxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'd4', 'Na5', 'Nxe5', 'Nxc4'], ['g3', 'e5', 'c4', 'Nf6', 'Nc3', 'Bb4', 'Nf3', 'e4', 'Nd4', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'Nc3', 'Nxc3'], ['e4', 'c5', 'Nc3', 'd6', 'f4', 'Nc6', 'Nf3', 'Nf6', 'Bb5', 'Bd7'], ['e4', 'g6', 'd4', 'c5', 'd5', 'd6', 'c4', 'Bg7', 'Nc3', 'Nh6'], ['e4', 'c5', 'f4', 'Nc6', 'Nf3', 'g6', 'Bc4', 'Bg7', 'Nc3', 'e6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Qc7', 'Nc3', 'Nf6'], ['d4', 'Nf6', 'Bf4', 'c5', 'e3', 'e6', 'c3', 'Nc6', 'Nd2', 'd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'e5'], ['d4', 'Nf6', 'Nf3', 'e6', 'e3', 'd5', 'Bd3', 'c5', 'c3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qc3', 'e6', 'a3', 'Nf6'], ['d4', 'd5', 'Nf3', 'Bg4', 'g3', 'Bxf3', 'exf3', 'Nc6', 'Bg2', 'e5'], ['e4', 'd5', 'e5', 'e6', 'd4', 'Nc6', 'Nf3', 'Bb4+', 'c3', 'Ba5'], ['b4', 'e6', 'Bb2', 'd6', 'b5', 'b6', 'e4', 'Nf6', 'Bxf6', 'Qxf6'], ['d4', 'c5', 'dxc5', 'Qa5+', 'Bd2', 'Qxc5', 'e3', 'Qc7', 'Nf3', 'b6'], ['d4', 'Nf6', 'c4', 'd5', 'Nf3', 'dxc4', 'e3', 'e6', 'Bxc4', 'c5'], ['d4', 'f5', 'c4', 'Nf6', 'e3', 'g6', 'Nf3', 'Bg7', 'Nc3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['d4', 'b5', 'Nf3', 'g5', 'e3', 'f6', 'Bxb5', 'c6', 'Be2', 'e5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'Nc6', 'Nf3', 'd5', 'c4', 'Bg4', 'e3', 'Qd6', 'Be2', 'dxc4'], ['d4', 'd5', 'c4', 'e6', 'e3', 'Nf6', 'Nc3', 'Be7', 'Nf3', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'c6', 'a3', 'dxc4', 'Nc3', 'b5'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'exd5', 'Qxd5', 'c4', 'Qxd4'], ['d4', 'd5', 'c4', 'dxc4', 'Nc3', 'e5', 'd5', 'Bb4', 'e4', 'b5'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'd5'], ['e4', 'e6', 'e5', 'd5', 'd4', 'c5', 'Be3', 'Nc6', 'c3', 'Nge7'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'b3', 'g6', 'Bb2', 'bxc4'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'Bg5', 'Bb7', 'Nc3', 'Bb4'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'Bg5', 'Be7', 'Nc3', 'd5'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'Bg5', 'Be7', 'Nc3', 'Bb7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Bf5', 'Nf3', 'e6', 'a3', 'b6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['d4', 'g6', 'c4', 'Bg7', 'Nc3', 'd6', 'e4', 'Nf6', 'Be3', 'O-O'], ['d4', 'b5', 'e4', 'g6', 'c4', 'b4', 'Nf3', 'a5', 'a3', 'e5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'd5', 'c5', 'b6'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Bg5', 'dxc4', 'Nc3', 'Nbd7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Be2', 'Nf6', 'O-O', 'Bd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f3', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'c5', 'b6', 'cxb6', 'cxb6'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb3', 'Nf6', 'h3', 'Bf5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'c5', 'b4', 'cxb4', 'a3', 'e6', 'axb4', 'Bxb4', 'c3', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'g3', 'Nc6', 'Bg2', 'e6'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nf6', 'Bd3', 'Bg4', 'Bc2', 'Bh5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'c3', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nc6', 'Bd3', 'Bg4', 'Bc2', 'Nf6'], ['e4', 'c5', 'Bc4', 'e6', 'Nf3', 'a6', 'd3', 'd5', 'exd5', 'exd5'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'c5', 'd5', 'exd5', 'cxd5', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Nf3', 'Nc6'], ['Nf3', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'g3', 'd6', 'Bg2', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'c5', 'd5', 'd6', 'Nc3', 'exd5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['d4', 'Nf6', 'Bf4', 'e6', 'e3', 'c5', 'Nf3', 'b6', 'Bd3', 'Bb7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'Nf6', 'Bf4', 'e6', 'e3', 'c5', 'Nf3', 'Nc6', 'Nbd2', 'd5'], ['e4', 'd5', 'exd5', 'Nf6', 'Nf3', 'Qxd5', 'd4', 'Bg4', 'Be2', 'Nc6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'Be2', 'Bb4+'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['b3', 'd5', 'Bb2', 'Nf6', 'd4', 'Bf5', 'e3', 'e6', 'c4', 'c6'], ['d4', 'Nf6', 'Nf3', 'e6', 'Bg5', 'h6', 'Bxf6', 'Qxf6', 'e4', 'd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'g3', 'O-O', 'Bg2', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['e4', 'e6', 'd4', 'c5', 'Nf3', 'Qa5+', 'c3', 'Nc6', 'Bd2', 'Qb6'], ['c4', 'c6', 'd3', 'd5', 'cxd5', 'cxd5', 'e3', 'Nf6', 'Nf3', 'Nc6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Nxc3', 'e6', 'Bc4', 'Bb4'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nf6', 'Nc3', 'Nc6'], ['c4', 'f5', 'g3', 'Nf6', 'Bg2', 'e6', 'Nc3', 'Bb4', 'Qc2', 'O-O'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'Bg4', 'd4', 'Qe6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'g5', 'd4', 'g4', 'Bg5', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'd4', 'Nf6', 'Bg5', 'h6'], ['e4', 'Nf6', 'Nc3', 'e5', 'Bc4', 'Bc5', 'Qf3', 'd6', 'Nd5', 'Be6'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'c4', 'Nb6', 'f4', 'g6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'O-O', 'Bd7', 'c3', 'h6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'Ng5', 'O-O'], ['b4', 'Nf6', 'Bb2', 'e5', 'Bxe5', 'Bxb4', 'Bc3', 'Bxc3', 'Nxc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nge7', 'd4', 'exd4'], ['e4', 'Nf6', 'e5', 'Nd5', 'Bc4', 'c6', 'Nc3', 'Nb6', 'Bb3', 'g6'], ['e4', 'Nc6', 'Nf3', 'f5', 'd3', 'fxe4', 'dxe4', 'Nf6', 'e5', 'Ng8'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'b6', 'e3', 'Be7'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e3', 'h6'], ['d4', 'Nf6', 'c4', 'g6', 'Nf3', 'd5', 'e3', 'Bg7', 'Nc3', 'O-O'], ['d4', 'Nf6', 'c4', 'g6', 'e3', 'Bg7', 'Nf3', 'O-O', 'Be2', 'Re8'], ['d4', 'Nf6', 'c4', 'g6', 'e3', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Bg7'], ['d4', 'Nf6', 'c4', 'e6', 'e3', 'c5', 'Nf3', 'Nc6', 'Nc3', 'd5'], ['d4', 'd5', 'Nf3', 'e6', 'Nbd2', 'Nf6', 'e3', 'c5', 'Bd3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'exd5', 'Qxd5', 'dxc5', 'Bxc5'], ['d4', 'b5', 'e4', 'Bb7', 'Nd2', 'e6', 'Bxb5', 'c5', 'dxc5', 'Bxc5'], ['Nf3', 'd5', 'c4', 'e6', 'b3', 'Nf6', 'Bb2', 'g6', 'd3', 'Bg7'], ['d4', 'Nf6', 'c4', 'd6', 'Nf3', 'Nbd7', 'g3', 'e5', 'dxe5', 'Nxe5'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'e3', 'Bb7', 'Be2', 'Be7'], ['d4', 'g6', 'c4', 'Bg7', 'g3', 'd6', 'Bg2', 'Nf6', 'Nc3', 'Nbd7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e6', 'd3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Qe7', 'Qxe7+', 'Bxe7'], ['d4', 'd5', 'c4', 'c6', 'e3', 'Bf5', 'Bd3', 'Be6', 'cxd5', 'Bxd5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'Nce2', 'c5'], ['e3', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'd4', 'c5', 'Bd3', 'cxd4'], ['e4', 'e5', 'f3', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bc5', 'Nge2', 'O-O'], ['e4', 'e5', 'd4', 'exd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'Nf6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'd3', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'd3', 'd6', 'Nc3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'b6', 'Rf1', 'Bb7', 'Nc3', 'Bb4'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6', 'Bd3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'O-O', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'g6', 'Nxe5', 'f5', 'exf5', 'gxf5', 'Be2', 'd6'], ['d4', 'd5', 'e3', 'e6', 'Bb5+', 'c6', 'Ba4', 'b5', 'Bb3', 'Bd6'], ['d4', 'd5', 'e3', 'e6', 'Bd2', 'Nf6', 'Be2', 'Bd6', 'Nf3', 'O-O'], ['e4', 'Nf6', 'Nc3', 'd6', 'Nf3', 'Bg4', 'h3', 'Be6', 'd4', 'Na6'], ['e4', 'e5', 'Nf3', 'c6', 'Nxe5', 'Qe7', 'd4', 'd6', 'Nf3', 'Qxe4+'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'd3', 'Bg7'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'd4', 'a6', 'Bxc6+', 'bxc6'], ['g3', 'e5', 'e4', 'Nf6', 'Bg2', 'Bc5', 'a3', 'a5', 'Nc3', 'd6'], ['d4', 'd5', 'e3', 'Nf6', 'h3', 'e6', 'a3', 'Bd6', 'c4', 'c6'], ['e3', 'e6', 'Qf3', 'Nf6', 'Nc3', 'Nc6', 'Nb5', 'a6', 'Nd4', 'Nxd4'], ['e4', 'e6', 'd4', 'Qh4', 'Nc3', 'Nf6', 'e5', 'Ne4', 'Nf3', 'Qxf2#'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'Nf6', 'Nc3', 'Nb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be6', 'Bxe6', 'fxe6', 'd3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'c6', 'd4', 'e6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Nc3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'Nc3', 'Be7'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd5', 'Nf6', 'Qc4', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'f6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'Nc6', 'Ng5', 'Qe7'], ['e3', 'e5', 'd4', 'exd4', 'exd4', 'Nf6', 'Nf3', 'Nc6', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Ng5', 'O-O'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'Nxe5', 'Nxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'Nc3', 'Bg4', 'h3', 'Bh5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nf6', 'd3', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe5+', 'Be2', 'e6', 'Nf3', 'Qa5'], ['h4', 'e5', 'a4', 'd5', 'b4', 'Nc6', 'b5', 'Na5', 'g4', 'a6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Be7', 'd3', 'Nf6', 'Ng5', 'O-O'], ['d4', 'e6', 'Bf4', 'Nf6', 'Nc3', 'd5', 'Qd3', 'c5', 'dxc5', 'Bxc5'], ['e4', 'e6', 'f4', 'd5', 'exd5', 'exd5', 'd4', 'Nf6', 'Nf3', 'Be7'], ['e3', 'e5', 'c3', 'Nf6', 'd4', 'exd4', 'Qxd4', 'd5', 'Nf3', 'Nc6'], ['e4', 'e6', 'e5', 'd5', 'd4', 'c5', 'dxc5', 'Bxc5', 'Nc3', 'Qb6'], ['e4', 'Nf6'], ['e4', 'c5'], ['e4', 'e5'], ['h3', 'b6'], ['e4', 'd5'], ['e4', 'e5'], ['d4', 'e6'], ['d3', 'e6'], ['e4', 'd6'], ['e4', 'e6'], ['e4', 'e5'], ['d3', 'e5'], ['e4', 'a5'], ['h4', 'd5'], ['e4', 'a5'], ['g4', 'e5', 'f4'], ['e4', 'e6'], ['Nf3', 'Nf6', 'c4', 'd5', 'd3', 'Bf5', 'cxd5', 'c6', 'g3', 'cxd5'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Bd7'], ['c4', 'e6', 'e4', 'd5', 'cxd5', 'exd5', 'exd5', 'Nf6', 'Nf3', 'Nxd5'], ['c4', 'f5', 'Nc3', 'Nf6', 'd3', 'e6', 'e4'], ['c4', 'f5', 'd3', 'Nf6', 'Nf3', 'e6', 'Nc3', 'c6', 'e4', 'd5'], ['b4', 'f5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'g6', 'Bxc6', 'bxc6', 'O-O', 'Bg7'], ['d4', 'f5', 'g3', 'Nf6', 'Bg2', 'g6', 'Nf3', 'Bg7', 'O-O', 'O-O'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'Be2', 'Qb6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'g6', 'Bxc6', 'bxc6', 'O-O', 'Bg7'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'Bd3', 'c5'], ['e4', 'd5', 'exd5', 'Nf6', 'd4', 'Nxd5', 'c4', 'Nf6', 'Nf3', 'e6'], ['Nf3', 'f5', 'e4', 'fxe4', 'Ng5', 'Nf6', 'Nc3', 'd5', 'Be2', 'g6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'e6', 'Be2', 'f6'], ['e4', 'e6', 'c4', 'd5', 'cxd5', 'exd5', 'exd5', 'Nf6', 'Nf3', 'Nxd5'], ['c4', 'f5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Nf6', 'Re1', 'e5'], ['c4', 'f5', 'Nc3', 'Nf6', 'd3', 'g6', 'f3', 'Bg7', 'e4', 'd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'g6', 'O-O', 'Bg7', 'c3', 'd5'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'Nf6', 'e5', 'Ng4', 'd4', 'Nc6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'b5'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'g6', 'c4', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'O-O', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'Re1', 'Nd6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'e5', 'Ng4', 'Bxc6', 'bxc6'], ['c4', 'f5', 'Nc3', 'e6', 'e4', 'fxe4', 'Nxe4', 'Nf6', 'Bd3', 'Nc6'], ['c4', 'e6', 'Nc3', 'f5', 'e4', 'fxe4', 'Nxe4', 'Nc6', 'd4', 'd6'], ['d4', 'f5', 'e4', 'fxe4', 'f3', 'e6', 'Bf4', 'd5', 'fxe4', 'Qh4+'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Nf3', 'd5', 'e3', 'c5'], ['b4', 'd5', 'c4', 'dxc4', 'e4', 'b5', 'Nc3', 'c6', 'a4', 'Bb7'], ['e4', 'c6', 'c4', 'd5', 'cxd5', 'cxd5', 'exd5', 'Nf6', 'Nf3', 'Nxd5'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'Bd3', 'c5'], ['e4', 'e6', 'c4', 'd5', 'cxd5', 'exd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8'], ['Nf3', 'e6', 'c4', 'f5', 'Nc3', 'Nf6', 'd3', 'c6', 'e4', 'd5'], ['c4', 'e6', 'f4', 'f5', 'Nc3', 'Nf6', 'd3', 'b6', 'e4', 'fxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Bg4', 'Bf4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'c3', 'd6', 'd4', 'exd4'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'Nf3', 'Nc6'], ['d4', 'e6', 'a3', 'd5', 'b4', 'Be7', 'Nf3', 'Nf6', 'e3', 'c6'], ['d4', 'Nf6', 'Nf3', 'e6', 'a3', 'd5', 'b4', 'Be7', 'e3', 'O-O'], ['d4', 'e6', 'a3', 'd6', 'Nf3', 'c6', 'e3', 'a6', 'b4', 'Qc7'], ['d4', 'Nf6', 'Nf3', 'g6', 'e3', 'Bg7', 'b4', 'd5', 'h3', 'Nbd7'], ['d4', 'd5', 'Nf3', 'Nc6', 'e3', 'a6', 'c4', 'dxc4', 'Bxc4', 'Bg4'], ['d4', 'd5', 'Nf3', 'c5', 'e3', 'e6', 'a3', 'Nf6', 'dxc5', 'Bxc5'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'c5', 'c3', 'Nc6', 'dxc5', 'Bg4'], ['d4', 'c6', 'Nf3', 'd5', 'e3', 'Nf6', 'c4', 'Bg4', 'h3', 'Bxf3'], ['d4', 'b6', 'Nf3', 'Bb7', 'e3', 'g6', 'a3', 'Bg7', 'b4', 'e6'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'e6', 'a3', 'Nc6', 'b4', 'a6'], ['d4', 'e5', 'e3', 'exd4', 'exd4', 'Nc6', 'Nf3', 'd5', 'h3', 'Be6'], ['d4', 'e6', 'a3', 'd5', 'b4', 'b6', 'Nf3', 'c5', 'c3', 'c4'], ['d4', 'c6', 'Nf3', 'f6', 'e3', 'g6', 'Bc4', 'd5', 'Bb3', 'Nh6'], ['d4', 'd5', 'Nf3', 'Nc6', 'a3', 'Nf6', 'b4', 'a6', 'c4', 'e6'], ['d4', 'e6', 'a3', 'd5', 'b4', 'Nf6', 'e3', 'Bd6', 'Nf3', 'c6'], ['d4', 'Nf6', 'Nf3', 'd5', 'e3', 'c5', 'c3', 'Bg4', 'h3', 'Bxf3'], ['d4', 'c6', 'Nf3', 'd6', 'e3', 'f5', 'Be2', 'g6', 'b3', 'Nf6'], ['d4', 'c6', 'e3', 'f5', 'Nf3', 'Nf6', 'Be2', 'Qa5+', 'c3', 'Qb6'], ['d4', 'd5', 'Nf3', 'Bg4', 'e3', 'e6', 'h3', 'Bh5', 'a3', 'h6'], ['d4', 'g6', 'b4', 'Bg7', 'Bb2', 'a5', 'c3', 'axb4', 'cxb4', 'Nc6'], ['d4', 'd5', 'Nf3', 'Nf6', 'a3', 'e6', 'b4', 'b6', 'e3', 'Bb7'], ['d4', 'd5', 'Nf3', 'Bf5', 'e3', 'e6', 'a3', 'Bd6', 'b4', 'c6'], ['d4', 'd5', 'Nf3', 'Nf6', 'a3', 'Nc6', 'b4', 'a6', 'e3', 'e5'], ['d4', 'd5', 'Nf3', 'e6', 'a3', 'Bd6', 'e3', 'Nf6', 'b4', 'O-O'], ['d4', 'd5', 'Nf3', 'Nf6', 'e3', 'g6', 'b4', 'Bg7', 'Bb2', 'Bg4'], ['d4', 'Nf6', 'Nf3', 'e6', 'a3', 'c5', 'e3', 'd5', 'c3', 'a6'], ['d4', 'd5', 'Nf3', 'c5', 'e3', 'Nf6', 'a3', 'Bf5', 'dxc5', 'e6'], ['d4', 'g6', 'b4', 'Bg7', 'Bb2', 'b6', 'Nf3', 'e6', 'e3', 'Bb7'], ['d4', 'c6', 'Nf3', 'd5', 'e3', 'Bg4', 'c4', 'e6', 'h3', 'Bh5'], ['d4', 'g6', 'b4', 'Bg7', 'Bb2', 'b6', 'Nf3', 'Bb7', 'e3', 'Nf6'], ['d4', 'Nf6', 'Nf3', 'd5', 'a3', 'e6', 'b4', 'b6', 'e3', 'Bb7'], ['d4', 'g6', 'b4', 'Bg7', 'Bb2', 'b6', 'Nf3', 'e6', 'e3', 'Nc6'], ['d4', 'd5', 'Nf3', 'Bf5', 'e3', 'Nc6', 'a3', 'e6', 'b4', 'Nf6'], ['d4', 'd5', 'Nf3', 'Nc6', 'a3', 'Bf5', 'e3', 'a6', 'c4', 'Nf6'], ['d4', 'Nf6', 'Nf3', 'g6', 'b4', 'd6', 'e3', 'b6', 'Be2', 'Bg7'], ['d4', 'Nf6', 'Nf3', 'd5', 'a3', 'e6', 'b4', 'Bd7', 'e3', 'a5'], ['d4', 'd5', 'Nf3', 'Nc6', 'a3', 'h6', 'e3', 'Nf6', 'h3', 'e6'], ['d4', 'd5', 'Nf3', 'Bf5', 'a3', 'c5', 'e3', 'cxd4', 'exd4', 'Nc6'], ['d4', 'd5', 'Nf3', 'g6', 'b4', 'Bg7', 'Bb2', 'c6', 'e3', 'Bg4'], ['d4', 'f5', 'e3', 'Nf6', 'Be2', 'd5', 'Nf3', 'Nc6', 'a3', 'e6'], ['d4', 'Nc6', 'a3', 'd5', 'Nf3', 'Nf6', 'e3', 'Bf5', 'Nbd2', 'e6'], ['d4', 'd5', 'Nf3', 'c6', 'e3', 'Nd7', 'c4', 'g6', 'b4', 'Bg7'], ['d4', 'e6', 'a3', 'd5', 'b4', 'Nf6', 'Nf3', 'h6', 'e3', 'Bd6'], ['d4', 'c5', 'e3', 'Nf6', 'c3', 'cxd4', 'cxd4', 'g6', 'b4', 'd5'], ['d4', 'd5', 'Nf3', 'g6', 'b4', 'Bg7', 'Bb2', 'Nc6', 'a3', 'a6'], ['d4', 'Nf6', 'Nf3', 'c5', 'e3', 'cxd4', 'exd4', 'd5', 'c4', 'dxc4'], ['d4', 'd5', 'Nf3', 'Nf6', 'a3', 'Bg4', 'e3', 'c6', 'c4', 'e6'], ['d4', 'e6', 'a3', 'd5', 'b4', 'Nf6', 'Nf3', 'Bd7', 'e3', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'Bxc6+', 'bxc6', 'Nc3', 'Bg4'], ['e4', 'd6', 'Nf3', 'Nf6', 'g3', 'Nbd7', 'Nc3', 'e5', 'Bg2', 'Be7'], ['Nf3', 'd5', 'd3', 'e6', 'Nc3', 'Nc6', 'e4', 'Bb4', 'exd5', 'exd5'], ['Nf3', 'c5', 'g3', 'e6', 'Bg2', 'h5', 'e4', 'a6', 'd3', 'b5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qc5', 'd4', 'Qd6', 'Nf3', 'Nf6'], ['e4', 'e5', 'Qh5', 'Nf6', 'Qxe5+', 'Qe7', 'Qxe7+', 'Bxe7', 'e5', 'Nd5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Qf6', 'Bg5', 'Qg6', 'dxe5', 'Qxe4+'], ['e4', 'e5', 'd4', 'd6', 'd5', 'Nf6', 'f3', 'c6', 'Bg5', 'cxd5'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'a6', 'd4', 'cxd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Bc4', 'd5', 'd3', 'dxc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd4', 'a6', 'Ba4', 'd6'], ['e4', 'a6', 'Nf3', 'b6', 'd4', 'Bb7', 'Nc3', 'h6', 'Bc4', 'e6'], ['e3', 'd5', 'c4', 'e6', 'Nf3', 'Nf6', 'Qb3', 'b6', 'cxd5', 'exd5'], ['c4', 'e5', 'Nc3', 'Nf6', 'd4', 'Nc6', 'd5', 'Nd4', 'e3', 'Nf5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'h6', 'd3', 'Nf6', 'Nc3', 'a6'], ['e4', 'd5', 'f3', 'dxe4', 'fxe4', 'e5', 'Nf3', 'Nc6', 'd3', 'Bg4'], ['Nf3', 'd6', 'e4', 'e5', 'g3', 'f5', 'd3', 'Nf6', 'Nc3', 'c6'], ['e4', 'e5', 'Nf3', 'Qf6', 'Nc3', 'Bc5', 'Bc4', 'c6', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'd6', 'Bb5+', 'Bd7', 'Bxd7+', 'Qxd7', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'd5', 'Nb4', 'Bd2', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Nc3', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nd4', 'Nc3', 'c6', 'Bc4', 'd5'], ['e4', 'Nc6', 'Nf3', 'f5', 'exf5', 'd5', 'd4', 'Bxf5', 'Bb5', 'Qd7'], ['e4', 'e5', 'd4', 'd5', 'dxe5', 'dxe4', 'Bb5+', 'c6', 'Bf1', 'Qxd1+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'd3', 'Nf6', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd5', 'Bxd5', 'Bg4', 'h3', 'Be6'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Nf6', 'Nc3', 'Nc6', 'Bxc4', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'Nc3', 'Nce7', 'd4', 'c6'], ['Nf3', 'd5', 'g3', 'Bg4', 'Bg2', 'Bxf3', 'Bxf3', 'c6', 'd4', 'e6'], ['d4', 'd5', 'c4', 'c6', 'cxd5', 'cxd5', 'Nf3', 'Nf6', 'Nc3', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'c6', 'Bf4', 'Qa5'], ['Nf3', 'd5', 'e3', 'Nf6', 'b3', 'Nc6', 'Bb5', 'a6', 'Bxc6+', 'bxc6'], ['e4', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'c5'], ['e4', 'c5', 'Nc3', 'd6', 'g3', 'Nc6', 'Bg2', 'Nf6', 'f4', 'Bg4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Qh4', 'Nf3', 'Qxe4+'], ['d4', 'd5', 'e3', 'Nc6', 'a3', 'e5', 'dxe5', 'Nxe5', 'h3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Nxc6', 'bxc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nxe4', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nxe5', 'Nxe5'], ['e4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qe3', 'b6', 'e5', 'Bc5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bc4', 'Qc7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'd5', 'Nxe5', 'dxe4', 'dxe4', 'Nxe4'], ['e4', 'e5', 'Nc3', 'Nf6'], ['e4', 'Nc6', 'Nf3', 'e6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qf5'], ['e4', 'e5', 'Qh5', 'd6', 'Nf3', 'Qf6', 'Bc4'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nd5', 'Nxd5', 'exd5', 'c6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Bc4', 'Bc5', 'Nxf7', 'Qh4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Qh4', 'Nc3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'd6', 'dxe5', 'dxe5', 'g4', 'Bxg4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'd3', 'dxe4', 'dxe4', 'Qxd1+'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'd5', 'exd5', 'Qxd5', 'c4', 'Qa5+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd5', 'Bxd5', 'Nf6', 'Nc3', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'g3', 'Bc5', 'Bg2', 'Nf6', 'O-O', 'Ng4'], ['e4', 'c5', 'd4', 'd6', 'd5', 'Nf6', 'Nc3', 'Bg4', 'Be2', 'Bd7'], ['c4', 'c5', 'Nh3', 'e5', 'e4', 'd6', 'Qf3', 'Nf6', 'Ng5', 'Qe7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Bc5', 'Re1', 'Nd4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'O-O', 'c6', 'Nc3', 'Nd7'], ['e4', 'e5', 'Bc4', 'd6', 'Qf3', 'Nf6', 'd3', 'Be7', 'Qg3', 'O-O'], ['e4', 'c5', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qe3', 'e5', 'Nc3', 'd6'], ['e4', 'd5', 'e5', 'Nc6', 'Nf3', 'f6', 'exf6', 'exf6', 'Bb5', 'Qe7+'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'Bb4+', 'Nc3', 'Bxc3+', 'bxc3', 'dxc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'd6', 'Ng5', 'Be6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'Nf6', 'Nc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bc4', 'h6', 'O-O', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'd3', 'd6', 'Bg5', 'f6'], ['e4', 'c5', 'Nc3', 'Nc6', 'd3', 'g6', 'Nf3', 'Bg7', 'Be2', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nxd4', 'Nxd4', 'exd4', 'Qxd4', 'd6'], ['d4', 'd5', 'e3', 'Bf5', 'Bd3', 'Be4', 'c3', 'Bxd3', 'Qxd3', 'e6'], ['e4', 'b6', 'Bc4', 'Bb7', 'Nc3', 'Nh6', 'Nf3', 'Ng8', 'Ng5', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Bc5', 'Bc4', 'Nf6', 'Ng5', 'O-O'], ['e4', 'e5', 'Qh5', 'Qe7', 'Bc4', 'g6', 'Qf3', 'Nc6', 'c3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Bd6', 'Nc3', 'Nf6', 'Bc4', 'Qe7', 'Ng5', 'Rf8'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bf4', 'Bf5', 'Nb5', 'Na6', 'Qd3', 'e6'], ['e4', 'c5', 'Nc3', 'e6', 'd3', 'd5', 'e5', 'd4', 'Ne4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'd6', 'Nc3', 'h6'], ['e4', 'e5', 'Nf3', 'Bb4', 'Nc3', 'Bxc3', 'bxc3', 'c6', 'Bc4', 'Qb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Bxc6', 'Nf6', 'Bb5', 'Ng4'], ['e4', 'c5', 'Nc3', 'Nc6', 'Bd3', 'e5', 'Qf3', 'Nd4', 'Qh5', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'Nc3', 'Nf6', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Be7', 'Ng5', 'O-O'], ['e4', 'c5', 'd3', 'Nc6', 'Nc3', 'h6', 'Nf3', 'Nf6', 'Be2', 'e6'], ['d4', 'd5', 'Nc3', 'Nf6', 'e3', 'e6', 'Nf3', 'Bd6', 'Nb5', 'O-O'], ['e4', 'd6', 'Nf3', 'e5', 'Nc3', 'Bg4', 'Bc4', 'Bxf3', 'Qxf3', 'Nf6'], ['c4', 'c5', 'g3', 'd6', 'Bg2', 'e5', 'Nc3', 'Be7', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Nf6', 'd3', 'd6'], ['e4', 'e5', 'Nf3', 'a6', 'Bc4', 'Qf6', 'O-O', 'b5', 'Bd5', 'c6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'Nc3', 'Nf6', 'Ng5', 'Be7'], ['e4', 'e5', 'Nf3', 'd5', 'exd5', 'e4', 'Ng1', 'Qxd5', 'f3', 'Qd4'], ['e4', 'e5', 'Qh5', 'Qe7', 'Nf3', 'd6', 'Qg5', 'Qxg5', 'Nxg5', 'Be7'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Bc5', 'd4', 'exd4', 'cxd4', 'Bxd4'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'e6', 'Nxe4', 'Qh4', 'Qe2', 'Nf6'], ['c3', 'd5', 'e3', 'e6', 'Nf3', 'Nf6', 'c4', 'Bd6', 'cxd5', 'exd5'], ['d4', 'd5', 'c4', 'e6', 'cxd5', 'exd5', 'Nf3', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'Bc4', 'Bc5', 'Ng5', 'O-O'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nc6', 'Bb5', 'Bf5'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Nc3', 'Bf5', 'd4', 'Nc6'], ['e4', 'c6', 'Nc3', 'd5', 'Nf3', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'e6'], ['d4', 'd5', 'Bf4', 'h5', 'e3', 'f6', 'Bd3', 'g5', 'Bg6+', 'Kd7'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Nf3', 'Nc6', 'Bb5', 'Nf6'], ['e4', 'c6', 'd4', 'd5', 'exd5', 'cxd5', 'Bd3', 'Nf6', 'c3', 'e6'], ['d4', 'd5', 'Bf4', 'c5', 'e3', 'Nf6', 'Nf3', 'Nc6', 'c3', 'Qb6'], ['d4', 'a6', 'Bf4', 'b5', 'e3', 'Bb7', 'Nf3', 'd6', 'c3', 'Nf6'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'd4', 'Nf6', 'Nc3', 'e6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Bf5', 'Nf3', 'e6', 'c4', 'c5'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Nf6', 'c3', 'Bf5', 'Nf3', 'e6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'e6', 'Nf3', 'c6', 'c3', 'Nbd7'], ['d4', 'Nc6', 'Nf3', 'e6', 'Bf4', 'Nf6', 'e3', 'Bb4+', 'c3', 'Be7'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Bf5', 'c3', 'Nf6', 'Nf3', 'Ne4'], ['d4', 'd5', 'Bf4', 'c6', 'e3', 'Nf6', 'c3', 'e6', 'Nf3', 'b6'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'Nc6', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Bb5', 'Bd7'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'a5', 'c3', 'e5', 'dxe5', 'h6'], ['d4', 'e6', 'Bf4', 'd5', 'e3', 'c5', 'c3', 'Nc6', 'Nd2', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Bb4', 'e5', 'c5', 'a3', 'Bxc3+'], ['d4', 'h6', 'Bf4', 'e6', 'e3', 'a6', 'c3', 'd5', 'Nd2', 'Ne7'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'c4', 'e6', 'Nc3', 'dxc4'], ['e4', 'Nc6', 'Nf3', 'e5', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd5'], ['d4', 'c6', 'c4', 'd5', 'e3', 'Nf6', 'Nf3', 'Bf5', 'Bd3', 'Bxd3'], ['Nf3', 'Nc6', 'g3', 'e5', 'Bg2', 'Qe7', 'O-O', 'd6', 'Nc3', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'c5', 'exd5', 'exd5', 'dxc5', 'Be6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Be7', 'Nf3', 'Nf6', 'Bg5', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'g6'], ['Nf3', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'O-O', 'c4', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'O-O', 'Nf3', 'b6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'h6'], ['d4', 'e6', 'c4', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'c5'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'c6', 'e3', 'Nbd7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nxc3'], ['e4', 'c6', 'Nc3', 'd5', 'd4', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd6', 'd4', 'exd4'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'Nf3', 'c6', 'Bg5', 'h6'], ['d4', 'Nf6', 'Bf4', 'd5', 'Nf3', 'c5', 'Nbd2', 'cxd4', 'Nxd4', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'd6', 'Nxc6', 'bxc6'], ['Nf3', 'd5', 'c4', 'dxc4', 'Na3', 'Qd5', 'Qa4+', 'Bd7', 'Qxc4', 'Qxc4'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'Qb6'], ['c4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Nf3', 'c6', 'e3', 'Nbd7'], ['c4', 'e5', 'g3', 'g6', 'Bg2', 'Bg7', 'Nc3', 'Nc6', 'e3', 'd6'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'c4', 'Nf6', 'Nf3', 'Bg4'], ['e4', 'Nc6', 'f4', 'e5', 'Nf3', 'f5', 'Nxe5', 'Nxe5', 'fxe5', 'Qh4+'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'd4', 'Nd6'], ['e4', 'Nc6', 'd4', 'e5', 'Nf3', 'exd4', 'Bc4', 'Nf6', 'O-O', 'd5'], ['Nf3', 'Nc6', 'g3', 'd5', 'Bg2', 'e5', 'd3', 'Nf6', 'O-O', 'Bd6'], ['d4', 'd5', 'c4', 'Nc6', 'Nc3', 'dxc4', 'd5', 'Ne5', 'e4', 'Nf6'], ['e4', 'Nc6'], ['d4', 'd5', 'c4', 'Nc6', 'cxd5', 'Qxd5', 'e3', 'e5', 'Nc3', 'Bb4'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'd5', 'cxd5', 'Nxd5', 'Nf3', 'Nc6'], ['d4', 'd5', 'c4', 'Nc6', 'Nc3', 'dxc4', 'e3', 'e5', 'd5', 'Nce7'], ['d4', 'd5', 'c4', 'Nc6', 'cxd5', 'Qxd5', 'Nf3', 'e5', 'Nc3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'a3', 'Nf6', 'Nc3', 'Bc5', 'h3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'd5', 'exd5', 'Qxd5', 'c4', 'Qd8'], ['e4', 'e5', 'f4', 'Nc6', 'Nf3', 'f5', 'exf5', 'e4', 'Qe2', 'Nf6'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'Nf6', 'Nd2', 'e6', 'c3', 'Be7'], ['e4', 'e5', 'Bc4', 'Nf6', 'd4', 'exd4', 'Nf3', 'Nxe4', 'Qxd4', 'Nf6'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nce7', 'c4', 'Ng6', 'Nf3', 'Nf6'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bg5', 'Bf5', 'c3', 'Nf6', 'Bxf6', 'gxf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'Qf6'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nce7', 'c4', 'Ng6', 'Bd3', 'Nf6'], ['d4', 'd5', 'e3', 'Bf5', 'Bd3', 'Bg6', 'f4', 'Nf6', 'g4', 'e6'], ['e4', 'Nc6', 'c3', 'Nf6', 'd3', 'e5', 'Nf3', 'Bc5', 'Bg5', 'h6'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nce7', 'Nf3', 'Ng6', 'Nc3', 'Nf6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'g6', 'Bb5', 'Bg7', 'Bxc6', 'bxc6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'Qc7'], ['e4', 'c5', 'Qf3', 'Nc6', 'Bc4', 'e6', 'Nh3', 'Ne5', 'd4', 'Nxf3+'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Nf6', 'Nc3', 'e6', 'Nf3', 'Bd6'], ['e4', 'c5', 'Nf3', 'e6', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'Nf6'], ['e4', 'c5', 'Nc3', 'e6', 'f4', 'd5', 'Nf3', 'd4', 'Ne2', 'Nc6'], ['e4', 'c5', 'Nf3', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be6'], ['Nf3', 'd5', 'c4', 'Nf6', 'g3', 'c5', 'Bg2', 'd4', 'd3', 'Nc6'], ['d4', 'Nf6', 'Bf4', 'd6', 'e3', 'g6', 'Nc3', 'Bg7', 'Bd3', 'Nbd7'], ['d4', 'd5', 'c4', 'c6', 'Bf4', 'e6', 'Bxb8', 'Rxb8', 'e3', 'f5'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'e6', 'Nc3', 'a6', 'Bd3', 'Be7'], ['e4', 'c5', 'Qh5', 'e6', 'Bc4', 'Nf6', 'Qf3', 'd5', 'exd5', 'exd5'], ['d4', 'd5', 'c4', 'Nf6', 'Nf3', 'Bg4', 'e3', 'c6', 'Nc3', 'e6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Nc3', 'Qc7'], ['e4', 'c5', 'c4', 'Qc7', 'Nc3', 'e6', 'd3', 'Nc6', 'Nh3', 'a6'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'e6', 'Nc3', 'Bd6', 'Nf3', 'Bxf4'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'e6', 'Nc3', 'Bb4', 'Bd3', 'Bxc3+'], ['Nf3', 'Nf6', 'g3', 'd5', 'Bg2', 'Bg4', 'O-O', 'Nc6', 'c3', 'e5'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'Bf5', 'Nc3', 'Nc6', 'a3', 'e6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Bc4', 'Qc7'], ['d4', 'f5', 'Bf4', 'Nf6', 'e3', 'd6', 'Nc3', 'Nc6', 'Bc4', 'e5'], ['e4', 'c5', 'Nf3', 'e6', 'Nc3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'Qc7'], ['c4', 'Nf6', 'Nc3', 'e6', 'd3', 'd5', 'e4', 'c5', 'Nge2', 'dxe4'], ['e4', 'c5', 'Nf3', 'g5', 'Nxg5', 'Bh6', 'Nf3', 'd6', 'd4', 'Bg7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'Nc6', 'd3', 'Nf6', 'a3', 'e5', 'Nc3', 'Bb4', 'Bd2', 'd6'], ['d4', 'e5', 'dxe5', 'Bb4+', 'c3', 'Ba5', 'f4', 'Nc6', 'Nf3', 'b5'], ['e4', 'e5', 'Nf3', 'Bc5', 'Bc4', 'd5', 'Bxd5', 'Bg4', 'd3', 'Nc6'], ['e4', 'e5', 'Qf3', 'a6', 'Bc4', 'Qe7', 'Nh3', 'b5', 'Bd5', 'c6'], ['e4', 'e5', 'Qh5', 'Qf6', 'Nf3', 'Bc5', 'Qxe5+', 'Kd8', 'Qxc5', 'd6'], ['Nf3', 'Nf6', 'Ne5', 'd6', 'Nc4', 'Nc6', 'Ne3', 'Be6', 'Nc3', 'g6'], ['Nf3', 'Nc6', 'd4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'h6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Bd6', 'Nf3', 'c6', 'Bg5', 'f6'], ['d4', 'd5', 'e3', 'Nf6', 'Bd3', 'e6', 'f4', 'c5', 'c3', 'c4'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'c6', 'e4', 'dxe4', 'Nxe4', 'Bb4+'], ['d4', 'g6', 'e3', 'Bg7', 'Bd3', 'c5', 'c3', 'cxd4', 'exd4', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bb4+', 'c3', 'dxc3'], ['d4', 'd5', 'Nc3', 'e6', 'Bf4', 'c6', 'e3', 'f5', 'Nf3', 'Nf6'], ['d4', 'Nf6', 'e3', 'g6', 'Bd3', 'Bg7', 'f4', 'd6', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd3', 'd6'], ['d4', 'd5', 'e3', 'Nf6', 'Bd3', 'e6', 'f4', 'h6', 'Nf3', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'b4', 'Bb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['d4', 'd6', 'e3', 'g6', 'Bd3', 'Bg7', 'f4', 'Nf6', 'Nf3', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'c6', 'Nc3', 'Bd6', 'e4', 'dxe4'], ['d4', 'd5', 'e3', 'Nf6', 'Bd3', 'Bg4', 'f3', 'Bh5', 'c3', 'Bg6'], ['d4', 'd5', 'e3', 'Nf6', 'Bd3', 'c5', 'c3', 'Nc6', 'f4', 'c4'], ['e4', 'e5', 'f4', 'Bc5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'c3', 'Qe7'], ['d4', 'Nf6', 'e3', 'g6', 'Bd3', 'Bg7', 'f4', 'O-O', 'Nf3', 'd5'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'a6', 'c3', 'Nc6', 'Nd2', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'd3', 'Nf6', 'Ng5', 'd5'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Nf6', 'c3', 'a6', 'Nd2', 'h6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'e6', 'Bf4', 'Nf6', 'Nf3', 'c5', 'e3', 'Nc6', 'c3', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'Ng5', 'e6', 'Qf3', 'Qxg5'], ['d4', 'd5', 'Bf4', 'f6', 'Nf3', 'Nc6', 'e3', 'a6', 'Nbd2', 'Bf5'], ['d4', 'd6', 'Bf4', 'e6', 'Nf3', 'h6', 'e3', 'g6', 'Bd3', 'd5'], ['d4', 'Nf6', 'Bf4', 'g6', 'Nc3', 'Bg7', 'e4', 'c5', 'Nb5', 'd6'], ['d4', 'd5', 'Bf4', 'g6', 'e3', 'Bg7', 'Nf3', 'Nf6', 'Bd3', 'O-O'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'f6', 'Nf3', 'e5', 'dxe5', 'fxe5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e3', 'e5', 'b3', 'd5', 'Bb2', 'Nc6', 'Bb5', 'f6', 'Bxc6+', 'bxc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'd6', 'Bb5', 'e5', 'O-O', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'c3', 'Nc6', 'Bb5', 'Bd7', 'O-O', 'e5'], ['e4', 'c5', 'c3', 'd6', 'd4', 'Nf6', 'Bb5+', 'Bd7', 'Bxd7+', 'Nbxd7'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'Nf6', 'Bd3', 'Bxd3', 'Qxd3', 'Nh5'], ['d4', 'd5', 'Bf4', 'e6', 'Nf3', 'c5', 'e3', 'Nc6', 'c3', 'Nf6'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'f6', 'Nd2', 'e5', 'Bg3', 'Qe7'], ['e4', 'c5', 'Qh5', 'e6', 'Nf3', 'Nf6', 'Qe5', 'Nc6', 'Qc3', 'Nxe4'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Bf5', 'c3', 'Nf6', 'Bd3', 'e6'], ['d4', 'e6', 'Bf4', 'h6', 'e3', 'g5', 'Bg3', 'd6', 'c3', 'c6'], ['d4', 'd5', 'Bf4', 'c5', 'e3', 'Nf6', 'c3', 'c4', 'Nd2', 'Nc6'], ['d4', 'e6', 'Bf4', 'h6', 'Nf3', 'a6', 'e3', 'b6', 'Nbd2', 'Bb7'], ['e4', 'c5', 'Qh5', 'e6', 'Qe2', 'Nc6', 'f3', 'e5', 'Qc4', 'Nf6'], ['e4', 'c5', 'Bc4', 'Nf6', 'Qe2', 'Nc6', 'Bb3', 'e6', 'Nf3', 'Be7'], ['d4', 'g6', 'c4', 'Bg7', 'Nc3', 'e5', 'd5', 'd6', 'e4', 'Na6'], ['d4', 'c5', 'd5', 'e5', 'e4', 'f6', 'Nc3', 'Nc6', 'dxc6', 'bxc6'], ['e4', 'c5', 'Bc4', 'e6', 'b3', 'Nf6', 'e5', 'd5', 'Bb5+', 'Nfd7'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'Be6', 'Nf3', 'f6', 'Be2', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'd3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'O-O', 'Nf6', 'Re1', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'f6', 'O-O', 'Nc6', 'c3', 'Bd7'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'Nc6', 'Ng5', 'e6', 'O-O', 'Qxg5'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nc6', 'Ng5', 'e6', 'Bb5', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bb4+', 'c3', 'Ba5'], ['d4', 'Nf6', 'Nf3', 'e6', 'e3', 'Be7', 'c3', 'O-O', 'Nbd2', 'd5'], ['e4', 'c5', 'Be2', 'd6', 'f4', 'Nf6', 'd3', 'd5', 'e5', 'Nfd7'], ['f4', 'd5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'Bd2', 'g6', 'b4', 'Bg7'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'cxd5', 'cxd5', 'Bf4', 'Nc6'], ['d4', 'e6', 'e4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Nf3', 'Nc6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Ne7', 'c3', 'dxe4', 'Nxe4', 'Nf5'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'e5', 'Bc4', 'Nf6', 'O-O', 'Nxe4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Qb6', 'Nf3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Bc5', 'c3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'c3', 'd6', 'd4', 'exd4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Be3', 'Nc6', 'Nf3', 'Nge7'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'c6', 'Nf3', 'Bg4'], ['c4', 'e6', 'Nc3', 'Nf6', 'e4', 'Bb4', 'a3', 'Bxc3', 'dxc3', 'd6'], ['e4', 'e6', 'Nf3', 'b6', 'Nc3', 'Bb7', 'd4', 'c5', 'd5', 'f5'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'dxe5', 'Bxf3', 'gxf3', 'Nc6'], ['d4', 'e6', 'c4', 'd5', 'cxd5', 'exd5', 'e3', 'Nf6', 'Nc3', 'Bb4'], ['e4', 'e6', 'Nf3', 'b6', 'Bc4', 'Bb7', 'd3', 'g6', 'O-O', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'c3', 'Nf6', 'O-O', 'Nxe4'], ['e4', 'e6', 'Nf3', 'b6', 'Bc4', 'Bb7', 'd3', 'd5', 'exd5', 'exd5'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'O-O', 'Nxe4', 'Re1', 'Nf6'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb3', 'Nf6', 'd3', 'h6'], ['e4', 'Nf6', 'e5', 'Nd5', 'd4', 'd6', 'exd6', 'exd6', 'Nf3', 'Nc6'], ['e4', 'c5', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'Nf6', 'Nf3', 'cxd4'], ['d4', 'e6', 'Nf3', 'd5', 'Nc3', 'c5', 'a3', 'Nc6', 'Bf4', 'cxd4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Qb6', 'Nc3', 'Bd7'], ['e4', 'e6', 'e5', 'd5', 'exd6', 'Bxd6', 'Nf3', 'Nf6', 'b3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'd6', 'O-O', 'Bd7', 'c3', 'h6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'c3', 'exd4', 'cxd4', 'Nf6'], ['e4', 'e6', 'e5', 'd5', 'd4', 'c5', 'c3', 'Nc6', 'Nf3', 'cxd4'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'd4', 'Nf6', 'Nf3', 'e6'], ['e4', 'e6', 'Nf3', 'b6', 'd4', 'Bb7', 'Bd3', 'Nc6', 'c3', 'd5'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Bb4', 'c3', 'Ba5', 'f4', 'Nf6'], ['d4', 'e6', 'Nf3', 'b6', 'Bf4', 'Bb7', 'e3', 'd5', 'Nbd2', 'Bd6'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'Nf6', 'f3', 'd6', 'Bd3', 'Nbd7'], ['c4', 'e6', 'd4', 'Nf6', 'Nf3', 'Bb4+', 'Bd2', 'Bxd2+', 'Qxd2', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Qf6', 'O-O', 'Nd4', 'Nxd4', 'exd4'], ['d4', 'Nf6', 'Nf3', 'b6', 'e3', 'Bb7', 'Bd3', 'e6', 'O-O', 'd5'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Nf3', 'Bd6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Bd3', 'Bxd3', 'Qxd3', 'e6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'a3', 'Bxc3', 'dxc3', 'd6'], ['e4', 'e6', 'Nf3', 'b6', 'a3', 'Bb7', 'Nc3', 'd5', 'e5', 'c5'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e5', 'Nfd7'], ['e4', 'c5', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'cxd4', 'Nf3', 'Nc6'], ['e4', 'c5', 'Bd3', 'e6', 'c3', 'a6', 'Bc2', 'b5', 'Nf3', 'Bb7'], ['e4', 'c5', 'c3', 'Nc6', 'Nf3', 'g6', 'Bc4', 'Bg7', 'O-O', 'e6'], ['e4', 'e6', 'Bc4', 'd5', 'exd5', 'exd5', 'Bb3', 'Nf6', 'Nc3', 'Bc5'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Be7', 'Ngf3', 'Nf6', 'e5', 'Ne4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Qb6', 'c3', 'cxd4'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Qf6', 'd3', 'Bc5', 'Bg5', 'Qe6', 'Nbd2', 'd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'd3', 'Bxc3+', 'bxc3', 'd6'], ['e4', 'c6', 'd4', 'e6', 'Nc3', 'Bb4', 'f3', 'Qa5', 'Bd2', 'a6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Nf3', 'c5', 'e3', 'O-O'], ['c4', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'Nf3', 'O-O', 'Nc3', 'd6'], ['e4', 'c5', 'Nc3', 'Nc6', 'g3', 'g6', 'Nge2', 'Bg7', 'Bg2', 'd6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e3', 'c6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Be2', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Nf6', 'e5', 'd5'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7', 'Nc3', 'Nc6'], ['c4', 'e5', 'Nc3', 'd6', 'g3', 'Ne7', 'Bg2', 'Ng6', 'e3', 'Be7'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Bb4', 'Bg5', 'h6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Bb4', 'Bf4', 'dxc4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'O-O', 'Bc5', 'c3', 'd6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'd5', 'cxd5', 'exd5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Nf3', 'd5', 'e3', 'b6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'a6', 'Nf3', 'h6', 'exd5', 'exd5'], ['c4', 'e6', 'Nc3', 'd5', 'd4', 'Nf6', 'Bg5', 'Be7', 'e3', 'h6'], ['e4', 'c5', 'c3', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Nf6', 'Be2', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'd6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'd6', 'Nf3', 'Nxe4', 'd4', 'd5'], ['e4', 'e5', 'f4', 'Bc5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'Nc6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Nc3', 'b5'], ['d4', 'd5', 'c4', 'c6', 'Nf3', 'Nf6', 'Nc3', 'Nbd7', 'cxd5', 'Nxd5'], ['e4', 'e6', 'd4', 'Qh4', 'Bd3', 'Nc6', 'Nf3', 'Qe7', 'O-O', 'h6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bd6', 'dxe5', 'Nxe5', 'Nxe5', 'Bxe5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'c4'], ['e4', 'e6', 'd4', 'd5', 'Bd3', 'Nc6', 'Nf3', 'Nf6', 'e5', 'Ng4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'Bc4', 'e6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'd5', 'cxd5', 'exd5'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Be2', 'Nf6', 'h3', 'Bc5'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd8', 'Nf3', 'e6', 'd4', 'Bb4'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'd4', 'Nc6', 'Be3', 'a6'], ['e4', 'c5', 'Nf3', 'e6', 'd4', 'a6', 'Be3', 'h6', 'dxc5', 'Qa5+'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qe6+', 'Be2', 'b6', 'd4', 'Bb7'], ['e4', 'e6', 'Nf3', 'd5', 'exd5', 'exd5', 'Bb5+', 'Bd7', 'Bxd7+', 'Nxd7'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'c5', 'b4', 'cxb4', 'd4', 'Nc6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nf3', 'a6'], ['e4', 'e6', 'e5', 'Nc6', 'd4', 'd6', 'Nf3', 'dxe5', 'dxe5', 'Qxd1+'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'Nf3', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e6', 'd4', 'b6', 'e5', 'Bb7', 'Nf3', 'h6', 'Bd3', 'g5'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Nf6', 'Bd3', 'Nxe4'], ['e4', 'e6', 'b3', 'd5', 'f3', 'Nc6', 'Bb2', 'dxe4', 'fxe4', 'Qh4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bb4+', 'c3', 'Bd6', 'Bb5', 'Qf6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'c5', 'b6', 'b4', 'a5'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'h6', 'c4', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bb4+', 'c3', 'dxc3'], ['e4', 'e6', 'Nf3', 'd5', 'e5', 'd4', 'c3', 'c5', 'd3', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'e3', 'O-O', 'Bd3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bb4+', 'c3', 'Bd6', 'Bc4', 'exd4'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'dxe4', 'Nxe4', 'Nf6', 'Bd3', 'Nbd7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'b3', 'cxd4', 'Qxd4', 'Nc6'], ['c4', 'e5', 'Nc3', 'Nf6', 'g3', 'd5', 'cxd5', 'Nxd5', 'Bg2', 'Be6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxc5', 'dxc5', 'Qxd8+', 'Nxd8'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'Qd5', 'Nc5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Bb4', 'a3', 'Bxc3+'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nc3', 'Nf6', 'Nf3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'Nf6', 'Nc6+'], ['e4', 'e6', 'e5', 'd5', 'd4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'cxd4'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'e5', 'dxe5', 'd6', 'Nc3', 'dxe5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'Bf4', 'Nc6', 'Nf3', 'Bd6'], ['Nf3', 'c6', 'd4', 'Nf6', 'c4', 'd5', 'Nc3', 'g6', 'Bg5', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'h6', 'c3', 'dxc3'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'cxd5', 'exd5', 'e3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Bb4+', 'c3', 'Ba5', 'd5', 'Nce7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'Qd5', 'Nc5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'Ne7', 'Nf3', 'Nbc6', 'Bb5', 'Bd7'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nc3', 'e6', 'Nf3', 'Nd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'd6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'Bd3', 'c5'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Be2', 'O-O'], ['e4', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'g3', 'e5', 'Nge2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'Nc3', 'g6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'd5', 'exd5', 'Qxd5', 'Qa4', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'Nc3', 'g6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'h6', 'a3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'Nc3', 'g6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'Nc3', 'a6', 'Bc4', 'Ng6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Bd3', 'O-O'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Be7', 'Bd3', 'c5', 'dxc5', 'Nf6'], ['c4', 'Nf6', 'd4', 'g6', 'Nc3', 'd6', 'e4', 'Bg7', 'Bd2', 'O-O'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qd6', 'g3', 'Nf6', 'Bg2', 'c6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Be2', 'O-O'], ['d4', 'Nf6', 'Bf4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'd6', 'Qd2', 'h6'], ['Nf3', 'Nf6', 'b3', 'd6', 'd4', 'b6', 'Bb2', 'Bb7', 'e3', 'g6'], ['e4', 'c5', 'Ne2', 'Nc6', 'g3', 'g6', 'Bg2', 'Bg7', 'O-O', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'd6', 'c3', 'Bd7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'O-O'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Be7', 'c3', 'b5'], ['d4', 'Nf6', 'Bf4', 'd5', 'e3', 'g6', 'Nd2', 'Bg7', 'c3', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'd5', 'Nc3', 'Bb4', 'e3', 'O-O'], ['d4', 'e6', 'c4', 'b6', 'Nc3', 'Bb7', 'a3', 'g6', 'e4', 'Bg7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd4', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nc3', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxe5', 'Bg4', 'exd6', 'cxd6'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Nf3', 'c5', 'cxd5', 'Nxd5'], ['d4', 'c5', 'd5', 'e5', 'e4', 'd6', 'Nc3', 'a6', 'a4', 'Be7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'd3', 'b5'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'e6', 'Bxc4', 'Nf6', 'Nc3', 'Bb4'], ['d4', 'd5', 'c4', 'dxc4', 'e4', 'g6', 'Bxc4', 'Bg7', 'Nf3', 'Nf6'], ['c4', 'c6', 'e4', 'd5', 'exd5', 'cxd5', 'd4', 'dxc4', 'Bxc4', 'Nf6'], ['d4', 'c6', 'c4', 'd5', 'Nf3', 'Nf6', 'Nc3', 'dxc4', 'a4', 'Bf5'], ['c4', 'c6', 'e4', 'd5', 'exd5', 'cxd5', 'd4', 'dxc4', 'Bxc4', 'Nf6'], ['e4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'g6', 'd4', 'Bg7', 'Be3', 'O-O'], ['d4', 'c5', 'c3', 'e6', 'Nf3', 'Nf6', 'Bf4', 'Be7', 'e3', 'O-O'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Bg5', 'd6', 'Nf3', 'O-O'], ['d4', 'Nf6', 'Nf3', 'e6', 'Bf4', 'd5', 'e3', 'c5', 'c3', 'Nc6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'f4', 'Bg7', 'Nf3', 'c5'], ['d4', 'd5', 'Nf3', 'Nc6', 'Bf4', 'Bg4', 'e3', 'Bxf3', 'Qxf3', 'Qd7'], ['d4', 'd5', 'Nf3', 'Bf5', 'c4', 'Nf6', 'Bf4', 'h6', 'e3', 'e6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'd6', 'Bg5', 'O-O'], ['d4', 'Nf6', 'Nf3', 'd5', 'Bf4', 'Nc6', 'e3', 'Bg4', 'c4', 'e6'], ['g4', 'h6', 'h3', 'Nf6', 'Bg2', 'g6', 'Nc3', 'Bg7', 'd4', 'd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nf3', 'Bg7', 'Nc3', 'd6', 'Bf4', 'O-O'], ['d4', 'd5', 'Nf3', 'h6', 'Bf4', 'Nf6', 'e3', 'Bg4', 'Nbd2', 'e6'], ['d4', 'Nf6', 'Nf3', 'g6', 'Bf4', 'Bg7', 'e3', 'd6', 'Bd3', 'O-O'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Bf5', 'c4', 'e6', 'e3', 'Bb4+'], ['d4', 'd5', 'Nf3', 'h6', 'Bf4', 'Nf6', 'e3', 'Ne4', 'Nbd2', 'c6'], ['e3', 'Nf6', 'd3', 'g6', 'e4', 'd6', 'Nc3', 'Bg7', 'd4', 'O-O'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Qe2', 'Bg7', 'h3', 'O-O'], ['e4', 'd6', 'Nc3', 'Nf6', 'Nf3', 'g6', 'd3', 'Bg7', 'Be2', 'O-O'], ['d4', 'd5', 'Nf3', 'c5', 'c3', 'c4', 'Bf4', 'Nc6', 'e3', 'e6'], ['d4', 'd6', 'Nf3', 'Nd7', 'Bf4', 'e6', 'e3', 'Be7', 'c4', 'Ngf6'], ['d4', 'Nf6', 'Bf4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Qd2', 'h6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'O-O'], ['d4', 'd5', 'Nf3', 'Bf5', 'c4', 'c6', 'Bf4', 'Nf6', 'e3', 'h6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Bg5', 'Bg7', 'Qf3', 'O-O'], ['d4', 'f5', 'Nf3', 'g6', 'Bf4', 'd6', 'e3', 'Nf6', 'c4', 'Bg7'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'c6', 'e3', 'Nbd7', 'Nbd2', 'g6'], ['d4', 'Nf6', 'Nf3', 'g6', 'e3', 'Bg7', 'Nbd2', 'd6', 'c4', 'O-O'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Bg5', 'O-O'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'e6', 'e3', 'c5', 'c3', 'Nbd7'], ['d4', 'e6', 'Nf3', 'd5', 'Bf4', 'a6', 'e3', 'Nf6', 'Nbd2', 'c5'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Bf4', 'Bg7', 'e5', 'Nfd7'], ['g4', 'h6', 'e4', 'd6', 'f3', 'Nf6', 'd4', 'g6', 'Nc3', 'Bg7'], ['d4', 'g6', 'Nf3', 'Bg7', 'Bf4', 'Nf6', 'e3', 'Nh5', 'Bg3', 'Nxg3'], ['d4', 'Nf6', 'Nf3', 'e6', 'Bf4', 'd5', 'e3', 'h6', 'Nbd2', 'Bd6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'f3', 'O-O'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'c5', 'c3', 'Bg4', 'e3', 'e6'], ['b4', 'Nf6', 'Bb2', 'g6', 'e4', 'd6', 'e5', 'dxe5', 'Bxe5', 'Bg7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'Bg5', 'd6', 'e3', 'O-O'], ['d4', 'c6', 'Nf3', 'd5', 'Bf4', 'Bg4', 'e3', 'Nd7', 'Nbd2', 'f6'], ['c4', 'Nf6', 'Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'd6', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'Nc3', 'Be7', 'd4', 'exd4'], ['e4', 'e6', 'Nc3', 'd5', 'd4', 'c5', 'dxc5', 'Bxc5', 'exd5', 'Qf6'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'd6', 'dxc5', 'dxc5', 'Qxd8+', 'Nxd8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Qe7', 'Nc3', 'Nf6', 'd3', 'h6'], ['e4', 'd5', 'f3', 'e5', 'Nc3', 'd4', 'Nce2', 'Qg5', 'd3', 'Qh4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'Nc3', 'Bc5'], ['e4', 'c5', 'Ke2', 'd5', 'exd5', 'Qxd5', 'Qe1', 'Nf6', 'h3', 'Nc6'], ['e4', 'd5', 'exd5', 'c6', 'dxc6', 'Nxc6', 'Nf3', 'e5', 'd3', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'Re1', 'Nc5'], ['e4', 'f5', 'f3', 'Nf6', 'Bd3', 'fxe4', 'fxe4', 'e6', 'Nf3', 'd5'], ['e4', 'c5', 'Ke2', 'Nc6', 'c3', 'd6', 'h3', 'Nf6', 'd4', 'c4'], ['e4', 'c5', 'd3', 'Nc6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Bd2', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'Bd6', 'Bg5', 'h6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'b6', 'Bb5+', 'Bd7', 'Nc3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'f6'], ['e4', 'Nc6', 'd3', 'Nf6', 'Nd2', 'g6', 'c3', 'Bg7', 'Nh3', 'O-O'], ['e4', 'c5', 'd3', 'd6', 'Nf3', 'Nc6', 'Bf4', 'e5', 'Bg3', 'Nf6'], ['d4', 'd5', 'c4', 'c6', 'a4', 'Nf6', 'Nc3', 'e6', 'e3', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd6', 'd4', 'exd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'Bd6', 'Bc4', 'Qe7', 'd4', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'f6', 'Nc3', 'Bb4', 'Bd2', 'Bxc3'], ['e4', 'c5', 'Nc3', 'd6', 'Nf3', 'Nf6', 'd3', 'Nc6', 'Be2', 'e5'], ['e4', 'c5', 'Qh5', 'g6', 'Qe5', 'd6', 'Qxh8', 'Nc6', 'Qxg8', 'Bg4'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Bg4', 'Be2', 'Be6', 'h3', 'Qf6'], ['e4', 'c5', 'd3', 'Nc6', 'Nf3', 'd6', 'Nc3', 'e6', 'Be3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'Nc6', 'Nc3', 'Bc5', 'Be3', 'Bb6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bc5', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'd3', 'Bc5', 'c3', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'd3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['d4', 'd5', 'c4', 'e6', 'Nf3', 'h6', 'Nc3', 'c6', 'Bf4', 'Nd7'], ['d4', 'e6', 'c4', 'b6', 'Nc3', 'Bb4', 'Nf3', 'Bb7', 'e3', 'Nf6'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'b5', 'Nc3', 'b4', 'Nb1', 'g6'], ['d4', 'Nf6', 'c4', 'c5', 'd5', 'e6', 'Nc3', 'exd5', 'Nxd5', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'd4', 'Nd6'], ['d4', 'e5', 'dxe5', 'Nc6', 'Nf3', 'd5', 'exd6', 'Bxd6', 'Bg5', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'Nf3', 'Nc6', 'd3', 'O-O'], ['d4', 'd5', 'c4', 'Bf5', 'Qb3', 'b6', 'cxd5', 'Nf6', 'Nc3', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'Re1', 'Nd6'], ['d4', 'e6', 'c4', 'b6', 'Nc3', 'Bb4', 'Nf3', 'Bxc3+', 'bxc3', 'Bb7'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'O-O'], ['d4', 'e5', 'dxe5', 'Qe7', 'Nf3', 'Nc6', 'e4', 'Nxe5', 'Bg5', 'Qb4+'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'd4', 'Nd6'], ['d4', 'd5', 'c4', 'Nf6', 'cxd5', 'Qxd5', 'Nc3', 'Qd8', 'e4', 'e6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'd5', 'e3', 'c5', 'dxc5', 'Bxc5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'c5', 'd5', 'exd5', 'Nxd5', 'Nxd5'], ['d4', 'c6', 'e4', 'd5', 'e5', 'e6', 'f4', 'c5', 'Nf3', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['d4', 'd6', 'c4', 'e5', 'dxe5', 'dxe5', 'Qxd8+', 'Kxd8', 'Nf3', 'f6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Nb3', 'Bb6'], ['d4', 'Nf6', 'c4', 'g6', 'Nc3', 'Bg7', 'e4', 'd6', 'Nf3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['d4', 'b6', 'c4', 'Bb7', 'Nf3', 'Nf6', 'e3', 'e6', 'Bd3', 'Be7'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'd5', 'Nc3', 'Bb4', 'e3', 'O-O'], ['e4', 'c5', 'Nf3', 'Nc6', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb5', 'd6'], ['e4', 'e5', 'd4', 'exd4', 'Bc4', 'Nc6', 'Nf3', 'Bc5', 'c3', 'Qe7'], ['e4', 'c5', 'Nc3', 'e6', 'd3', 'd5', 'exd5', 'exd5', 'Qe2+', 'Be7'], ['e4', 'c5', 'Nc3', 'e5', 'Nf3', 'Nc6', 'd3', 'Nf6', 'Bg5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nf3', 'Nxe4', 'Nxe5', 'Qe7', 'Bxf7+', 'Kd8'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'c5', 'Nc3', 'Nc6', 'g3', 'd6', 'Bg2', 'g6', 'd3', 'e5'], ['e4', 'e5', 'Nf3', 'Bc5', 'Nxe5', 'd6', 'd4', 'dxe5', 'dxc5', 'Qxd1+'], ['d4', 'd5', 'f3', 'Nc6', 'h4', 'h6', 'g4', 'g6', 'Bg2', 'Be6'], ['d4', 'd5', 'c4', 'dxc4', 'Nf3', 'Nf6', 'Nc3', 'Nc6', 'e3', 'Bg4'], ['e4', 'c5', 'Nf3', 'Nc6', 'Nc3', 'e6', 'd3', 'g6', 'd4', 'cxd4'], ['b3', 'e5', 'Bb2', 'Nc6', 'e3', 'Nf6', 'Nf3', 'd6', 'Be2', 'g6'], ['e4', 'c5', 'c3', 'Nc6', 'Nf3', 'e6', 'd4', 'cxd4', 'Nxd4', 'a6'], ['d4', 'Nc6', 'c4', 'e5', 'd5', 'Nb4', 'Nc3', 'c5', 'Nf3', 'Bd6'], ['e4', 'd5', 'exd5', 'Nf6', 'Nf3', 'Nxd5', 'Bc4', 'Bf5', 'Ng5', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'Bb5', 'd6', 'Nd5', 'Nxe4'], ['e4', 'e5', 'f4', 'exf4', 'Nf3', 'Nf6', 'e5', 'Qe7', 'd4', 'Ng4'], ['d4', 'd5', 'Nc3', 'Nf6', 'Bg5', 'Nc6', 'Bxf6', 'exf6', 'e3', 'Bb4'], ['e4', 'c5', 'Bc4', 'd6', 'Nf3', 'Nc6', 'Ng5', 'e6', 'Nc3', 'Nf6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'd5', 'Bxd5', 'Nxd5', 'exd5', 'Qxd5'], ['e4', 'c6', 'Nf3', 'd5', 'exd5', 'cxd5', 'Nc3', 'Nf6', 'd4', 'Bg4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e6', 'd4', 'd5', 'Nc3', 'Nf6', 'e5', 'Nfd7', 'Nf3', 'c5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'd6', 'c3', 'g6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'Ng5', 'Qxg5', 'd4', 'Qxg2'], ['d4', 'd5', 'c4', 'Nf6', 'Nf3', 'Nc6', 'e3', 'e6', 'Nc3', 'Bd7'], ['e4', 'e5', 'Nf3', 'd6', 'Nc3', 'Nf6', 'Bc4', 'h6', 'd4', 'exd4'], ['e4', 'e5', 'd3', 'd6', 'f3', 'f6', 'g3', 'g6', 'c3', 'c6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4'], ['e4', 'e5', 'Bc4', 'Bc5', 'Nf3', 'd6', 'd3', 'Nf6', 'Ng5', 'd5'], ['e4', 'e5', 'f3', 'f6', 'Nc3', 'd6', 'Bb5+', 'c6', 'Bxc6+', 'bxc6'], ['d4', 'd5', 'e3', 'Bf5', 'Bb5+', 'c6', 'Bxc6+', 'Nxc6', 'Qh5', 'Qd7'], ['d4', 'd5', 'Bf4', 'c6', 'Nf3', 'Bg4', 'Nbd2', 'Bxf3', 'Nxf3', 'Na6'], ['e4', 'c6', 'd4', 'd5', 'Nc3', 'dxe4', 'Nxe4', 'Bf5', 'Ng3', 'Bg6'], ['e4', 'd6', 'Nc3', 'Nf6', 'f4', 'g6', 'Nf3', 'Bg7', 'Bc4', 'O-O'], ['d4', 'g6', 'Bf4', 'Bg7', 'e3', 'd6', 'Nf3', 'Nf6', 'c4', 'c6'], ['d4', 'Nf6', 'Bf4', 'e6', 'e3', 'd5', 'Bd3', 'c5', 'c3', 'Nc6'], ['d3', 'g6', 'c3', 'f5', 'Nd2', 'Bg7', 'g3', 'Nf6', 'Bg2', 'c6'], ['d4', 'e6', 'Bf4', 'd5', 'e3', 'f5', 'Be2', 'Nf6', 'Nf3', 'Be7'], ['e4', 'd6', 'd4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'Nf6', 'Be3', 'Bg4'], ['d4', 'f5', 'Nf3', 'g6', 'Bf4', 'd6', 'e3', 'Nf6', 'c4', 'Bg7'], ['e4', 'd6', 'd4', 'Nf6', 'e5', 'dxe5', 'dxe5', 'Qxd1+', 'Kxd1', 'Ng4'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Bd3', 'Bg7', 'a3', 'O-O'], ['d4', 'd5', 'Bf4', 'e6', 'e3', 'Nf6', 'Bd3', 'c5', 'c3', 'Bd6'], ['d4', 'f5', 'Nf3', 'e6', 'Bf4', 'Nf6', 'c4', 'd6', 'Nc3', 'Be7'], ['d4', 'd5', 'Bf4', 'a6', 'e3', 'Nc6', 'Bd3', 'h6', 'Nf3', 'e6'], ['d4', 'Nf6', 'Bf4', 'd6', 'e3', 'e6', 'Bd3', 'Nbd7', 'Nf3', 'Be7'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Bg5', 'Bg7', 'Qd2', 'O-O'], ['e4', 'd6', 'Nf3', 'Nf6', 'e5', 'dxe5', 'Nxe5', 'g6', 'Bc4', 'e6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'c5', 'c3', 'Qb6', 'b3', 'Bf5'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Bf5', 'Bd3', 'Qd7', 'Nf3', 'f6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'e5', 'dxe5', 'Nf3', 'exd4'], ['d4', 'c6', 'Bf4', 'd5', 'e3', 'Nf6', 'Bd3', 'Bg4', 'Nf3', 'e6'], ['d4', 'f5', 'e3', 'Nf6', 'Bd3', 'g6', 'Nd2', 'Bg7', 'Ngf3', 'd6'], ['e4', 'd6', 'd4', 'Nf6', 'Bd3', 'g6', 'Ne2', 'Bg7', 'O-O', 'O-O'], ['d4', 'd5', 'Bf4', 'Nd7', 'e3', 'e6', 'Bd3', 'Ngf6', 'Nf3', 'c5'], ['d4', 'Nf6', 'Bf4', 'd5', 'e3', 'c5', 'c3', 'Nc6', 'Bd3', 'e6'], ['e4', 'd6', 'f4', 'Nf6', 'Nc3', 'g6', 'd4', 'Bg7', 'h3', 'O-O'], ['d4', 'd5', 'Bf4', 'e6', 'e3', 'h6', 'Bd3', 'Nf6', 'Nf3', 'Nc6'], ['e3', 'f5', 'Qf3', 'g6', 'Bc4', 'Nf6', 'g4', 'Nxg4', 'Qd5', 'e6'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Nf6', 'Bd3', 'Bg4', 'Nf3', 'Bxf3'], ['d4', 'f5', 'c4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'd6', 'e4', 'Nf6'], ['e4', 'd6', 'Nf3', 'Nf6', 'Bc4', 'Nxe4', 'O-O', 'g6', 'Re1', 'Nf6'], ['d4', 'Nf6', 'Bf4', 'g6', 'Nc3', 'Bg7', 'e4', 'O-O', 'Be2', 'd6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'f4', 'Bg7', 'Nf3', 'O-O'], ['e4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'g6', 'h3', 'Bg7', 'Bc4', 'O-O'], ['e4', 'd6', 'Nf3', 'Nf6', 'Nc3', 'g6', 'Bb5+', 'c6', 'Bc4', 'b5'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'Nf3', 'd6', 'Be2', 'O-O'], ['d4', 'f5', 'c4', 'g6', 'Nc3', 'Nf6', 'Nf3', 'd6', 'Bg5', 'Bg7'], ['d4', 'd5', 'Bf4', 'c5', 'c3', 'Nc6', 'e3', 'e6', 'Bd3', 'Qb6'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'Be2', 'O-O', 'Nf3', 'd6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'c5', 'c3', 'Nc6', 'Bd3', 'c4'], ['d4', 'Nf6', 'Bf4', 'c5', 'c3', 'cxd4', 'cxd4', 'Nc6', 'd5', 'Qa5+'], ['d4', 'f5', 'c4', 'g6', 'Nc3', 'Nf6', 'Bg5', 'Bg7', 'Bxf6', 'Bxf6'], ['Nf3', 'f5', 'b4', 'd6', 'Bb2', 'e5', 'c4', 'g6', 'd4', 'exd4'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Bg5', 'Bg7', 'Bxf6', 'Bxf6'], ['e4', 'Nc6', 'd4', 'e5', 'd5', 'Nd4', 'c3', 'Qh4', 'Nd2', 'Bc5'], ['Nf3', 'd5', 'e3', 'c5', 'd4', 'cxd4', 'Nxd4', 'e5', 'Nb3', 'Nc6'], ['Nf3', 'Nf6', 'c4', 'e6', 'a3', 'd5', 'c5', 'Bxc5', 'd4', 'Bd6'], ['e4', 'c5', 'Bc4', 'Nc6', 'c3', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5'], ['d4', 'Nf6', 'e3', 'e6', 'Bd3', 'Bb4+', 'c3', 'Ba5', 'f4', 'd5'], ['Nf3', 'd5', 'e3', 'e6', 'Nc3', 'a6', 'b3', 'Nf6', 'Bb2', 'Be7'], ['Nf3', 'e6', 'g3', 'b6', 'Bg2', 'Bb7', 'O-O', 'h5', 'Ne5', 'Bxg2'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'Nf6', 'Nc3', 'e6', 'd3', 'Na5'], ['Nf3', 'Nc6', 'e3', 'e5', 'Bb5', 'a6', 'Bxc6', 'bxc6', 'Nxe5', 'Nf6'], ['e4', 'c5', 'Nc3', 'Nc6', 'Nf3', 'Nf6', 'd4', 'cxd4', 'Nxd4', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'd6', 'd4', 'Bb6'], ['e4', 'Nc6', 'Nc3', 'Nf6', 'Nf3', 'e6', 'e5', 'Nh5', 'd4', 'Bb4'], ['e4', 'e5', 'Nf3', 'Nc6', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'Bg4'], ['Nf3', 'd5', 'd4', 'Bg4', 'Nc3', 'Bxf3', 'gxf3', 'e6', 'Bf4', 'c5'], ['Nf3', 'd5', 'd4', 'Nf6', 'Bf4', 'Bf5', 'e3', 'e6', 'Nh4', 'Bg6'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'a3', 'Bxc3+', 'bxc3', 'c5'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'c5', 'e3', 'cxd4'], ['e4', 'd5', 'Nf3', 'dxe4', 'Ng5', 'e6', 'Nxe4', 'Nf6', 'Nbc3', 'a6'], ['Nf3', 'Nc6', 'c4', 'e5', 'e4', 'Nf6', 'Nc3', 'Bc5', 'a3', 'Ng4'], ['g3', 'Nf6', 'Bg2', 'c6', 'd4', 'd5', 'Nc3', 'Bf5', 'Bg5', 'Nbd7'], ['Nf3', 'e6', 'e4', 'd5', 'e5', 'Nc6', 'd4', 'a6', 'Be2', 'Bd7'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'Nf6', 'd3', 'g6', 'Be2', 'Bg7'], ['Nf3', 'd5', 'd4', 'Nc6', 'Bf4', 'f6', 'Nbd2', 'Bf5', 'h3', 'e6'], ['e4', 'Nf6', 'e5', 'Nd5', 'Bc4', 'Nb6', 'Bb3', 'Nc6', 'Nf3', 'd6'], ['Nf3', 'c5', 'e4', 'b6', 'd4', 'cxd4', 'Nxd4', 'Bb7', 'Bd3', 'e5'], ['Nf3', 'Nc6', 'd4', 'd5', 'Bf4', 'Nf6', 'Nc3', 'e6', 'Nb5', 'Bd6'], ['e4', 'e5', 'Qf3', 'Nf6', 'h3', 'd5', 'd3', 'd4', 'Ne2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'd6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'd5', 'h3', 'd4', 'Ne2', 'Bc5'], ['Nf3', 'Nf6', 'd4', 'd5', 'c4', 'c6', 'cxd5', 'Qa5+', 'Bd2', 'Qxd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Nc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'd3', 'h6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Qe7', 'd4', 'd6', 'Nf3', 'Nxe4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nd4', 'Nxd4', 'exd4', 'Qf3', 'Qe7'], ['d4', 'd5', 'Nf3', 'c6', 'e3', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'Nf6'], ['d4', 'd5', 'Nf3', 'c6', 'Bg5', 'h6', 'Bh4', 'Nf6', 'Bxf6', 'exf6'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Bg5', 'Be7'], ['e4', 'e5', 'Qh5', 'Nc6', 'Qxf7+', 'Kxf7', 'd4', 'Nxd4', 'Be2', 'Nxc2+'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Qxd4', 'Nc6', 'Qd1', 'Nf6'], ['e4', 'e5', 'Nf3', 'Qf6', 'd4', 'exd4', 'Nxd4', 'Bc5', 'Be3', 'd6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Nf3', 'Qc7', 'd4', 'cxd4', 'Nxd4', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd3', 'd6', 'Be3', 'Bg4'], ['e4', 'e5', 'Qf3', 'Nf6', 'g4', 'g6', 'h3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'Nf3', 'O-O', 'O-O', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'd6', 'h3', 'Qe7'], ['b3', 'b6', 'Bb2', 'Bb7', 'Nf3', 'Nf6', 'e3', 'e6', 'Nh4', 'g6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Qb6'], ['e4', 'e5', 'Qh5', 'Nc6', 'Bc4', 'g6', 'Qf3', 'Nf6', 'd3', 'Nd4'], ['e4', 'e5', 'Nf3'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'h6', 'c3', 'Nf6', 'd3', 'd5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'Nf6', 'Nf3', 'Bg4', 'Bg5', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Bc5', 'd4', 'exd4', 'Nxd4', 'Qf6', 'c3', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Nc3', 'Nf6', 'd4', 'Bb4', 'Bd2', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd4', 'd5', 'Nxe5', 'dxc4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'c6', 'd3', 'Qa5+', 'Nd2', 'Qxe5'], ['e4', 'c5', 'Bc4', 'a6', 'Qf3', 'e6', 'Ne2', 'b5', 'e5', 'bxc4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'exd4', 'Nxd4', 'a6', 'Bc4', 'Qh4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd3', 'd5', 'g3', 'dxe4', 'Ng1', 'Nf6'], ['e4', 'c5', 'Bc4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Bb5+', 'Bd7'], ['e4', 'c5', 'Bc4', 'e6', 'd4', 'cxd4', 'Qxd4', 'Nc6', 'Qd1', 'Bb4+'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'cxd4'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Bxc6', 'dxc6', 'Nxe5', 'Qd4'], ['e4', 'e5', 'Bb5', 'a6', 'Ba4', 'b6', 'a3', 'b5', 'Bb3', 'Nf6'], ['e3', 'e5', 'f4', 'exf4', 'exf4', 'Nf6', 'Qe2+', 'Be7', 'Nf3', 'Kf8'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'Nf3', 'Bg4', 'Be2', 'e6'], ['a4', 'a5', 'e4', 'e5', 'h4', 'h5', 'Bc4', 'Bc5', 'Rh3', 'd5'], ['Nf3', 'Nf6', 'e3', 'e6', 'd4', 'd5', 'c4', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'Qe2', 'd5', 'f3', 'Nc5'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Bd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'O-O', 'Nf6', 'Nc3', 'O-O'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Bc5', 'Bc4', 'd5', 'exd5', 'Qe7'], ['e4', 'e5', 'Nf3', 'c6', 'd4', 'Qc7', 'dxe5', 'Na6', 'Bf4', 'Nh6'], ['e4', 'e5', 'c3', 'Nf6', 'Nf3', 'Bc5', 'Nxe5', 'Nc6', 'Nxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Bc5', 'h3', 'd5', 'exd5', 'Nxd5'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'exd4', 'e5', 'Bb4+', 'Bd2', 'Bxd2+'], ['e4', 'e5', 'Nf3', 'Nf6', 'd4', 'exd4', 'e5', 'Ne4', 'Bd3', 'd5'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Qf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Bc4', 'e5', 'Ng5', 'Be6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Ne2', 'Ng4', 'O-O', 'Qh4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd5', 'exd5', 'Nxd5', 'Bc4', 'Nxc3'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nge7', 'Nxc6', 'Nxc6'], ['d4', 'e5', 'd5', 'f6', 'a3', 'c6', 'Nc3', 'cxd5', 'Nxd5', 'd6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Qa5', 'Nf3', 'Nc6', 'Bb5', 'Bd7'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nf6', 'Be2', 'Bd6'], ['d4', 'e5', 'd5', 'f6', 'c4', 'Bc5', 'Nc3', 'd6', 'e4', 'Ne7'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nf6', 'Bd3', 'Nxd4'], ['e4', 'e5', 'Nf3', 'Nf6', 'Bc4', 'Bc5', 'O-O', 'd5', 'Bxd5', 'Nxd5'], ['e4', 'c5', 'd4', 'cxd4', 'Nf3', 'Nc6', 'Bc4', 'e6', 'Ng5', 'Bb4+'], ['e4', 'd5', 'exd5', 'Nf6', 'd6', 'cxd6', 'Nf3', 'e5', 'd4', 'e4'], ['e4', 'e5', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'f4', 'd5', 'Bd3', 'Qh4+'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Bg4', 'Bc4', 'Bxf3', 'Qxf3', 'Nf6'], ['Nf3', 'Nf6', 'h3', 'd6', 'd4', 'e5', 'd5', 'c6', 'c4', 'Be7'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'd4', 'Bg4'], ['e4', 'e5', 'f4', 'd5', 'exd5', 'Bc5', 'Nf3', 'Nh6', 'fxe5', 'f6'], ['e4', 'e5', 'Nf3', 'f6', 'Bc4', 'd5', 'exd5', 'Ne7', 'd4', 'exd4'], ['d3', 'e5', 'a3', 'd5', 'h3', 'Nf6', 'Bg5', 'Bc5', 'Nf3', 'e4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'e5', 'Bc4', 'Nf6', 'd3', 'Bc5', 'Bg5', 'c6', 'Bxf6', 'Qxf6'], ['e4', 'c5', 'd4', 'Nc6', 'Nf3', 'cxd4', 'Nxd4', 'e6', 'Bc4', 'a6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nxe5', 'Nxe4', 'd3', 'Nd6', 'Be2', 'h5'], ['c4', 'e5', 'Nc3', 'd5', 'Nxd5', 'Nf6', 'Ne3', 'Bc5', 'Nf3', 'O-O'], ['e4', 'e5', 'f4', 'd5', 'exd5', 'c6', 'dxc6', 'Nxc6', 'Nf3', 'Nf6'], ['e4', 'a6', 'd4', 'h6', 'Nf3', 'd6', 'Bc4', 'Bg4', 'O-O', 'e6'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4', 'Qxd4', 'd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'd3', 'd5', 'exd5', 'Nxd5', 'Be2', 'Bd6'], ['e4', 'e5', 'Nf3', 'Nf6', 'Nc3', 'd6', 'Bc4', 'Be7', 'O-O', 'O-O'], ['e4', 'c5', 'd4', 'Nc6', 'Nf3', 'e6', 'd5', 'exd5', 'Qxd5', 'Nf6'], ['e4', 'e5', 'd4', 'exd4', 'Nf3', 'Nc6', 'Bc4', 'Bb4+', 'c3', 'dxc3'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Ng5', 'Be6', 'Bxe6', 'fxe6'], ['d4', 'e5', 'dxe5', 'f6', 'exf6', 'Nxf6', 'Nf3', 'Be7', 'Nc3', 'O-O'], ['e4', 'e5', 'Nf3', 'd6', 'd4', 'Nf6', 'dxe5', 'Nxe4', 'Bd3', 'Nc5'], ['e4', 'e5', 'Bc4', 'Nf6', 'Nc3', 'Bc5', 'd3', 'd5', 'exd5', 'Ng4'], ['c4', 'e5', 'Nc3', 'Bc5', 'g3', 'Nf6', 'Bg2', 'd5', 'cxd5', 'c6'], ['e4', 'e5', 'Nf3', 'f6', 'd4', 'd6', 'dxe5', 'dxe5', 'Bd3', 'Bg4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'exd5', 'Nf3', 'Nc6', 'Be2', 'Bd6'], ['c4', 'e5', 'Nc3', 'Nf6', 'e4', 'd5', 'cxd5', 'Bc5', 'h3', 'O-O'], ['e4', 'e6', 'Nf3', 'Nf6', 'Nc3', 'Bb4', 'd4', 'Bxc3+', 'bxc3', 'Nxe4'], ['e4', 'c5', 'c3', 'd6', 'a4', 'Nf6', 'f3', 'Nc6', 'Bb5', 'e5'], ['e4', 'c5', 'Nf3', 'd6', 'g3', 'Bg4', 'Bg2', 'Nf6', 'd3', 'Nc6'], ['d4', 'd5', 'Bf4', 'Nf6', 'e3', 'c6', 'c4', 'e6', 'Nf3', 'Nbd7'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'd6', 'h3', 'Bd7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'Nc3', 'e6', 'O-O', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'Nf6', 'd3', 'Bg4', 'Nbd2', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'b5', 'Bb3', 'Nf6'], ['e4', 'c5', 'Bc4', 'd6', 'd3', 'Nf6', 'Nf3', 'a6', 'O-O', 'b5'], ['e4', 'c5', 'Nf3', 'd6', 'Bb5+', 'Nd7', 'O-O', 'Nf6', 'Re1', 'a6'], ['e4', 'c5', 'Nf3', 'Nc6', 'c3', 'd5', 'e5', 'Bg4', 'Bb5', 'Qc7'], ['d4', 'Nf6', 'c4', 'e6', 'a3', 'c5', 'Nf3', 'cxd4', 'Nxd4', 'Nc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'd6', 'c3', 'Nf6'], ['c4', 'e5', 'g3', 'Nf6', 'Bg2', 'd5', 'cxd5', 'Nxd5', 'Nc3', 'Be6'], ['e4', 'e6', 'd4', 'b6', 'Nf3', 'Bb7', 'Bd3', 'Nf6', 'e5', 'Ng8'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'a6', 'c4', 'Nf6'], ['e4', 'Nc6', 'Nf3', 'e5', 'Bb5', 'd6', 'O-O', 'Nf6', 'Re1', 'Bd7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c6', 'd4', 'd5', 'e5', 'Bf5', 'c4', 'dxc4', 'Bxc4', 'e6'], ['e4', 'c5', 'f4', 'd6', 'Nf3', 'Nf6', 'd3', 'e5', 'fxe5', 'dxe5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nge7', 'O-O', 'a6', 'Ba4', 'b5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'c5', 'exd5', 'exd5', 'dxc5', 'Bxc5'], ['e4', 'c5', 'Bc4', 'd6', 'a4', 'Nf6', 'd3', 'e6', 'Nf3', 'h6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Bc5', 'O-O', 'Nf6', 'Re1', 'Nd4'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Bd3', 'e5'], ['e4', 'g6', 'd4', 'Bg7', 'Nf3', 'h6', 'c4', 'd6', 'Nc3', 'Nc6'], ['d4', 'Nf6', 'c4', 'e6', 'g3', 'd5', 'cxd5', 'exd5', 'Bg2', 'c5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Bc4', 'd6', 'd3', 'Nf6', 'Bg5', 'e6', 'f4', 'Be7'], ['e4', 'e6', 'd4', 'd5', 'e5', 'c5', 'c3', 'Nc6', 'Nf3', 'Bd7'], ['e4', 'c5', 'Bc4', 'd6', 'Nc3', 'Nf6', 'Nf3', 'a6', 'd4', 'cxd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'b5'], ['e4', 'c5', 'c3', 'd6', 'd4', 'e6', 'Bc4', 'Nf6', 'Nd2', 'a6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Nxe4', 'Re1', 'Nd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'Bc4', 'd6', 'd3', 'Nf6', 'Nf3', 'e6', 'Ng5', 'h6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'a6', 'Ba4', 'Nf6', 'O-O', 'Be7'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nc6', 'Be3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'Nf6', 'O-O', 'Bd6', 'Re1', 'a6'], ['e4', 'c5', 'Bc4', 'Nc6', 'Qh5', 'e6', 'f4', 'Nf6', 'Qf3', 'd6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'h6', 'O-O', 'g5', 'h3', 'g4'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Bg4', 'h3', 'Bxf3', 'Qxf3', 'Qf6'], ['e4', 'e5', 'Nf3', 'd6', 'Bc4', 'Qe7', 'O-O', 'Nc6', 'c3', 'Nf6'], ['d4', 'Nf6', 'f4', 'e6', 'e3', 'c5', 'c3', 'Nc6', 'h4', 'd5'], ['e4', 'b6', 'd4', 'Bb7', 'Bd3', 'e6', 'Nc3', 'Nf6', 'Nf3', 'Bb4'], ['b3', 'e5', 'Bb2', 'd6', 'e3', 'Nc6', 'Bb5', 'Bd7', 'Nf3', 'Nf6'], ['d4', 'b6', 'Nf3', 'Bb7', 'c4', 'e6', 'Nc3', 'Bb4', 'e3', 'f5'], ['b4', 'e5', 'Bb2', 'd6', 'g3', 'g6', 'Bg2', 'Bg7', 'd3', 'Ne7'], ['e4', 'b6', 'd4', 'Bb7', 'Nc3', 'e6', 'a3', 'Nf6', 'Bd3', 'Be7'], ['d4', 'e6', 'c4', 'b6', 'a3', 'Bb7', 'Nc3', 'f5', 'd5', 'exd5'], ['b4', 'e5', 'Bb2', 'Nf6', 'Bxe5', 'Bxb4', 'c4', 'O-O', 'e3', 'Nc6'], ['d4', 'b6', 'Bf4', 'Bb7', 'e3', 'e6', 'Nf3', 'Nf6', 'Nbd2', 'c5'], ['b4', 'd5', 'Bb2', 'Nf6', 'e3', 'Nbd7', 'Nf3', 'e6', 'a3', 'a6'], ['d4', 'Nf6', 'Nf3', 'e6', 'a3', 'c5', 'e3', 'b6', 'Be2', 'Nc6'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'c3', 'd3', 'Bxd3', 'Bg7'], ['Nf3', 'c5', 'g3', 'e6', 'Bg2', 'g5', 'd3', 'Be7', 'e4', 'Nc6'], ['e4', 'd5', 'exd5', 'Qxd5', 'Nf3', 'Bg4', 'Be2', 'Nf6', 'Nc3', 'Qa5'], ['d4', 'Nf6', 'Bf4', 'g6', 'e3', 'Bg7', 'c3', 'd5', 'Nd2', 'O-O'], ['e4', 'c5', 'Nf3', 'a6', 'c3', 'd5', 'exd5', 'Qxd5', 'd4', 'Nf6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'Nf6', 'e5', 'Nd5', 'cxd4', 'd6'], ['b4', 'e5', 'Bb2', 'Bxb4', 'Bxe5', 'Nf6', 'Nf3', 'd5', 'e3', 'O-O'], ['e4', 'g6', 'd4', 'Bg7', 'c4', 'd6', 'Nc3', 'Nf6', 'Nf3', 'O-O'], ['b4', 'd5', 'Bb2', 'e6', 'a3', 'Nf6', 'e3', 'c5', 'b5', 'b6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'f4', 'Bg7', 'Nf3', 'O-O'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'Nf6', 'Bg5', 'Be7', 'e3', 'h6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Be3', 'c6'], ['d4', 'Nf6', 'Nf3', 'e6', 'c4', 'b6', 'g3', 'Bb7', 'Bg2', 'Be7'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Be3', 'Bg7', 'f3', 'O-O'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Be3', 'Bg7'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Be3', 'Bg7', 'f3', 'e5'], ['d4', 'e6', 'c4', 'f5', 'Nc3', 'Nf6', 'g3', 'Be7', 'Bg2', 'O-O'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Nf3', 'Bg7', 'Bd3', 'c6'], ['d4', 'd5', 'c4', 'e5', 'dxe5', 'd4', 'Nf3', 'Nc6', 'a3', 'Bg4'], ['d4', 'd5', 'c4', 'dxc4', 'e3', 'c5', 'Bxc4', 'cxd4', 'exd4', 'Nf6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'Be3', 'Bg7', 'Qd2', 'c6'], ['d4', 'f5', 'Bg5', 'h6', 'Bh4', 'g5', 'e3', 'Nf6', 'Be2', 'g4'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Bf5', 'e3', 'e6', 'Bd3', 'Bxd3'], ['d4', 'd5', 'c4', 'e6', 'Nc3', 'dxc4', 'e4', 'g6', 'Bxc4', 'Bg7'], ['e4', 'd6', 'Nf3', 'Nf6', 'd3', 'c5', 'c4', 'g6', 'Nc3', 'Bg7'], ['e4', 'd6', 'd4', 'Nf6', 'Bd3', 'g6', 'f4', 'e5', 'fxe5', 'dxe5'], ['f4', 'd5', 'Nf3', 'Nf6', 'e3', 'g6', 'b3', 'Bg7', 'Bb2', 'O-O'], ['d4', 'Nf6', 'Nf3', 'g6', 'g3', 'Bg7', 'Bg2', 'd6', 'O-O', 'O-O'], ['d4', 'Nf6', 'Nf3', 'd5', 'c4', 'e6', 'Nc3', 'Bb4', 'Bg5', 'h6'], ['d4', 'd5', 'Nf3', 'Nf6', 'Bf4', 'Bf5', 'e3', 'c6', 'Nbd2', 'e6'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'dxc4', 'a4', 'Bf5', 'e3', 'e6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'g6', 'f4', 'Bg7', 'Nf3', 'c5'], ['d4', 'd5', 'c4', 'c6', 'Nc3', 'e6', 'cxd5', 'cxd5', 'Nf3', 'f5'], ['e4', 'c5', 'Nc3', 'e6', 'f4', 'd5', 'Nf3', 'dxe4', 'Nxe4', 'Nc6'], ['f4', 'd5', 'Nf3', 'Nf6', 'e3', 'g6', 'Be2', 'Bg7', 'O-O', 'O-O'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'd3', 'Bc5', 'O-O', 'd6'], ['e4', 'e6', 'd4', 'd5', 'Nd2', 'Nf6', 'e5', 'Nfd7', 'Bd3', 'c5'], ['e4', 'e5', 'Nc3', 'Nf6', 'g3', 'Bc5', 'Bg2', 'a5', 'Nge2', 'd6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Be7', 'O-O', 'Nf6', 'Re1', 'O-O'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'b6', 'g3', 'Bb7', 'Bg2', 'Be7'], ['d4', 'Nf6', 'c4', 'e6', 'Nc3', 'Bb4', 'Qc2', 'c5', 'dxc5', 'Na6'], ['e4', 'c5', 'Nc3', 'Nc6', 'f4', 'g6', 'Nf3', 'Bg7', 'Bb5', 'Nd4'], ['e4', 'e5', 'Nf3', 'Nc6', 'd4', 'exd4', 'Bc4', 'Bc5', 'c3', 'Nf6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bb5', 'g6', 'd4', 'exd4', 'Bxc6', 'dxc6'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'c3', 'Nf6', 'd4', 'exd4'], ['d4', 'Nf6', 'c4', 'e6', 'Nf3', 'Bb4+', 'Bd2', 'a5', 'e3', 'O-O'], ['e4', 'g6', 'Nc3', 'Bg7', 'f4', 'c6', 'g3', 'd6', 'Bg2', 'e5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'd5', 'exd5', 'Na5'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['e4', 'c5', 'c4', 'Nc6', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['c4', 'Nf6', 'd4', 'g6', 'Nc3', 'Bg7', 'Nf3', 'O-O', 'g3', 'd6'], ['e4', 'c5', 'Nf3', 'd6', 'd4', 'cxd4', 'Nxd4', 'Nf6', 'Nc3', 'a6'], ['c4', 'Nf6', 'g3', 'g6', 'Bg2', 'Bg7', 'Nc3', 'O-O', 'Nf3', 'Re8'], ['e4', 'c5', 'Nh3', 'Nc6', 'Bc4', 'Nf6', 'Ng5', 'e6', 'Qf3', 'Ne5'], ['c4', 'Nf6', 'Nf3', 'e6', 'Nc3', 'Be7', 'e3', 'O-O', 'd4', 'd5'], ['e4', 'c5', 'Nf3', 'd6', 'Bc4', 'e6', 'd4', 'cxd4', 'Nxd4', 'Nf6'], ['e4', 'c5', 'd4', 'cxd4', 'c3', 'dxc3', 'Bc4', 'cxb2', 'Bxb2', 'e6'], ['c4', 'd5', 'cxd5', 'Qxd5', 'Nc3', 'Qf5', 'Nf3', 'e5', 'e4', 'Qg4'], ['c4', 'c6', 'Nf3', 'd5', 'c5', 'Nf6', 'd4', 'Bg4', 'Nc3', 'Nbd7'], ['e4', 'c5', 'Nf3', 'g6', 'd4', 'cxd4', 'Nxd4', 'Bg7', 'Be3', 'Nf6'], ['c4', 'Nf6', 'Nc3', 'd5', 'c5', 'a5', 'd4', 'e6', 'Nf3', 'h6'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'Nbd7', 'Qf3', 'e5', 'dxe5', 'Nxe5'], ['d4', 'e6', 'Bf4', 'Nf6', 'e3', 'd6', 'c3', 'e5', 'Bg3', 'exd4'], ['c4', 'e5', 'Nc3', 'Nf6', 'Nf3', 'Nc6', 'd4', 'exd4', 'Nxd4', 'Nxd4'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'Nc6', 'Nf3', 'e5', 'dxe5', 'dxe5'], ['c4', 'e5', 'Nc3', 'Bc5', 'e3', 'Nc6', 'a3', 'Nf6', 'b4', 'Bd6'], ['e4', 'd6', 'Qh5', 'Nf6', 'Qh6', 'gxh6', 'Bb5+', 'Nc6', 'Ba4', 'e5'], ['c4', 'e5', 'Nc3', 'Bb4', 'Nd5', 'a5', 'Nf3', 'Nc6', 'a3', 'Bc5'], ['e4', 'e5', 'Nf3', 'Nc6', 'Bc4', 'Bc5', 'b4', 'Bxb4', 'c3', 'Ba5'], ['c4', 'Nf6', 'd4', 'e6', 'Nc3', 'Bb4', 'Bd2', 'c5', 'Be3', 'b6'], ['d4', 'd5', 'Bf4', 'Bf5', 'e3', 'Nf6', 'c3', 'e6', 'Nf3', 'Nh5'], ['e4', 'd6', 'd4', 'Nf6', 'Nc3', 'Nbd7', 'f4', 'e5', 'Nf3', 'Be7'], ['c4', 'Nf6', 'Nc3', 'd5', 'cxd5', 'Nxd5', 'e4', 'Nf4', 'd4', 'c6'], ['e4', 'e6', 'd4', 'd5', 'e5', 'Nc6', 'Nf3', 'f6', 'Bb5', 'Bd7'], ['e4', 'c5', 'c3', 'g6', 'd4', 'd6', 'Nf3', 'Nf6', 'e5', 'dxe5'], ['e4', 'd6', 'd4', 'Nf6', 'e5', 'dxe5', 'Be2', 'exd4', 'Nf3', 'Nc6'], ['c4', 'd5', 'e3', 'dxc4', 'Bxc4', 'Nc6', 'a3', 'Ne5', 'd4', 'Nxc4'], ['e4', 'e6', 'd4', 'd5', 'exd5', 'Qxd5', 'Nc3', 'Bb4', 'a3', 'Bxc3+'], ['e4', 'e6', 'Nf3', 'd5', 'Nc3', 'Bb4', 'exd5', 'exd5', 'd4', 'Bg4'], ['c4', 'e5', 'd4', 'exd4', 'Qxd4', 'Nf6', 'Bg5', 'Be7', 'e4'], ['e4', 'e6', 'Nf3', 'd5', 'Bb5+', 'Bd7', 'c4', 'c6', 'Ba4', 'Qa5'], ['c4', 'e6', 'd4', 'b6', 'Nc3', 'Bb7', 'Nf3', 'g6', 'h4', 'Bg7'], ['d4', 'f5', 'e3', 'e6', 'Nf3', 'Nf6', 'Nc3', 'b6', 'Be2', 'Bb7'], ['d4', 'd6', 'Bf4', 'e5', 'Bg3', 'Nf6', 'e3', 'exd4', 'exd4', 'd5'], ['d4', 'd5', 'Bf4', 'Nc6', 'e3', 'Nf6', 'c3', 'e6', 'Nf3', 'Be7'], ['e4', 'd6', 'd4', 'Nf6', 'e5', 'dxe5', 'dxe5', 'Qxd1+', 'Kxd1', 'Nd5'], ['d4', 'd5', 'Bf4', 'Na6', 'e3', 'e6', 'c3', 'Nf6', 'Nf3', 'Bd7']]
In [179]:
def get_x_move(move_list, num_move):
    move = []
    for game in move_list:
        if (len(move_list) > num_move):
            move.append(game[num_move])
    return move
first = get_x_move(ten_moves, 0)
#print(first)
second = get_x_move(ten_moves, 1)
#print(second)
third = get_x_move(ten_moves, 2)
fourth = get_x_move(ten_moves, 3)
fifth = get_x_move(ten_moves, 4)
sixth = get_x_move(ten_moves, 5)
seventh = get_x_move(ten_moves, 6)
eighth = get_x_move(ten_moves, 7)
ninth = get_x_move(ten_moves, 8)
tenth = get_x_move(ten_moves, 9)                                                                 

unique_game_openings = np.unique(ten_moves)
unique_game_openings_title = []
for game_num in range(len(unique_game_openings)):
    unique_game_openings_title.append(str(game_num))

print(len(unique_game_openings_title))                 
                      
#chess_tsne_2 = one_hot_encode(chess_tsne, ten_moves, game)
---------------------------------------------------------------------------
IndexError                                Traceback (most recent call last)
<ipython-input-179-7f15551d7ad5> in <module>
      7 first = get_x_move(ten_moves, 0)
      8 #print(first)
----> 9 second = get_x_move(ten_moves, 1)
     10 #print(second)
     11 third = get_x_move(ten_moves, 2)

<ipython-input-179-7f15551d7ad5> in get_x_move(move_list, num_move)
      3     for game in move_list:
      4         if (len(move_list) > num_move):
----> 5             move.append(game[num_move])
      6     return move
      7 first = get_x_move(ten_moves, 0)

IndexError: list index out of range

Add ten moves to dataframe

In [180]:
chess_pd = add_feature(chess_pd, 'ten_moves', ten_moves)
In [181]:
###From above the moves is a list of strings
outer_object = str(type(chess_pd.ten_moves[0]))
inner_object = str(type(chess_pd.ten_moves[0][0]))

print('Moves is a list of strings: ' + outer_object + ' ' + inner_object) 
Moves is a list of strings: <class 'list'> <class 'str'>

Remove all moves from TSNE

In [182]:
chess_tsne = remove_feature(chess_tsne, 'moves')

Opening_eco

Opening_eco variable: This variable corresponds with a specific kind of the opening for a chess game. We will skip the opening_name since the opening eco is a classification of the opening name. There are 365 different types of openings in the sample of 20,058 games. There are three portions of a chess game: the opening, the midgame, and the endgame. There exists a field of study that is just opening plays in a chess game and at the higher levels of chess these openings are scripted. Furthermore, some openings are open and some are closed and it is quite probable that closed openings result in more draws than dynamic openings.

In [183]:
###From above the Opening_eco is a categorical, but we cannot one hot encoding because there are too many types
#print(chess_pd.opening_eco.value_counts())

print('opening_eco is a string: ' +  str(type(chess_pd.opening_eco[0])))

# remove from chess_tsne as 365 is too large for opening eco
chess_tsne = remove_feature(chess_tsne, 'opening_eco')
opening_eco is a string: <class 'str'>

Feature Engineering

Classify Openings as one of five Types:

A: Flank Openings

B: Semi-Open Games

C: Open Games and French Defence

D: Closed Games and Semi-Closed Games

E: Indian Defence

Since there are five different kinds of openings, we will use [A, B, C, D, E] instead of the original categories of the opening_eco. This categorical variable will be used for visualization and potentially as an input into a ML algorithm.

Classifications are the same as those described in the "List of Chess Openings" on Wikipedia
In [184]:
#For opening moves, we will only use ABCDE to classify it

def count_all_opening(opening_codes):
    '''
    Input: The opening type of the game
    Output: Count the number of opening types
    '''
    opening_dict = {}
    for opening in opening_codes:
        if opening in opening_dict:
            opening_dict[opening] += 1
        else:
            opening_dict[opening] = 1
    return len(opening_dict.keys())

count_opening = count_all_opening(chess_pd['opening_eco'])
print('There are ' + str(count_opening) + ' openings')
There are 365 openings
In [185]:
def classify_opening_moves(dataframe,opening_eco):
    '''
    Input: the dataframe you use and the opening type of the game
    Output: The opening type with only ABCDE cla
    '''
    opening_class = []
    for opening in dataframe.opening_eco:
        opening_class.append(opening[0])       
    return opening_class

opening_category = classify_opening_moves(chess_pd, 'opening_eco')
#Add column in dataframe from list

Add opening_category

In [186]:
chess_pd = add_feature(chess_pd, 'opening_category', opening_category) 

chess_tsne = add_feature(chess_tsne, 'opening_category', opening_category)
In [187]:
# opening category is of type string
print('opening_category is a string: ' +  str(type(chess_pd.opening_category[0])))

# add opening category to chess_tsne
cat_columns=["A","B","C", 'D', 'E']
winner_dummy = one_hot_encode(chess_tsne, 'opening_category' , cat_columns)
chess_tsne = pd.concat([chess_tsne, winner_dummy], axis=1)
chess_tsne = remove_feature(chess_tsne, 'opening_category')
#print(chess_tsne.head())
opening_category is a string: <class 'str'>

Create a Base, Increment, Maxtime

Increment code: In the form of XX+YY where XX is number in minutes and YY is the increment in seconds.
Base: The amount of time in minutes that is on the chess clock. We will use an integer. Increment: The seconds added to chess clock after each move. We wil use an integer.

In order to normalize the above data into one variable that can be visualized and potentially used by the ML algorithm, we combine Base and Increment into a new variable 'Maxtime.' A chess clock is used to add stress and, in some sense, puts a maximum time on the chess match. Thus, we can find the maximum time for the average chess match by the following equation:

$$Maxtime = Base + \frac{mean(turns)*Increment}{60}$$

For Maxtime we will use a float.

In [188]:
def get_base(increment_code):
    '''
    input:increment_code
    output:base
    '''
    base = []
    for clock in increment_code:
        minutes, seconds = clock.split("+")
        base.append(int(minutes))
    return base

base = get_base(chess_pd.increment_code)
chess_pd = add_feature(chess_pd,'base',base)
chess_tsne = add_feature(chess_tsne, 'base', base)

# Base is a category of type string
print('base is an integer: ' +  str(type(chess_pd.base[0])))
base is an integer: <class 'numpy.int64'>
In [189]:
def get_increment(increment_code):
    '''
    input:increment_code
    output:increment
    '''
    increment = []
    for clock in increment_code:
        minutes, seconds = clock.split("+")
        increment.append(int(seconds))
    return increment

increment = get_increment(chess_pd.increment_code)
chess_pd = add_feature(chess_pd,'increment',increment)
chess_tsne = add_feature(chess_tsne, 'increment', increment)

# Increment is a category of type integer
print('base is an integer: ' +  str(type(chess_pd.increment[0])))
base is an integer: <class 'numpy.int64'>
In [190]:
import math
def get_maxtime(base, increment, num_turns):
    '''
    input:base,increment and the number of turns
    output:maxtime
    '''
    maxtime = []
    for idx, val in enumerate(base):
        maxtime_val = base[idx] + num_turns*increment[idx]/60
        maxtime_val = math.floor(maxtime_val)
        maxtime.append(maxtime_val)

    #Retain 1 decimal for maxtime
    #maxtime = list(math.floor((np.array(maxtime),1)))
    return maxtime

mean_turns = int(np.round(np.mean(chess_original.turns)))
print('The number of turns of maxtime is ' + str(mean_turns) + ' moves.' )
maxtime = get_maxtime(base, increment, mean_turns)

#Add max_time to dataframe
chess_pd = add_feature(chess_pd,'maxtime',maxtime)

# make maxtime integer
chess_tsne = add_feature(chess_tsne, 'maxtime', maxtime)

# Maxtime is a category of type float
print(' is a int: ' +  str(type(chess_pd.maxtime[0])))
The number of turns of maxtime is 60 moves.
 is a int: <class 'numpy.int64'>

Remove Increment code from TSNEm Turns

In [191]:
chess_tsne = remove_feature(chess_tsne, 'increment_code')

Create FIDE Linear Regression

To find the ratings-only classifier, it is first necessary to convert to FIDE from Lichess.com. This is because the formul relies on ELO which is used by FIDE but not Lichess.com. In this case, however, it is unnecessary to find the FIDE rating because the Classification predicter collapses to simply predicting white if the white rating is larger and black if black rating is larger. This is largely because $P_{draw}$ is so small. Otherwise, there would be a possibility of $P_{draw}$ if black rating and white rating were close together. Nevertheless, we have included the linear regression below that would find the FIDE rating. However, we will not use this data elsewhere in the assignment.

Import Data (manually copy table data)

In [192]:
# Data copied from https://chessgoals.com/rating-comparison/
lichess_bullett = [1335, 1355, 1380, 1405, 1430, 1455, 1485, 1520, \
                   1550, 1585, 1620, 1660, 1700, 1740, 1785, 1830, \
                   1875, 1925, 1975, 2025, 2080, 2135, 2190, 2245, 2305]

FIDE =            [1370, 1380, 1390, 1405, 1425, 1440, 1460, 1480, \
                   1500, 1525, 1550, 1575, 1605, 1635, 1665, 1695, \
                   1730, 1765, 1800, 1840, 1880, 1920, 1965, 2010, 2055]

Create Linear Regression

In [193]:
from sklearn.linear_model import LinearRegression


# Create numpy arrays
lichess_bullett = np.asmatrix(lichess_bullett)
lichess_bullett = np.transpose(lichess_bullett)
#print(lichess_bullett.shape)
FIDE = np.asarray(FIDE)

# Add bias column of 1's to X
X = lichess_bullett
X_bias = np.hstack((np.ones((len(X),1)), X))
#print(X_bias)
y = FIDE
model = LinearRegression().fit(X_bias,y)

FIDE_hat = model.predict(X_bias)

mse = np.square(np.subtract(FIDE, FIDE_hat)).mean()

print('Mean Square Error is: ' + str(mse))
print('Model Coefficients are: ' + str(model.coef_))
print('Model Intercept is: ' + str(model.intercept_))


#plot(lichess_bullett, FIDE)
Mean Square Error is: 55.43846284030775
Model Coefficients are: [0.         0.70834372]
Model Intercept is: 407.5318911749589

Create and Add Rating Difference

From the formula that we see that there is a difference in the absolute value, so we should use the difference to measure the rating. For Rating_Difference = white_rating - black_rating.

In [194]:
Rating_Difference = chess_pd.white_rating - chess_pd.black_rating
chess_pd = add_feature(chess_pd,'Rating_Difference',Rating_Difference)

# Rating_Difference is a category of type integer
print('Rating_Difference is an integer: ' +  str(type(chess_pd.Rating_Difference[0])))
Rating_Difference is an integer: <class 'numpy.int64'>

Create Ratings Only Classification Predicter

As mentioned in the introduction, there is a simple predicter that only takes consideration of black rating and white rating. We will now define the predicter in code as follows to find the accuracy.

In [195]:
def p_draw(white_rating, black_rating):
    '''
    Input: white_rating, black_rating
    Output: 0.048
    '''
    # In theory, p_draw is a function of white rating and black rating
    # For this assignment, however, we will have p_draw as sample draw rate
    return 0.048

def p_white(white_rating, black_rating):
    '''
    Input: white_rating, black_rating
    Output: Probability of white
    '''
    denominator = 1.0+10.0**((black_rating-white_rating)/400.0)
    p_white = 1.0/denominator - p_draw(white_rating, black_rating)/2.0
    return p_white

def p_black(white_rating, black_rating):
    '''
    Input: white_rating, black_rating
    Output: Probability of black wins
    '''
    denominator = 1.0+10.0**((white_rating-black_rating)/400.0)
    p_black = 1.0/denominator - p_draw(white_rating, black_rating)/2.0
    return p_black


def get_prediction(pwhite, pblack, pdraw):
    '''
    Input: probability of white will win, black will win, or draw
    Output: data type of largest probability (white, black, or draw)
    '''
    #prediction = []
    if (pwhite >= pblack) and (pwhite >= pdraw):
        return 'white'
    elif (pblack >= pwhite) and (pblack >= pdraw):
        return 'black'
    else:
        return 'draw'
    return prediction

    
def get_simple_prediction(white_rating, black_rating):
    '''
    Input: list of white rating, list of black rating, probability of draw,
    actual outcome
    Output: list of simple predictions
    '''
    simple_prediction = []
    for i ,val in enumerate(white_rating):
        pwhite = p_white(white_rating[i], black_rating[i])
        pblack = p_black(white_rating[i], black_rating[i])
        pdraw = p_draw(white_rating[i], black_rating[i])
        
        predict = get_prediction(pwhite, pblack, pdraw)
        simple_prediction.append(predict)
    return simple_prediction
        
def get_accuracy(prediction, actual):
    '''
    Input: list of predictions, list of outcomes
    Output: accuracy in decimal
    '''
    num_correct = 0
    num_total = 0
    for idx, val in enumerate(prediction):
        if prediction[idx] == actual[idx]:
            num_correct += 1
            num_total += 1
        else:
            num_total += 1
    return num_correct / num_total
    
simple_prediction = get_simple_prediction(chess_pd.white_rating, chess_pd.black_rating)
simple_accuracy = get_accuracy(simple_prediction, chess_pd.winner)

print('The accuracy of the ratings-only classifier is: ' + str(simple_accuracy))
The accuracy of the ratings-only classifier is: 0.6205504038288961

Add Ratings Only Classifier Predictions

In [196]:
chess_pd = add_feature(chess_pd,'Ratings_Only_Prediction', simple_prediction)

# Don't add ratings only classifier to tsne


print('Ratings_Only_Prediction is a string: ' +  str(type(chess_pd.Ratings_Only_Prediction[0])))
Ratings_Only_Prediction is a string: <class 'str'>

Data Quality (15 Points)

Filter out Turns less than 10

If the game has less than 10 turns, it will end after 10 moves. Since we want to predict the result after first 10 moves, we have to filter out turns that less than 10.

In [197]:
def filter_short_games(df, name, num_turns):
    '''
    Input:dataframe, name of feature turns, number of turns 
    Output: dataframe, number of turns less than 10
    '''
    df = df[df[name] > num_turns]
    return df

chess_pd = filter_short_games(chess_pd, 'turns', 10)
chess_tsne = filter_short_games(chess_tsne, 'turns', 10)
chess_tsne = remove_feature(chess_tsne, 'turns')

print('Original number of games: ' + str(len(chess_original.rated)))
print('New number of games: ' + str(len(chess_pd.rated)))
Original number of games: 20058
New number of games: 19377

Filter out Openings longer than 10

If the opening is longer than 10 moves, it may not be possible to classify. Also, the scripted opening may not provide any value to the ML algorithm. Thus as a precuation, we will filter out all games where the opening lasts longer than the given input.

In [198]:
def filter_long_opening(df, name, num_turns):
    '''
    Input:dataframe,number of turns 
    Output: dataframe, number of turns less than 10
    '''
    df = df[df[name]<num_turns]
    return df

#chess_pd = chess_pd[-chess_pd['opening_ply']>10]
chess_pd = filter_long_opening(chess_pd, 'opening_ply', 10) 
chess_tsne = filter_long_opening(chess_tsne, 'opening_ply', 10)
print('Original number of games: ' + str(len(chess_original.rated)))
print('New number of games: ' + str(len(chess_pd.rated)))
print('New number of games: ' + str(len(chess_tsne.white_rating)))
Original number of games: 20058
New number of games: 18047
New number of games: 18047
In [199]:
chess_pd_2 = chess_pd[chess_pd['opening_ply'] > 10]
print(chess_pd_2['opening_ply'])
#print(count_all_opening(chess_pd_2['ten_moves']))
Series([], Name: opening_ply, dtype: int64)
In [200]:
def get_move_titles(move_list, idx):
    unique_game_openings_title=[]
    unique= np.unique(move_list)
    for game_num in range(len(unique)):
        name = str(game_num)
        name = idx + name
        unique_game_openings_title.append(name)
    return unique_game_openings_title

ten_moves = chess_pd.ten_moves

def get_x_move(move_list, num_move):
    move = []
    for game in move_list:
        move.append(game[num_move])
    return move

first = get_x_move(ten_moves, 0)
#print(first)
second = get_x_move(ten_moves, 1)
#print(second)
third = get_x_move(ten_moves, 2)
fourth = get_x_move(ten_moves, 3)
fifth = get_x_move(ten_moves, 4)
sixth = get_x_move(ten_moves, 5)
seventh = get_x_move(ten_moves, 6)
eighth = get_x_move(ten_moves, 7)
ninth = get_x_move(ten_moves, 8)
tenth = get_x_move(ten_moves, 9)                                                                 
In [201]:
print(len(first))
print(len(second))
print(len(third))
print(len(fourth))
print(len(fifth))
print(len(sixth))
print(len(seventh))
print(len(eighth))
print(len(ninth))
print(len(tenth))
18047
18047
18047
18047
18047
18047
18047
18047
18047
18047
In [202]:
chess_tsne_each_move = chess_tsne
print(chess_tsne_each_move.info())
print(np.unique(first))
<class 'pandas.core.frame.DataFrame'>
Int64Index: 18047 entries, 0 to 20057
Data columns (total 16 columns):
white_rating    18047 non-null int64
black_rating    18047 non-null int64
opening_ply     18047 non-null int64
False           18047 non-null uint8
True            18047 non-null uint8
black           18047 non-null uint8
draw            18047 non-null uint8
white           18047 non-null uint8
A               18047 non-null uint8
B               18047 non-null uint8
C               18047 non-null uint8
D               18047 non-null uint8
E               18047 non-null uint8
base            18047 non-null int64
increment       18047 non-null int64
maxtime         18047 non-null int64
dtypes: int64(6), uint8(10)
memory usage: 1.1 MB
None
['Na3' 'Nc3' 'Nf3' 'Nh3' 'a3' 'a4' 'b3' 'b4' 'c3' 'c4' 'd3' 'd4' 'e3' 'e4'
 'f3' 'f4' 'g3' 'g4' 'h3' 'h4']
In [203]:
# one hot encode for each move
one_hot_encode(chess_tsne_each_move,"first",get_move_titles(first, '1'))
print(chess_tsne_each_move)
name_1 = one_hot_encode(chess_tsne_each_move,"second",get_move_titles(second, '2'))
one_hot_encode(chess_tsne_each_move,"third",get_move_titles(third, '3'))
one_hot_encode(chess_tsne_each_move,"fourth",get_move_titles(fourth, '4'))
one_hot_encode(chess_tsne_each_move,"fifth",get_move_titles(fifth, '5'))
one_hot_encode(chess_tsne_each_move,"sixth",get_move_titles(sixth, '6'))
one_hot_encode(chess_tsne_each_move,"seventh",get_move_titles(seventh, '7'))
one_hot_encode(chess_tsne_each_move,"eighth",get_move_titles(eighth, '8'))
one_hot_encode(chess_tsne_each_move,"ninth",get_move_titles(ninth, '9'))
one_hot_encode(chess_tsne_each_move,"tenth",get_move_titles(tenth, '10'))

#print(len(unique_game_openings_title))                 
       white_rating  black_rating  opening_ply  False  True  black  draw  \
0              1500          1191            5      1     0      0     0   
1              1322          1261            4      0     1      1     0   
2              1496          1500            3      0     1      0     0   
3              1439          1454            3      0     1      0     0   
4              1523          1469            5      0     1      0     0   
8              1439          1392            6      0     1      1     0   
9              1381          1209            4      0     1      0     0   
10             1381          1272            1      1     0      0     0   
11             1381          1867            9      1     0      1     0   
12             1381          1936            3      1     0      1     0   
13             1381          1607            2      1     0      1     0   
14             1094          1141            8      1     0      0     0   
15             1141          1094            7      1     0      1     0   
16             1094          1141            8      1     0      1     0   
17             1141          1094            8      1     0      1     0   
18             1094          1300            5      1     0      1     0   
19             1500          1094            2      1     0      0     0   
20             1094          1676            6      1     0      1     0   
22             1500          1094            3      1     0      0     0   
23             1307          1106            4      0     1      0     0   
24             1113          1423            3      0     1      1     0   
25             1078          1219            4      0     1      0     0   
26             1825          1079            8      0     1      0     0   
27             1328          1038            4      0     1      1     0   
28             1056          1156            4      0     1      1     0   
29             1077          1148            4      0     1      1     0   
30             1358          1036            3      0     1      1     0   
31             1200          1002            6      0     1      1     0   
32             1203          1019            3      0     1      0     0   
33             1019          1500            6      1     0      1     0   
...             ...           ...          ...    ...   ...    ...   ...   
20026          1822          1872            4      0     1      1     0   
20027          1842          1885            5      0     1      0     0   
20028          1878          1720            2      0     1      0     0   
20029          1890          1866            2      0     1      1     0   
20030          1876          1879            5      0     1      1     0   
20031          1267          1616            4      0     1      1     0   
20032          1253          1267            5      1     0      0     0   
20033          1267          1253            2      1     0      1     0   
20034          1258          1620            6      0     1      0     1   
20035          1427          1265            5      0     1      0     0   
20036          1247          1436            3      0     1      0     0   
20037          1156          1238            2      0     1      1     0   
20038          1247          1359            4      0     1      1     0   
20040          1261          1461            6      0     1      1     0   
20041          1263          1770            3      0     1      1     0   
20042          1759          1265            8      0     1      0     0   
20043          1252          1290            4      0     1      0     0   
20044          1523          1256            5      0     1      0     0   
20045          1246          1201            3      0     1      0     0   
20046          1250          1235            4      0     1      1     0   
20047          1222          1262            2      0     1      0     0   
20048          1252          1233            5      0     1      0     0   
20049          1328          1252            5      0     1      0     0   
20051          1237          1231            3      0     1      1     0   
20052          1219          1250            4      0     1      0     0   
20053          1691          1220            2      0     1      0     0   
20054          1233          1196            2      0     1      1     0   
20055          1219          1286            3      0     1      0     0   
20056          1360          1227            4      0     1      0     0   
20057          1235          1339            3      0     1      1     0   

       white  A  B  C  D  E  base  increment  maxtime  
0          1  0  0  0  1  0    15          2       17  
1          0  0  1  0  0  0     5         10       15  
2          1  0  0  1  0  0     5         10       15  
3          1  0  0  0  1  0    20          0       20  
4          1  0  0  1  0  0    30          3       33  
8          0  0  0  1  0  0    15          0       15  
9          1  0  1  0  0  0    10          0       10  
10         1  1  0  0  0  0    20         60       80  
11         0  0  0  1  0  0    20         60       80  
12         0  0  0  1  0  0     5         40       45  
13         0  0  0  1  0  0     8          0        8  
14         1  0  0  1  0  0    15         15       30  
15         0  0  0  1  0  0    15         15       30  
16         0  0  0  1  0  0    15         15       30  
17         0  0  0  1  0  0    15         16       31  
18         0  0  0  1  0  0    15         15       30  
19         1  0  0  0  1  0    11          0       11  
20         0  0  0  1  0  0    15         15       30  
22         1  0  1  0  0  0    15          5       20  
23         1  1  0  0  0  0    10          0       10  
24         0  0  1  0  0  0    10          0       10  
25         1  0  0  0  1  0    10         10       20  
26         1  0  0  1  0  0    10         10       20  
27         0  0  0  0  1  0    10         10       20  
28         0  0  0  0  1  0    10         10       20  
29         0  0  0  0  1  0    10         10       20  
30         0  0  1  0  0  0    10         10       20  
31         0  0  1  0  0  0    10         10       20  
32         1  0  1  0  0  0    10         10       20  
33         0  0  0  0  1  0    15          3       18  
...      ... .. .. .. .. ..   ...        ...      ...  
20026      0  0  1  0  0  0    10          0       10  
20027      1  0  1  0  0  0    10          0       10  
20028      1  1  0  0  0  0    10          0       10  
20029      0  1  0  0  0  0    15         15       30  
20030      0  1  0  0  0  0    15         15       30  
20031      0  1  0  0  0  0    45         45       90  
20032      1  0  1  0  0  0    15         15       30  
20033      0  1  0  0  0  0    15         15       30  
20034      0  1  0  0  0  0    45         45       90  
20035      1  0  1  0  0  0    10          0       10  
20036      1  1  0  0  0  0    10          0       10  
20037      0  0  1  0  0  0    10          0       10  
20038      0  1  0  0  0  0    15         15       30  
20040      0  0  0  0  0  1    10         10       20  
20041      0  0  0  0  1  0    10         10       20  
20042      1  0  1  0  0  0    10         10       20  
20043      1  1  0  0  0  0    10         10       20  
20044      1  0  0  1  0  0    10         10       20  
20045      1  0  1  0  0  0    45         45       90  
20046      0  0  1  0  0  0    10         10       20  
20047      1  1  0  0  0  0    10         10       20  
20048      1  0  0  1  0  0    10         10       20  
20049      1  0  0  1  0  0    10          0       10  
20051      0  0  0  1  0  0    10         10       20  
20052      1  1  0  0  0  0    10         10       20  
20053      1  1  0  0  0  0    10         10       20  
20054      0  1  0  0  0  0    10          0       10  
20055      1  0  0  0  1  0    10          0       10  
20056      1  0  1  0  0  0    10          0       10  
20057      0  0  0  0  1  0    10          0       10  

[18047 rows x 16 columns]
Out[203]:
'tenth'

Examine Missing Data using Missingno

In [204]:
!pip install missingno
Requirement already satisfied: missingno in /anaconda3/lib/python3.7/site-packages (0.4.2)
Requirement already satisfied: matplotlib in /anaconda3/lib/python3.7/site-packages (from missingno) (3.0.2)
Requirement already satisfied: seaborn in /anaconda3/lib/python3.7/site-packages (from missingno) (0.9.0)
Requirement already satisfied: numpy in /anaconda3/lib/python3.7/site-packages (from missingno) (1.15.4)
Requirement already satisfied: scipy in /anaconda3/lib/python3.7/site-packages (from missingno) (1.1.0)
Requirement already satisfied: cycler>=0.10 in /anaconda3/lib/python3.7/site-packages (from matplotlib->missingno) (0.10.0)
Requirement already satisfied: kiwisolver>=1.0.1 in /anaconda3/lib/python3.7/site-packages (from matplotlib->missingno) (1.0.1)
Requirement already satisfied: pyparsing!=2.0.4,!=2.1.2,!=2.1.6,>=2.0.1 in /anaconda3/lib/python3.7/site-packages (from matplotlib->missingno) (2.3.0)
Requirement already satisfied: python-dateutil>=2.1 in /anaconda3/lib/python3.7/site-packages (from matplotlib->missingno) (2.7.5)
Requirement already satisfied: pandas>=0.15.2 in /anaconda3/lib/python3.7/site-packages (from seaborn->missingno) (0.23.4)
Requirement already satisfied: six in /anaconda3/lib/python3.7/site-packages (from cycler>=0.10->matplotlib->missingno) (1.12.0)
Requirement already satisfied: setuptools in /anaconda3/lib/python3.7/site-packages (from kiwisolver>=1.0.1->matplotlib->missingno) (40.6.3)
Requirement already satisfied: pytz>=2011k in /anaconda3/lib/python3.7/site-packages (from pandas>=0.15.2->seaborn->missingno) (2018.7)
In [39]:
# This code is taken from course notebook 
import missingno as mn
mn.matrix(chess_original.sort_values(by=["id",]))
Out[39]:
<matplotlib.axes._subplots.AxesSubplot at 0x1a2a71f2e8>

To understand the data, the first thing to do would be to check whether there is any "NA" in the dataset. Based on the plot above, there is no missing value in the data, which is ideal for analysis.

Data Visualization (45 Points Total)

Attribute Distributions (20 Points, at least 5)

Rated Feature Bar Plot

In [36]:
import pandas as pd
import numpy as np
import seaborn as sns
import matplotlib.pyplot as plt

chess_original['rated'].value_counts().plot.bar()
plt.xlabel("Rated Game")
plt.ylabel("Number of Counts")
plt.title('Distribution of Rated')
Out[36]:
Text(0.5, 1.0, 'Distribution of Rated')

A bar plot of the counts of rated and unrated games is poltted to see how many rated and unrated games are recorded in the dataset. We are expecting more rated game, because it is obvious that the players are treated rated game more serious since they are related to personal ranking. The final goal of this analysis it to predict who is going to win, so we need as much data of how the players would normally play as possible.

In [37]:
# This code is taken from course notebook 
win = pd.crosstab(chess_original['rated'], chess_original['winner'])
print(win)
win.plot(kind='bar', stacked=True)
plt.xlabel("Rated Game")
plt.ylabel("Number of Counts")
plt.title('Distribution of Winner')
plt.show() 
winner  black  draw  white
rated                     
False    1723   231   1949
True     7384   719   8052

Then, we will look into the data a little deeper to see the portion of winner in these games. According to the bar chart above, white players have more wins than black players. That meets the common knowledge of chess game that white side has a small advantage in the game.

Turns Bar Plot with Curve-Fit

In [38]:
sns.distplot(chess_original['turns'])
plt.xlabel('Turns of Game')
plt.ylabel('Frequency')
plt.title('Frequency of Turns')
Out[38]:
Text(0.5, 1.0, 'Frequency of Turns')

From the "Frequency of Turns" plots, we can see that it is a right-skewed distribution. The games with 55 turns have the highest appear frequency, and almost all the games end before having 150 moves.

Victory Status Pie Chart

In [39]:
# This code is taken from website
#https://pythonspot.com/matplotlib-pie-chart/
#Took code for colors and shape of the pie chart
explode = (0, 0.1, 0, 0)
colors = ['gold', 'yellowgreen', 'lightcoral', 'lightskyblue']
chess_original['victory_status'].value_counts().plot.pie(explode=explode, colors=colors, 
              autopct='%1.1f%%', shadow=True, startangle=140)
plt.axis('equal')
plt.title('Pie Chart for Victory_status')
plt.show()

The pie chart of "victory_status" indicates that more than half of the games are ended with the move "resign" (55.6%). The move "mate" comes the second, with 31.5%.

White Rating Distribution

In [40]:
#Distribution of white_rating
sns.distplot(chess_original['white_rating'])
plt.xlabel('white_rating')
plt.ylabel('Frequency')
plt.title('Distribution of white_rating')
Out[40]:
Text(0.5, 1.0, 'Distribution of white_rating')

The distribution of "white_rating" is close to a normal distribution. As we can see, most of the player has their rating in the range between 1000 and 2300.

Black Rating Distribution

In [41]:
#Distribution of black_rating
sns.distplot(chess_original['black_rating'])
plt.xlabel('black_rating')
plt.ylabel('Frequency')
plt.title('Distribution of black_rating')
Out[41]:
Text(0.5, 1.0, 'Distribution of black_rating')

Same as the distribution of "white_rating", distribution of "black_rating" is close to normal distribution as well. And most of the player also has their rating in the range between 1000 and 2300.

White Rating Win Percentage Violin Plot

In [42]:
# This code is taken from course notebook 
import seaborn as sns
cmap = sns.diverging_palette(220, 10, as_cmap=True) # one of the many color mappings

print('Seaborn:', sns. __version__)
Seaborn: 0.9.0
In [43]:
import math
chess_original_4 = pd.DataFrame(chess_original)
chess_original_4['whitewin'] = np.where(chess_original_4['winner'] == 'white', 1, 0)
# This code is taken from course notebook 
sns.violinplot(x="rated", y="white_rating", hue="whitewin", data=chess_original_4, 
               split=True, inner="quart")
plt.title('Violin Plot Of White Player Rating by whether they Win')
plt.show()

On this violin plot, we can find that over all white players has higher win percentage in games. However, it shows that white players with rating below 1600 are not doing as well as the high rating players. The white players with rating below 1600 are more likely that they can not win the game.

Opening Category Bar Chart

In [44]:
colors = ['gold', 'green', 'red', 'orange', 'purple']
chess_pd['opening_category'].value_counts().plot.bar(color = colors)
plt.xlabel('opening_category')
plt.ylabel('number of counts')
plt.title('Opening_category of Games')
Out[44]:
Text(0.5, 1.0, 'Opening_category of Games')

The plot indicates that the first move under "C" of "opening_category" has the highest pick in games. And only a few players chose "E" as their opening step.

Moves Visualization

In [45]:
import numpy as np
import seaborn as sns
import matplotlib.pylab as plt


def is_white(move_idx):
    '''
    Input: number
    Output: True if white, False if black 
    '''
    if (move_idx % 2 == 0):
        return True 
    else:
        return False
    
#print(is_white(4))
#print(is_white(5))

Helper Functions for getting Rank, File

In [46]:
def is_lowercase(character):
    '''
    Input: character
    Output: boolean
    '''
    if character.isalpha():
        if character.islower():
            return True
        else:
            return False
    else:
        return False

def is_number(character):
    '''
    Input: character
    Output: boolean
    '''
    if character.isdigit():
        return True
    else:
        return False
    
def is_identify_piece(move):
    '''
    Input: move
    Output: boolean
    '''
    letter_count = 0
    number_count = 0
    for character in move:
        if is_lowercase(character):
            letter_count += 1
        if (is_number(character)):
            number_count += 1
    if letter_count > 1 or number_count > 1:
        return True
    else:
        return False
#print(is_identify_piece('e7'))
#print(is_identify_piece('Nge7'))
#print(is_identify_piece('e1=Q'))

Finding the Rank (row) of a Move

In [47]:
def rank_conversion(move):
    '''
    Input: a string of length 2 or 3
    Output: rank, or no data if error
    '''
    if '1' in move:
        return 1
    elif '2' in move:
        return 2
    elif '3' in move:
        return 3
    elif '4' in move:
        return 4
    elif '5' in move:
        return 5
    elif '6' in move:
        return 6
    elif '7' in move:
        return 7
    elif '8' in move:
        return 8
    # special case: promoted to Q
    else:
        #print("move" + str(move))
        return 'no_data'

#print(rank_conversion('e4'))
#print(rank_conversion('Nge7'))
#print(rank_conversion('e1=Q'))
In [48]:
def get_rank(idx, move):
    '''
    Input: number of move, move
    Output: list which includes number of the rank
    '''
    #print(idx)
    #print(move)
    # Simple move
    if (len(move) < 4) and ('O' not in move)and (len(move) > 1):
        return [rank_conversion(move)]
    # Don't know what this means
    elif(len(move) == 1):
        return "no_data"
    # promoting pawn to last rank, didn't identify pawn
    elif ('=' in move):
        if(rank_conversion(move) != 'no_data'):
            return [rank_conversion(move)]
    # Capture move
    elif ('x' in move):
        idx = move.index('x')
        return [rank_conversion(move[idx:])]
    # Kingside Castle
    elif move == 'O-O':
        if is_white(idx):
            return [1,1]
        else:
            return [8,8]
    elif move == 'O-O+':
        if is_white(idx):
            return [1,1]
        else:
            return [8,8]
    # Queenside Castle
    elif move == 'O-O-O':
        if is_white(idx):
            return [1,1] 
        else:
            return [8,8]
    elif move == 'O-O-O+':
        if is_white(idx):
            return [1,1] 
        else:
            return [8,8]
    # check or checkmate
    elif ('+' in move) or ('#' in move):
        return [rank_conversion(move[-3:])]
    #Have to identify piece (could be either knight, bishop, queen, or rook)
    elif(is_identify_piece(move)):
        return [rank_conversion(move[-2:])]
    else:
        #print(move)
        return 'no_data'
                                
#print(get_rank(0, 'e4'))
#print(get_rank(0, 'Be4'))
#print(get_rank(0, 'O-O'))
#print(get_rank(1, 'O-O'))
#print(get_rank(0, 'O-O-O'))
#print(get_rank(1, 'O-O-O'))
#print(get_rank(0, 'Nge7'))
#print(get_rank(0, 'e1=Q'))
#print(get_rank(1, 'e1=Q'))

Find the File (Column) of a Move

In [49]:
def file_conversion(move):
    '''
    Input: a string of length 2 or 3
    Output: rank, or -1 if error
    '''
    if "a" in move:
        return 'a'
    elif "b" in move:
        return 'b'
    elif "c" in move:
        return 'c'
    elif "d" in move:
        return 'd'
    elif "e" in move:
        return 'e'
    elif "f" in move:
        return 'f'
    elif "g" in move:
        return 'g'
    elif "h" in move:
        return 'h'
    # special case: promoted to Q
    elif "Q" in move:
        return 'no_data'
    else:
        #print("move" + str(move))
        return 'no data'
    
#print(file_conversion('e4'))
#print(file_conversion('Nge7'))
#print(file_conversion('e1=Q'))
In [50]:
def get_file(idx, move):
    '''
    Input: number of move, move 
    Output: list which includes file as string
    '''
    #print(idx)
    #print(move)
    
    # simple move
    if (len(move) < 4) and ('O' not in move) and (len(move) > 1):
        return [file_conversion(move)]
    # Don't know what this means
    elif(len(move) == 1):
        return "no_data"
    # promotion
    elif ('=' in move):
        if(rank_conversion(move) != 'no_data'):
            return [file_conversion(move)]
    # capture move
    elif "x" in move:
        idx = move.index('x')
        return [file_conversion(move[idx:])]
    # kingside castle
    elif move == 'O-O':
        if is_white(idx):
            return ['f','g']
        else:
            return ['f','g']
    #kinside castle check
    elif move == 'O-O+':
        if is_white(idx):
            return ['f','g']
        else:
            return ['f','g']
    # queenside castle
    elif move == 'O-O-O':
        if is_white(idx):
            return ['c','d'] 
        else:
            return ['c','d']
    # queenside castle check
    elif move == 'O-O-O+':
        if is_white(idx):
            return ['c','d'] 
        else:
            return ['c','d'] 
    # check or checkmate
    elif ('+' in move) or ('#' in move):
        return [file_conversion(move[-3:])]
    #Have to identify piece (could be either knight)
    elif(is_identify_piece(move)):
        return [file_conversion(move[-2:])]
    else:
        #print(move)
        return 'no_data'

#print(get_file(0, 'e4'))
#print(get_file(0, 'Be4'))
#print(get_file(0, 'O-O'))
#print(get_file(1, 'O-O'))
#print(get_file(0, 'O-O-O'))
#print(get_file(1, 'O-O-O'))
#print(get_file(0, 'Nge7'))
#print(get_file(0, 'e1=Q'))
#print(get_file(1, 'e1=Q'))

Converting Rank, File to a position on a board with White on bottom

In [51]:
def get_board_row(rank_move):
    '''
    Input: rank
    output: row where rank 8 matched to row 0
    '''
    output = []
    for move in rank_move:
        if move == 'no_data':
            return ['no_data']
        else:
            #print("move" + str(move))
            output.append(8-move)
    return output
In [52]:
                                
def get_board_column(file_move):
    '''
    Input: list of files 
    Ouput: column where a is matched to zero
    '''
    output = []
    for move in file_move:
        if  "a" == move:
            output.append(0)
        elif "b" == move:
            output.append(1)
        elif "c" == move:
            output.append(2)
        elif "d" == move:
            output.append(3)
        elif "e" == move:
            output.append(4)
        elif "f" == move:
            output.append(5)
        elif "g" == move:
            output.append(6)
        elif "h" == move:
            output.append(7)
        else:
            #print("move" + str(move))
            output.append('no_data')
    return output

Create Matrix which has count for all moves in that space

In [53]:
def create_board(moves_list):
    '''
    Input: list of moves 
    Output: matrix which has count of all moves 
    '''
    board_array = np.zeros((8,8))

    #print(board)
    # iterate over each game
    for idx, game in enumerate(moves_list):
        # iterate over each move
        #print(game)
        for idx, move in enumerate(game):
            # Find rank and column
            rank_move = get_rank(idx, move)
            file_move = get_file(idx, move)
                
            # convert to the board
            i_list = get_board_row(rank_move)
            j_list = get_board_column(file_move)
            
            # add to count
            for i in i_list:
                #check if i exists
                for j in j_list:
                    # check if j exists
                    if (i != 'no_data') and (j != 'no_data'):
                        board_array[i,j] += 1
                    else:
                        print(move)
                        
    return board_array
In [54]:
# Make Pretty Plot
def plot_board(moves_list, title):
    '''
    Input: board
    Output: heatmap plot
    '''
    board_array = create_board(moves_list)
    row_labels = [8, 7, 6, 5, 4, 3, 2, 1]
    
    column_labels = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h']
    board_df = pd.DataFrame(board_array, columns = column_labels, index = row_labels)
    ax = sns.heatmap(board_df, linewidth = 0.5, square = True)
    plt.title(title)
    plt.ylabel('Rank')
    plt.xlabel('File')
    
    #plt.show()

Classify Moves as Pawn Moves (no capture or enpassant), Back Row (no capture), or Capture

Note: As defined, these categories are mutually exclusive

In [55]:
#Use given_moves list to categorize moves into 3 types: pawn, capture, big_piece
#Select given_moves

def classify_moves(moves_to_classify):
    '''
    Input: moves_to_classify is a feature column of moves
    Output: list of number and coontent of pawn moves, big_pieces moves, capture moves
    '''
    pawn_num = []
    big_pieces_num = []
    captures_num = []
    
    pawn_all_games = []
    big_pieces_all_games = []
    captures_all_games = []
    
    # iterate for every game
    for moves in moves_to_classify:
        pawn_count = 0
        big_pieces_count = 0
        captures_count = 0
        
        pawn_game = []
        big_pieces_game = []
        captures_game =[]
        
        # iterate over every move
        for half_move in moves:
            # Pawn moves just have name of square
            if (len(half_move) == 2):
                pawn_count += 1
                pawn_game.append(half_move)
            # pawn moves have promotion
            elif ('=' in half_move):
                pawn_count += 1
                pawn_game.append(half_move)
            # capture moves have an 'x'
            elif ('x' in half_move):
                captures_count += 1
                captures_game.append(half_move)
            # Big pieces moves with no capture
            else:
                big_pieces_count += 1
                big_pieces_game.append(half_move)
        
        # Create count for pie chart         
        pawn_num.append(pawn_count)
        big_pieces_num.append(big_pieces_count)
        captures_num.append(captures_count)
        
        # Create moves_list for graph visualization
        pawn_all_games.append(pawn_game)
        big_pieces_all_games.append(big_pieces_game)
        captures_all_games.append(captures_game)
    
    # Create return list    
    return_list = []
    return_list.append(pawn_num)
    return_list.append(big_pieces_num)
    return_list.append(captures_num)
    return_list.append(pawn_all_games)
    return_list.append(big_pieces_all_games)
    return_list.append(captures_all_games)
        
    return return_list

# classify moves up to 10
moves_to_classify = chess_pd.ten_moves
classified_moves = classify_moves(moves_to_classify)
pawn_num = classified_moves[0]
big_pieces_num = classified_moves[1]
captures_num = classified_moves[2]
pawn_all_games = classified_moves[3]
big_pieces_all_games = classified_moves[4]
captures_all_games = classified_moves[5]


chess_pd = add_feature(chess_pd, 'pawn_num', pawn_num)
chess_pd = add_feature(chess_pd, 'big_pieces_num', big_pieces_num)
chess_pd = add_feature(chess_pd, 'captures_num', captures_num)
chess_pd = add_feature(chess_pd, 'pawn_moves', pawn_all_games)
chess_pd = add_feature(chess_pd, 'big_pieces_moves', big_pieces_all_games)
chess_pd = add_feature(chess_pd, 'captures_moves', captures_all_games)

#classify moves up to whole game 
moves_to_classify_complete = move_list
classified_moves_complete = classify_moves(moves_to_classify_complete)
pawn_num_complete = classified_moves_complete[0]
big_pieces_num_complete = classified_moves_complete[1]
captures_num_complete = classified_moves_complete[2]
pawn_all_games_complete = classified_moves_complete[3]
big_pieces_all_games_complete = classified_moves_complete[4]
captures_all_games_complete = classified_moves_complete[5]

Pie Chart of Moves

In [56]:
#Plot of Precentage of each category in given_moves
totalpawn = chess_pd.pawn_num.sum()
totalbigpieces = chess_pd.big_pieces_num.sum()
totalcaptures = chess_pd.captures_num.sum()
df = pd.DataFrame(np.array([['pawn',totalpawn],['big_pieces',totalbigpieces],['captures',totalcaptures]]),
                  columns=['moves','total'])
df.total = df.total.astype(str).astype(float)

plt.figure(figsize=(9,6))
labels = [u'Pawn',u'Big Pieces',u'Capture'] 
sizes = df.total
colors = ['red','yellowgreen','lightskyblue'] 
explode = (0.02,0.015,0.01) #Split a block, the larger the value, the larger the gap
patches,text1,text2 = plt.pie(sizes,
                      explode=explode,
                      labels=labels,
                      colors=colors,
                      autopct = '%3.2f%%', #Decimal
                      shadow = True, 
                      startangle =90, #Counterclockwise starting angle setting
                      pctdistance = 0.6) #Numerbers' distance from the center of the circle
plt.axis('equal')
plt.legend(loc=2, prop={'size': 12})
plt.title('Pin Chart of Moves')
plt.show()

According to the pin chart of moves, the number of Big Pieces and Pawn are nearly even.

Moves on a Board Heatmap

In [57]:
plot_board(moves_to_classify, "First 10 Chess Moves in a Game All Pieces")

In the above graph, white is at the bottom, black is at the top. The lighter color is correlated with a higher frequency of moves to that space. As we can see, most of the action in a chess game in the first 10 moves is dominated by the middle squares.

In [58]:
plot_board(pawn_all_games, "Pawn Moves in First 10 Moves")

From this graph, we can verify that the most common opening move is e4, or the pawn in front of the white king.

In [59]:
plot_board(big_pieces_all_games, "Back Row in in First 10 Moves")

These are the most common moves for the back-row pieces. From the graph, we can see that the most commmmon moves are to develop the knights(c3, c6, f3, f6) and we can faintly see the kingside castle (f1,g1, f8, and g8) and developing the white-kingside bishop to c4.

In [60]:
plot_board(captures_all_games, "Captures in First 10 Moves")

From this graph, we see that most of the captures are in the center of the board over the first 10 moves.

In [61]:
plot_board(move_list, "All Moves for Complete Game")

We can now more prominently see the kingside castle and the fight over the middle of the board.

In [62]:
board_pawn_all_games = create_board(pawn_all_games_complete)
# Verify that the black in seventh rank is real
print(board_pawn_all_games)

# Verify that we are getting a count for rank 2,7
# Pawn moves in rank 7-8 are rare, promotions classified
# as back row move
plot_board(pawn_all_games_complete, "Pawn Moves Complete Game")
[[  313.   202.   213.   179.   158.   174.   178.   219.]
 [  485.   312.   321.   359.   268.   216.   238.   340.]
 [ 7401.  4914.  6667.  8801.  9418.  4924.  6962.  7205.]
 [ 5909.  7226. 10493. 15069. 16809.  6349.  5616.  5452.]
 [ 5951.  6673.  9478. 16978. 18327.  7032.  5769.  5462.]
 [ 6346.  4602.  6908.  5952.  5226.  4570.  5364.  7233.]
 [  468.   324.   322.   333.   236.   199.   217.   339.]
 [  297.   210.   203.   169.   146.   158.   166.   209.]]

For this graph, we can see that it is very rare for pawns to be promoted to the back rank. We printed out the matrix to show that the 1st, 2nd, 7th, and 8th rank exists--they are just very small. Promotion is rare.

In [63]:
plot_board(big_pieces_all_games_complete, "Back Row Complete Game")

The kingside castle is the most common move for back row pieces.

In [64]:
plot_board(captures_all_games_complete, "Captures Complete Game")

From this graph, we see that most of the captures for the complete game is very similar to captures over the first 10 moves. Sine captures are so important, the first 10 moves might be enough for a machine learning algorithm to predict who is going to win.

Attribute Relationships (25 Points, at least 3)

Pairwise Scatter Plots

In [65]:
#pair scatter plot
import seaborn as sns
sns.set(style="ticks", color_codes=True)

chess_pd1 = pd.DataFrame(chess_pd)
chess_pd1 = remove_feature(chess_pd1, 'pawn_moves')
chess_pd1 = remove_feature(chess_pd1, 'captures_moves')
chess_pd1 = remove_feature(chess_pd1, 'big_pieces_moves')
chess_pd1 = remove_feature(chess_pd1, 'whitewin')
#chess_pd1 = chess_pd1.drop(['white_id'],axis=1)
chess_pd1 = remove_feature(chess_pd1, 'id')

chess_pd_matrix = sns.pairplot(chess_pd1,hue="winner")
chess_pd_matrix.fig.suptitle("Pairwise Scatter Plots for Chess Data",y=1)
Out[65]:
Text(0.5, 1, 'Pairwise Scatter Plots for Chess Data')

From the white rating and black rating plot, since the plot huddle around diagonal are most darw, it shows that the players who have a close rating are more likely to end with a draw.

Correlation Map

In [66]:
#Convert winner into numeric, prepare for the correlation map
def string_to_numeric(x):
    if x=='white':
        return 1
    if x=='draw':
        return 0
    if x=='black':
        return -1
chess_pd.winner= chess_pd.winner.apply(string_to_numeric)
In [67]:
#Correlation map
x=chess_pd.drop(['winner'],axis=1)
f,ax = plt.subplots(figsize=(9, 9))
sns.heatmap(x.corr(), annot=True, linewidths=.5, fmt= '.2f',ax=ax)
plt.title('Correlogram of Chess Data',fontsize=15)
Out[67]:
Text(0.5, 1, 'Correlogram of Chess Data')

As we see from the correlogram, we can see that the number of pawn, big piece and capture move has negative corrlationship with each other. Since we only choose the first 10 moves from opening, if nubmber of pawn is high, there aren't so many moves left for other two kinds. The white rating and black rating's correlation coefficient of 0.6, which indicates that people prefer to play with who have similar ratings.

In [68]:
#Convert winner back to string
def numeric_to_string(x):
    if x== 1:
        return 'white'
    if x== 0:
        return 'draw'
    if x== -1:
        return 'black'
chess_pd.winner= chess_pd.winner.apply(numeric_to_string)
In [69]:
#code from notebook
# the cross tab operator provides an easy way to get these numbers
pawn_percentage = pd.crosstab(chess_pd['pawn_num'], # categories to cross tabulate
                       chess_pd.winner.astype(str)) # how to group
captures_percentage = pd.crosstab(chess_pd['captures_num'], # categories to cross tabulate
                       chess_pd.winner.astype(str)) # how to group
bigpieces_percentage = pd.crosstab(chess_pd['big_pieces_num'], # categories to cross tabulate
                       chess_pd.winner.astype(str)) # how to group


#plt.subplots(figsize=(20, 5))

#plt.subplot(1,3,1)

pawn_percentage.plot(kind='bar', stacked=True)
plt.title(f"Stacked Histogram of Pawn by Winner", fontsize=16)
plt.xlabel("Pawn",fontsize=12)
plt.ylabel("Frequency",fontsize=12)
plt.show()

#plt.subplot(1,3,2)
captures_percentage.plot(kind='bar', stacked=True)
plt.title(f"Stacked Histogram of Captures by Winner", fontsize=16)
plt.xlabel("Captures",fontsize=12)
plt.ylabel("Frequency",fontsize=12)
plt.show()

#plt.subplot(1,3,3)
bigpieces_percentage.plot(kind='bar', stacked=True)
plt.title(f"Stacked Histogram of Big Piece by Winner", fontsize=16)
plt.xlabel("Big Piece",fontsize=12)
plt.ylabel("Frequency",fontsize=12)
plt.show()

The figtures above explicate that number of moves for each kind all have appropriately normal distributions. And the proportions of black win and white win are almost equal.

P (Better Player) Winning by Maxtime

In [70]:
#let's define difference between rating function

def rating_diff(chess_pd1):
    #Test Function for generating new value
    if abs(chess_pd1['white_rating'] - chess_pd1['black_rating']) <= 100:
        return 0
    elif 100 < abs(chess_pd1['white_rating'] - chess_pd1['black_rating']) <= 200:
        return 1
    elif 200 < abs(chess_pd1['white_rating'] - chess_pd1['black_rating']) <= 300:
        return 2
    elif 300 < abs(chess_pd1['white_rating'] - chess_pd1['black_rating']) <= 400:
        return 3
    elif 400 < abs(chess_pd1['white_rating'] - chess_pd1['black_rating']) <= 500:
        return 4
    else:   
        return 5

diff_rating = chess_pd1.apply(rating_diff, axis=1)
#add diff_raing to chess_pd1 data frame
chess_pd1 = add_feature(chess_pd1, 'diff_rating', diff_rating)
In [71]:
#let's define better rater win function

def better_win(chess_pd1):
    #Test Function for generating new value
    if ((chess_pd1['white_rating'] - chess_pd1['black_rating']) > 0 and (chess_pd1['winner'] == "white")) or \
    ((chess_pd1['black_rating'] - chess_pd1['white_rating']) > 0 and (chess_pd1['winner'] == "black")):
        return 1
    else: 
        return 0

better_rater_win = chess_pd1.apply(better_win, axis=1)
#add better_rater_win to chess_pd1 data frame
chess_pd1 = add_feature(chess_pd1, 'better_rater_win', better_rater_win)
chess_pd1.head()
Out[71]:
rated turns winner increment_code white_rating black_rating moves opening_eco opening_ply ten_moves ... base increment maxtime Rating_Difference Ratings_Only_Prediction pawn_num big_pieces_num captures_num diff_rating better_rater_win
0 False 13 white 15+2 1500 1191 d4 d5 c4 c6 cxd5 e6 dxe6 fxe6 Nf3 Bb4+ Nc3 Ba5... D10 5 [d4, d5, c4, c6, cxd5, e6, dxe6, fxe6, Nf3, Bb4+] ... 15 2 17 309 white 5 2 3 3 1
1 True 16 black 5+10 1322 1261 d4 Nc6 e4 e5 f4 f6 dxe5 fxe5 fxe5 Nxe5 Qd4 Nc6... B00 4 [d4, Nc6, e4, e5, f4, f6, dxe5, fxe5, fxe5, Nxe5] ... 5 10 15 61 white 5 1 4 0 0
2 True 61 white 5+10 1496 1500 e4 e5 d3 d6 Be3 c6 Be2 b5 Nd2 a5 a4 c5 axb5 Nc... C20 3 [e4, e5, d3, d6, Be3, c6, Be2, b5, Nd2, a5] ... 5 10 15 -4 black 7 3 0 0 0
3 True 61 white 20+0 1439 1454 d4 d5 Nf3 Bf5 Nc3 Nf6 Bf4 Ng4 e3 Nc6 Be2 Qd7 O... D02 3 [d4, d5, Nf3, Bf5, Nc3, Nf6, Bf4, Ng4, e3, Nc6] ... 20 0 20 -15 black 3 7 0 0 0
4 True 95 white 30+3 1523 1469 e4 e5 Nf3 d6 d4 Nc6 d5 Nb4 a3 Na6 Nc3 Be7 b4 N... C41 5 [e4, e5, Nf3, d6, d4, Nc6, d5, Nb4, a3, Na6] ... 30 3 33 54 white 6 4 0 0 1

5 rows × 21 columns

In [72]:
# make x,y plot
def get_y_values(diff, better_player_winner, maxtime, time_bin, time_min, time_max):
    '''
    Input: difference of players in category form, whether better player won
    Output: probability matrix
    '''
    num_lines = len(np.unique(diff))
    
    num_points = math.floor((time_max - time_min)/time_bin)
    num_points = int(num_points)
    
    #print(num_lines)
    #print(num_points)
    
    num_better_won = 0
    num_games = 0
    games = np.zeros([num_lines, num_points])
    better_won = np.zeros([num_lines, num_points])
    probs = np.zeros([num_lines, num_points])
    
    for idx in range(len(diff)):
        i = diff[idx] # row is difference
        #print('i' + str(i))
        
        # Check if maxtime in range
        if ((maxtime[idx] > time_min) and (maxtime[idx] < time_max)):
            j = (maxtime[idx]-time_min)/time_bin # time bin
            j = math.floor(j)
            games[i,j] += 1
            num_games += 1
            if better_player_winner[idx] == 1:
                num_better_won += 1
                better_won[i,j] += 1

   
    #print(i)
    #print(games)
    #print(better_won)
    #print(num_games)
    #print(num_better_won)
    
    for i in range(num_lines):
        for j in range(num_points):
            if games[i,j] != 0:
                probs[i,j] = float(better_won[i,j]) / float(games[i,j])
            else:
                probs[i,j] = 0
                    
    return probs
In [73]:
#Create the prob of better player win matrix
difference_rating=np.array(chess_pd1.diff_rating)
better_player_winner = np.array(chess_pd1.better_rater_win)
maxtime = np.array(chess_pd1.maxtime)
prob_betterwin = get_y_values(difference_rating, better_player_winner, maxtime, 20, 0, 100)
print(prob_betterwin)
[[0.50589547 0.50966317 0.49166667 0.36904762 0.47619048]
 [0.62834225 0.61837838 0.63235294 0.65625    0.64      ]
 [0.72931442 0.69244936 0.76190476 0.65116279 0.5       ]
 [0.80040527 0.76       0.47826087 0.67741935 0.66666667]
 [0.82993197 0.7238806  0.78571429 0.78947368 0.875     ]
 [0.86369771 0.83243243 0.76190476 0.78723404 0.71428571]]
In [74]:
prob = prob_betterwin.T
df1 = pd.DataFrame(prob, columns = ['diffwithin100', 'diff100to200','diff200to300','diff300to400',
                                   'diff400to500','diff500to600'],
                  index=['10','30','50','70', '90'])
                        #'55','60','65','70','75','80','85','90', '95'])
In [75]:
#Plot of Probability of Better Player Winning by Maxtime
plt.figure(figsize=(8,6))
plt.plot(df1.diffwithin100, label="0<|White Rating - Black Rating|≤100")
plt.plot(df1.diff100to200, label="100<|White Rating - Black Rating|≤200")
plt.plot(df1.diff200to300, label="200<|White Rating - Black Rating|≤300")
plt.plot(df1.diff300to400, label="300<|White Rating - Black Rating|≤400")
plt.plot(df1.diff400to500, label="400<|White Rating - Black Rating|≤500")
plt.plot(df1.diff500to600, label="500<|White Rating - Black Rating|≤600")
# Add legend
plt.legend(loc='lower left')
# Add title and x, y labels
plt.title("Probability of Better Player Winning by Maxtime", fontsize=16)
plt.xlabel("Maxtime")
plt.ylabel("Probability of Better Player Winning")
plt.show()

When the maxtime is less than 60 minutes, the better player has higher chance to win, not matter how different the players'ratings are. If the maxtime is larger than 60 minutes, the better player's advantage starts to vanish when the players have close rating, less than 100. This is not really the graph that we expected. We expected all of the lines to start between 50% and 70& and increase over maxtime. The reason We thought this was because we thought that there would be more randomness when the maxtime was very short. However, we do not really see that--most of the lines are more or less horizontal. Thus, maxtime does not appear to have a very large affect on who is going to win. We can see that the blue line (difference in rating less than 100_ is around 0.5 as expected. As the difference increases, the lines move up vertically as there is a higher probability of winning for the better player. Notably, the orange line(difference is between 100 and 200) is about exactly where it should be because the probability of the better player winning when the difference is 200 is 75%. Since the orange line is an aggregation with some differences slightly less than 200, the aggregated probability should be between 50% and 75% and we can see that it is. The other plots are more or less horizontal with some random noise--we do not have a lot of games in the sample where there is a large rating difference between players. But, from the blue and orange lines it looks like maxtime does not have as much of an affect as we thought.

What is possible is that some players are better at different time increment codes, but these variances at the individual level are mostly random. For example. Fabiano Caruana and Magnus Carlsen have about the same chess rating and tied 12 times at the World Chess Championships--but it is known that Magnus Carlsen is very good when the maxtime is very short. In essence, knowing the invidual player might be helpful in prediction, but just knowing maxtime does not appear to be a helpful feature by itself.

Black vs White Rating Heatmap

In [76]:
import math
import numpy as np

#Calculate the prob of white win in each coloum
#Define a new variable to indicate white win
#chess_pd1 = pd.DataFrame(chess_pd)
#chess_pd1['whitewin'] = np.where(chess_pd1['winner'] == 'white', 1, 0)
#chess_pd1.info()

chess_pd2 = pd.DataFrame(chess_pd)
chess_pd2['whitewin'] = np.where(chess_pd['winner'] == 'white', 1, 0)
chess_pd2.info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 18047 entries, 0 to 20057
Data columns (total 23 columns):
rated                      18047 non-null bool
turns                      18047 non-null int64
winner                     18047 non-null category
increment_code             18047 non-null object
white_rating               18047 non-null int64
black_rating               18047 non-null int64
moves                      18047 non-null object
opening_eco                18047 non-null object
opening_ply                18047 non-null int64
ten_moves                  18047 non-null object
opening_category           18047 non-null object
base                       18047 non-null int64
increment                  18047 non-null int64
maxtime                    18047 non-null int64
Rating_Difference          18047 non-null int64
Ratings_Only_Prediction    18047 non-null object
pawn_num                   18047 non-null int64
big_pieces_num             18047 non-null int64
captures_num               18047 non-null int64
pawn_moves                 18047 non-null object
big_pieces_moves           18047 non-null object
captures_moves             18047 non-null object
whitewin                   18047 non-null int64
dtypes: bool(1), category(1), int64(12), object(9)
memory usage: 3.7+ MB
In [77]:
def ratings_heatmap(min_v, max_v, bin_size, white_rating_hm, black_rating_hm, win_hm):
    '''
    Input: minimum value in array, maximum value, list of white ratings, 
    list of black ratings
    Output: nxn array where n is (maximum - minimum)/bin_size
    '''
    # create matrix
    n = (max_v-min_v)/(bin_size)
    n = int(math.floor(n))
    num_games = np.zeros((n,n))
    num_white = np.zeros((n,n))
    prob_heat_map = np.zeros((n,n))
    
    # classify each game
    for idx in range(len(black_rating_hm)):        
        
        i = ((black_rating_hm[idx]) - min_v)/(bin_size)
        j = ((white_rating_hm[idx]) - min_v)/(bin_size)
        if ((black_rating_hm[idx]) > min_v) and ((black_rating_hm[idx]) < max_v):
            if ((white_rating_hm[idx] > min_v) and (white_rating_hm[idx] < max_v)):
                i = ((black_rating_hm[idx]) - min_v)/(bin_size)
                j = ((white_rating_hm[idx]) - min_v)/(bin_size)
                i = math.floor(i)
                j = math.floor(j)
        
                num_games[i,j] += 1
                if (win_hm[idx] == 1):
                    num_white[i,j] += 1
    for i in range(n):
        for j in range(n):
            prob_heat_map[i,j] = num_white[i,j]/num_games[i,j]
            
    return prob_heat_map
In [78]:
white_rating = chess_pd2.white_rating.to_numpy()
black_rating = chess_pd2.black_rating.to_numpy()
min_v = 1000
max_v = 2000
bin_size = 200
white_win = chess_pd2.whitewin.to_numpy()
#print(len(white_rating))
#print(len(black_rating))
#print(len(white_win))
#print(white_win)
#print(black_rating)
prob_hm = ratings_heatmap(min_v, max_v, bin_size, white_rating, black_rating, white_win)
print(prob_hm)                          
             
[[0.47311828 0.69211196 0.84444444 0.85416667 0.94871795]
 [0.31188119 0.50142857 0.64712154 0.809375   0.82882883]
 [0.28506787 0.35027027 0.50507614 0.62632085 0.75830816]
 [0.10280374 0.16498316 0.33120341 0.49882214 0.62652439]
 [0.11538462 0.20792079 0.23357664 0.36515913 0.47826087]]
In [79]:
# Make Pretty Plot
def plot_prob(prob_hm, title, row_labels, column_labels):
    '''
    Input: board
    Output: heatmap plot
    '''
    # Following two lines taken from seaborn documentation
    # https://seaborn.pydata.org/generated/seaborn.heatmap.html
    heatmap_df = pd.DataFrame(prob_hm, columns = column_labels, index = row_labels)
    ax = sns.heatmap(heatmap_df, linewidth = 0.5, square = True)
    plt.title(title)
    plt.ylabel('Black Rating')
    plt.xlabel('White Rating')
    
    #plt.show()
#row_labels = ['1100', '1300', '1500', '1700', '1900']
#column_labels = ['1100', '1300', '1500', '1700', '1900']
#row_labels = range(5)
#column_labels = range(5)

#title = "Probability of White winng of Black Rating vs White Rating"
#plot_prob(prob_hm, title, row_labels, column_labels)
In [80]:
white = chess_pd2.white_rating.to_numpy()
black = chess_pd2.black_rating.to_numpy()
min_v = 800
max_v = 2200
bin_size = 200
win = chess_pd2.whitewin.to_numpy()
#print(len(white))
#print(len(black))
#print(len(win))

prob_hm = ratings_heatmap(min_v, max_v, bin_size, white, black, win)
#print(prob_hm)


row_labels = ['800-1000', '1000-1200', '1200-1400', '1400-1600', '1600-1800', '1800-2000', '2000-2200']
column_labels = ['800-1000', '1000-1200', '1200-1400', '1400-1600', '1600-1800', '1800-2000', '2000-2200']
title = "Probability of White winning of Black Rating vs White Rating"
plot_prob(prob_hm, title, row_labels, column_labels)
                       

This graph is light where white has a high probability of winning and dark where black has a high probability of winning. From this graph, we can see that the outcome can be predicted with a lot of accuracy when black and white do not have the same rating. When they have about the same rating, then the probability of white winning is about 1/2 which is exactly what we expected. We aggregated the rating into groups of 200 because that is the size of different Classes such as Class A, Class B, Class C, and Class D. A category is only 25 points wide, but that would make the graph look too spotty as there is not enough data in each group.

Black Rating vs White Rating Histogram

In [81]:
def create_white_vs_black_hist(white_rating_hm, black_rating_hm, bin_size, min_v, max_v):
    '''
    Input: white rating, black rating, bin_size, minimum/maximum rating
    Output: white vs black histogram
    '''
    
    n = (max_v-min_v)/(bin_size)
    n = int(math.floor(n))
    num_games = np.zeros((n,n))
    
    for idx, val in enumerate(white_rating_hm):
        # check minimum, maximum
        if ((black_rating_hm[idx] > min_v) and (black_rating_hm[idx] < max_v)):
            if ((white_rating_hm[idx] > min_v) and (white_rating_hm[idx] < max_v)):
                i = ((black_rating_hm[idx]) - min_v)/(bin_size) 
                j = ((white_rating_hm[idx]) - min_v)/(bin_size)
                i = math.floor(i)
                j = math.floor(j)
        num_games[i][j] += 1
    return num_games



def plot_white_vs_black_hist(num_games, title, row_labels, column_labels):
    '''
    Input: num_games np array, title, row/column labels
    Output: heatmap
    '''
    heatmap_df = pd.DataFrame(num_games, columns = column_labels, index = row_labels)
    ax = sns.heatmap(heatmap_df, linewidth = 0.5, square = True)
    plt.title(title)
    plt.ylabel('Black Rating')
    plt.xlabel('White Rating')

white = chess_pd2.white_rating.to_numpy()
black = chess_pd2.black_rating.to_numpy()
min_v = 800
max_v = 2200
bin_size = 200

num_games = create_white_vs_black_hist(white, black, bin_size, min_v, max_v)
title = 'White Rating vs Black Rating Histogram'
row_labels = ['800-1000', '1000-1200', '1200-1400', '1400-1600', '1600-1800', '1800-2000', '2000-2200']
column_labels = ['800-1000', '1000-1200', '1200-1400', '1400-1600', '1600-1800', '1800-2000', '2000-2200']
plot_white_vs_black_hist(num_games, title, row_labels, column_labels)    

From this graph, we see that most of the games occur between players with a rating of 1500; this makes sense as this is the default value when you start at Lichess.com. Thus, we should be careful about games in this square because the rating may or may not be the true rating of the player. Also, most games occur between players of similar rating.

In [ ]:
 
In [82]:
chess_original_8 = chess_original

## This code is taken from website
#https://chrisalbon.com/python/data_wrangling/pandas_create_column_with_loop/
rating = []
for row in chess_original_8['white_rating']:
    if row <= 1400:
        rating.append('0')
    elif 1400 < row < 1800:
        rating.append('1')
    elif row >= 1800:
        rating.append('2')
chess_original_8['rating'] = rating

#This code is taken from website
#https://cmdlinetips.com/2019/02/how-to-make-histogram-in-python-with-pandas-and-seaborn/
df = chess_original_8[chess_original_8['rating'] == '0']
sns.distplot(df['opening_ply'],  kde=True, label='rating<1400')
df = chess_original_8[chess_original_8['rating'] == '1']
sns.distplot(df['opening_ply'],  kde=True, label='1400 <rating<1800')
df = chess_original_8[chess_original_8['rating'] == '2']
sns.distplot(df['opening_ply'],  kde=True, label='rating>1800')
plt.legend(prop={'size': 12})
plt.title('Opening Play of Rating')
plt.xlabel('Number of Opening Play')
Out[82]:
Text(0.5, 0, 'Number of Opening Play')

This is a visualization of how long the opening classification is based on player rating. Our prediction was that higher rated players would have longer openings on average and we can see that this is true. Lower-rated players have very short openings with a huge peak at aroun 4-5 moves. As the rating of the players improve, however, the distribution flattens out as they begin to use longer opening move sequences.

Exceptional Work - t-SNE (10 points total)

t-SNE Explanation

T-SNE, also known as t-distributed stochastic neighbor embedding (t-SNE), is a non-linear unsupervised technique to achieve dimensionality reduction. T-SNE attempts to preserve the structure of the high dimensional space in lower dimensions by preserving local distances. The classic example is that of the spiral or other curved manifold. T-SNE will “follow the spiral.” T-SNE uses a probability distribution over pairs of points Pij where if i and j are close together Pij is larger and if i and j are far apart then Pij is small.

There are three steps to the t-SNE Algorithm. The first step is to calculate the similarity points in the original (high) dimension and the target (low) dimensional spaces.

The following equation is used to calculate the probabilities in high dimensional map. $$P_{j|i} = \frac{exp(-\left \| x_{i}-x_{j} \right \|^{2} /2\sigma ^{2})}{\Sigma _{k}\Sigma _{i\not\equiv j} exp(-\left \| x_{i}-x_{j} \right \|^{2} /2\sigma ^{2})}$$ Equation taken from Laurens van der Maaten's Google Tech talk https://www.youtube.com/watch?v=RJVL80Gg3lA

The numerator is simply the Gaussian. The denominator is made specifically for the i,j points as a way of 'scaling.' Thus, if in some parts of the high-dimensional manifold are more dense than others parts, the points that are most similar in high dimensional space will appear thesame distance apart in the visualization. The last step is to average $P_{i|j}$ and $P_{j|i}$ and divide by 2N.

The following equation is used to calculate the conditional probabilities in the low dimensional map. $$q_{i,j} = \frac{(1+\left \| y_{i}-y_{j} \right \|^{2})^{-1}}{\Sigma _{k}\Sigma _{t\not\equiv k} (1+\left \| y_{k}-y_{l} \right \|^{2})^{-1} }$$

Note that in the above equation we use the Student-t distribution but not a Gaussian. This is because points that are far away might have to become further away in the lower dimensional space to preserve local distances. Since the Student-T distribution has a heavier tail, the distribution allows for points to be further away in the lower dimensional visualization.

Last, we must measure how well the distances are conserved in the low-dimensional space vs. the high dimensional space. In other words, we need to minimize the divergence. To do this, we will use the Kullback-Leibler Divergence:

$$ KL(P||Q) = \sum_{i} \sum_{j\neq i} p_{ij} log\frac{p_{ij}}{q_{ij}} $$

This is used because if there is large $p_{ij}$ (points are close together in high dimensional space) then they should have a high $q_{ij}$. But on the other hand, if there is a small $p_{ij}$ (high dimensional space objects are far apart), then the algorithm doesn't care if they are put together in low dimensional space. Thus, the algorithm tries to maintain local distances. Finally, we use gradient descent to find the(a) minimum value.

To make the algorithm run faster(nlog(n) vs. $n^{2}$, he uses the Barnes-Hut approximation. This approximation treats points that are far away as a single point at the center of mass. Notably, this approximation is used by astronomers. He uses a quadtree to implement this approximation. With this approximation, he can look at larger datasets.

Citations for t-SNE

Chang, R. (2019). What advantages does the t-SNE algorithm have over PCA?. [online] Quora.com. Available at: https://www.quora.com/What-advantages-does-the-t-SNE-algorithm-have-over-PCA [Accessed 14 Sep. 2019].

En.wikipedia.org. (2019). Kullback–Leibler divergence. [online] Available at: https://en.wikipedia.org/wiki/Kullback–Leibler_divergence [Accessed 14 Sep. 2019].

Pathak, M. (2019). Introduction to t-SNE. [online] DataCamp Community. Available at: https://www.datacamp.com/community/tutorials/introduction-t-sne [Accessed 14 Sep. 2019].

van der Maaten, L. (2019). t-SNE. [online] Laurens van der Maaten. Available at: https://lvdmaaten.github.io/tsne/ [Accessed 14 Sep. 2019].

van der Maaten, L. (2019). Visualizing Data Using t-SNE. [online] YouTube. Available at: https://www.youtube.com/watch?v=RJVL80Gg3lA [Accessed 14 Sep. 2019].

van der Maaten, L. and Hinton, G. (2019). Visualizing Data using t-SNE. [online] Jmlr.org. Available at: http://www.jmlr.org/papers/volume9/vandermaaten08a/vandermaaten08a.pdf [Accessed 14 Sep. 2019].

In [153]:
# https://scikit-learn.org/stable/modules/generated/sklearn.manifold.TSNE.html
from sklearn.manifold import TSNE
import seaborn as sns

# Parameters that can be "tuned"

# angle have been changed from default values;
# make it run faster by having angle above 0.8

n_components1 = 2 # dimension of visualization should be 2 for 2-D 
perplexity1 = 30.0 # Related to number of nearest neighbors considered. Recommended to choose between 5 and 50.
early_exaggeration1 = 12.0 # controls density
learning_rate1 = 200.0 #in range 10-1000 (https://www.datacamp.com/community/tutorials/introduction-t-sne)
n_iter1 = 1000 # maximum number of iterations
n_iter_without_progress1 = 300 # number of iterations before aborted
min_grad_norm1 = 1e-07 # if gradient norm < min_grad_norm, the visualization is considered to reach the minimum value
metric1 = 'euclidean' # doesn't have to be euclidean
init1 = 'random' #initial state of embedding. PCA results in a more stable result
verbose1 = 0
random_state1 = None
method1 = 'barnes_hut' # uses the barnes-hut approximation as described above to run faster
angle1 = 0.9 # trade-off between accuracy and error for barnes_hut. If less than 0.2 slower but more accurate
In [165]:
# run T-SNE
def get_numeric_dataframe(dataframe):
    """
    input: dataframe, feature
    output: dataframe with only numeric columns
    """
    for name in dataframe.columns:
        if (str(type(name)) != "<class 'numpy.float64'>") and \
        (str(type(name)) != "<class 'numpy.int64'>"):
            dataframe = remove_feature(dataframe, name)
    return dataframe

X_train = chess_tsne
Y_train = chess_pd.winner

print(chess_tsne.head())
   white_rating  black_rating  opening_ply  False  True  black  draw  white  \
0          1500          1191            5      1     0      0     0      1   
1          1322          1261            4      0     1      1     0      0   
2          1496          1500            3      0     1      0     0      1   
3          1439          1454            3      0     1      0     0      1   
4          1523          1469            5      0     1      0     0      1   

   A  B  C  D  E  base  increment  maxtime  
0  0  0  0  1  0    15          2       17  
1  0  1  0  0  0     5         10       15  
2  0  0  1  0  0     5         10       15  
3  0  0  0  1  0    20          0       20  
4  0  0  1  0  0    30          3       33  
In [155]:
#Y_train = X_train['winner']    
    
# Use only numeric data
#X_train = remove_feature(X_train, 'winner')

#X_train = chess_pd.to_numpy()


#X_train, y_train = load_mnist('Downloads/datasets/mnist/fashion_mnist', kind='train') 
tsne_model = TSNE(n_components = n_components1, perplexity = perplexity1, early_exaggeration = early_exaggeration1, \
                  learning_rate = learning_rate1, n_iter = n_iter1, \
                  n_iter_without_progress = n_iter_without_progress1, \
                  min_grad_norm = min_grad_norm1, metric = metric1, init = init1, \
                  verbose = verbose1, random_state = random_state1, method = method1, \
                  angle = angle1).fit_transform(X_train)

Default Parameters

In [86]:
# code taken from https://towardsdatascience.com/t-sne-python-example-1ded9953f26

sns.scatterplot(tsne_model[:,0], tsne_model[:,1], hue=Y_train, legend='full')
Out[86]:
<matplotlib.axes._subplots.AxesSubplot at 0x1a209b6278>

With the default parameters, we see that we do not get separation based on white, black and draw with the exception of a blue area in the upper right hand corner. However, from reading about t-SNE, we know that if we tune the parameters we might get very different plots. So, we tries tuning perplexity (related to number of nearest neighbours) and angle (related to how accurate of an approximation to use). We also trie using pca as the initialization for the embedding just to see how these parameters change the graph.

Perplexity = 10, default angle and init = random

In [87]:
tsne_model=TSNE(init = "random", perplexity=10).fit_transform(X_train)
In [88]:
sns.scatterplot(tsne_model[:,0], tsne_model[:,1], hue=Y_train, legend='full')
Out[88]:
<matplotlib.axes._subplots.AxesSubplot at 0x1a2c380a90>

With a low perplexity the group forms a big blob as the groups do not separate. Thus to form different groups using unsupervised learning we will need to use a larger perplexity. In this data though you can see that the greeen is separated from the blue a little bit. On average green is more lower left and blue is more lower reight. However, you could not write a very good classification algorithm using just this plot. The white/black/draw data are too mixed together.

Perplexity = 50, default angle and init = pca

In [89]:
tsne_model=TSNE(init = 'pca', perplexity=50).fit_transform(X_train)
In [90]:
sns.scatterplot(tsne_model[:,0], tsne_model[:,1], hue=Y_train, legend='full')
Out[90]:
<matplotlib.axes._subplots.AxesSubplot at 0x1a2c5a7908>

This is a graph using PCA. Again, the PCA does separate white/black/draw extremely well. However, this doesn not really fulfill the goals of the assignment as starting with PCA is almost cheating. To fulfill the goals of the assignment, we will try to obtain a good graph with a random start to the embedding and see if the algorithm can find meaningful categories completely unsupervised.

Perplexity 50, default angle and init = random

In [91]:
tsne_model = TSNE(perplexity= 50).fit_transform(X_train)
In [92]:
# code taken from https://towardsdatascience.com/t-sne-python-example-1ded9953f26

sns.scatterplot(tsne_model[:,0], tsne_model[:,1], hue=Y_train, legend='full')
Out[92]:
<matplotlib.axes._subplots.AxesSubplot at 0x1a28194c18>

When Perplexity is 10, there are more categories and you can begin to see blue on the top and green generally on the bottom. HOwever, it still does not look like a graph that tells us much about black, white and draw.

Perplexity = 100, Angle = 0.2, init= random

In [43]:
tsne_model=TSNE(init = "random", perplexity=100,angle=0.2).fit_transform(X_train)
In [47]:
sns.scatterplot(tsne_model[:,0], tsne_model[:,1], hue=Y_train, legend='full')
Out[47]:
<matplotlib.axes._subplots.AxesSubplot at 0x1a2a017d68>

Perplexity 10, init =PCA, default angle

In [93]:
tsne_model = TSNE(perplexity= 10, init = 'pca').fit_transform(X_train)
In [94]:
# code taken from https://towardsdatascience.com/t-sne-python-example-1ded9953f26

sns.scatterplot(tsne_model[:,0], tsne_model[:,1], hue=Y_train, legend='full')
Out[94]:
<matplotlib.axes._subplots.AxesSubplot at 0x1a2cff97b8>

Here is our second PCA graph. We see that PCA successfully separated white, black, and draw pretty well. From looking at many graphs, we can see that this graph is dominated by the pca initialization. In this case, the perplexity of 10 does not matter as much.

Perplexity of 20, init = PCA, default angle

In [95]:
tsne_model = TSNE(perplexity= 20, init = 'pca').fit_transform(X_train)
In [96]:
# code taken from https://towardsdatascience.com/t-sne-python-example-1ded9953f26

sns.scatterplot(tsne_model[:,0], tsne_model[:,1], hue=Y_train, legend='full')
Out[96]:
<matplotlib.axes._subplots.AxesSubplot at 0x1a2804ec50>

As you can see form the above graph, when pca is used the graphs all loook very similar. You cannot see much difference between the perplexity.

Perplexity = 40, init = PCA, default angle

In [98]:
# code taken from https://towardsdatascience.com/t-sne-python-example-1ded9953f26

sns.scatterplot(tsne_model[:,0], tsne_model[:,1], hue=Y_train, legend='full')
Out[98]:
<matplotlib.axes._subplots.AxesSubplot at 0x1a2d01a0b8>

Here is another PCA graph with a higher perplexity. Again, we can see that the perplexity does not make that big of a difference when the initial starting position is PCA.

Perplexity 40, init = random, default angle

In [99]:
tsne_model = TSNE(perplexity= 40).fit_transform(X_train)
In [100]:
# code taken from https://towardsdatascience.com/t-sne-python-example-1ded9953f26

sns.scatterplot(tsne_model[:,0], tsne_model[:,1], hue=Y_train, legend='full')
Out[100]:
<matplotlib.axes._subplots.AxesSubplot at 0x1a2d389e10>

Here is graph with perplexity = 40. To be honest, it does not look to have separated into noticeable categories at all. We will try some more parameters to see what we get.

init = PCA, Perplexity = 30, angle = 0.15

In [101]:
tsne_model=TSNE(init = 'pca', angle = 0.15).fit_transform(X_train)
In [102]:
sns.scatterplot(tsne_model[:,0], tsne_model[:,1], hue=Y_train, legend='full')
Out[102]:
<matplotlib.axes._subplots.AxesSubplot at 0x1a2ec550b8>

Plots that we tried but didn't think were that great

init = PCA, Perplexity = 50, default angle

In [48]:
#tsne_model=TSNE(init = 'pca', perplexity=50).fit_transform(X_train)
In [49]:
#sns.scatterplot(tsne_model[:,0], tsne_model[:,1], hue=Y_train, legend='full')

Perplexity = 10, init = random, default angle

In [50]:
#tsne_model=TSNE(init = "random", perplexity=10).fit_transform(X_train)
In [51]:
#sns.scatterplot(tsne_model[:,0], tsne_model[:,1], hue=Y_train, legend='full')

Perplexity = 50, Angle = 0.2, init = random

In [52]:
#tsne_model=TSNE(init = "random", angle=0.2, perplexity=50).fit_transform(X_train)
In [53]:
#sns.scatterplot(tsne_model[:,0], tsne_model[:,1], hue=Y_train, legend='full')

Perplexity = 100, Angle = 0.8, init = random

In [54]:
#tsne_model=TSNE(init = "random", perplexity=100,angle=0.8).fit_transform(X_train)
In [55]:
#sns.scatterplot(tsne_model[:,0], tsne_model[:,1], hue=Y_train, legend='full')

Perplexity = 100, default angle, init = random

In [56]:
#tsne_model=TSNE(init = "random", perplexity=100).fit_transform(X_train)
In [57]:
#sns.scatterplot(tsne_model[:,0], tsne_model[:,1], hue=Y_train, legend='full')

Perplexity = 2, default angle, init = random

In [58]:
#tsne_model=TSNE(init = "random", perplexity=2).fit_transform(X_train)
In [59]:
#sns.scatterplot(tsne_model[:,0], tsne_model[:,1], hue=Y_train, legend='full')

How parameters change the graph

Pca: pca will substantially change the distance between each points comparing to using a random initial state.

Perplexity: a smaller perplexity will make the points look more separated while a larger perplexity make them clustered.

Angle: Angle will change the direction of the whole plot. Also, angle smaller than 0.2 will largely increase the computation time. Time can be fourfold when you change angle from the default 0.5 to 0.15.

t-SNE Conclusion and best t-SNE Graph

perplexity=100, angle=0.2, init = random

In [1]:
from IPython.display import Image
Image(filename='/Users/yifan/Desktop/7324/best_plot_of_tsne.png')
Out[1]:

This graph looks pretty good as we can see that three groups are clearly separated to each other, with the white winner group mostly distributed at the left upper corner of the graph while the black winner mostly distributed at the right bottom corner. Also, angle = 0.2 can greatly increase the accuracy of the prediction since we know that a large angle can reduce the accuracy as a sacrifice.

In [ ]:
 
In [ ]:
 
In [ ]:
 

One hot encoding for first ten moves separately

In [205]:
print(chess_tsne_each_move.info())
#chess_tsne_each_move = get_numeric_dataframe(chess_tsne_each_move)
X_train_each_move = chess_tsne_each_move
X_train_each_move
Y_train = chess_pd.winner
print(chess_tsne_each_move.info())
<class 'pandas.core.frame.DataFrame'>
Int64Index: 18047 entries, 0 to 20057
Data columns (total 16 columns):
white_rating    18047 non-null int64
black_rating    18047 non-null int64
opening_ply     18047 non-null int64
False           18047 non-null uint8
True            18047 non-null uint8
black           18047 non-null uint8
draw            18047 non-null uint8
white           18047 non-null uint8
A               18047 non-null uint8
B               18047 non-null uint8
C               18047 non-null uint8
D               18047 non-null uint8
E               18047 non-null uint8
base            18047 non-null int64
increment       18047 non-null int64
maxtime         18047 non-null int64
dtypes: int64(6), uint8(10)
memory usage: 1.1 MB
None
<class 'pandas.core.frame.DataFrame'>
Int64Index: 18047 entries, 0 to 20057
Data columns (total 16 columns):
white_rating    18047 non-null int64
black_rating    18047 non-null int64
opening_ply     18047 non-null int64
False           18047 non-null uint8
True            18047 non-null uint8
black           18047 non-null uint8
draw            18047 non-null uint8
white           18047 non-null uint8
A               18047 non-null uint8
B               18047 non-null uint8
C               18047 non-null uint8
D               18047 non-null uint8
E               18047 non-null uint8
base            18047 non-null int64
increment       18047 non-null int64
maxtime         18047 non-null int64
dtypes: int64(6), uint8(10)
memory usage: 1.1 MB
None

Use perplexity =100 , angle =0.2 , init = random

In [206]:
tsne_model=TSNE(init = 'random', angle = 0.2, perplexity = 100).fit_transform(X_train_each_move)
In [207]:
sns.scatterplot(tsne_model[:,0], tsne_model[:,1], hue=Y_train, legend='full')
Out[207]:
<matplotlib.axes._subplots.AxesSubplot at 0x121fecd68>
In [ ]:
 
In [ ]:
 
In [ ]: